Searched refs:start (Results 451 - 475 of 624) sorted by relevance

<<11121314151617181920>>

/haiku/src/kits/package/
H A DPackageInfoParser.h108 static bool _IsAlphaNumUnderscore(const char* start,
/haiku/src/kits/tracker/
H A DTextWidget.cpp382 int32 start, finish; local
383 textView->GetSelection(&start, &finish);
384 if (start != finish) {
386 textView->GetTextRegion(start, finish, &selectedRegion);
/haiku/src/libs/libtelnet/
H A Dencrypt.c315 printf("Usage: encrypt start [input|output]\n");
318 printf("%s: invalid encryption mode 'encrypt start ?' for help\n", mode);
421 * If the user has requested that decryption start
506 type = ep->start ? (*ep->start)(DIR_ENCRYPT, Server) : 0;
508 printf(">>>%s: (*ep->start)() returned %d\r\n",
685 * other side wants us to start encrypting data as soon as we
815 if (ep->start) {
816 i = (*ep->start)(DIR_ENCRYPT, Server);
818 printf(">>>%s: Encrypt start
[all...]
/haiku/src/add-ons/kernel/file_systems/udf/
H A DVolume.cpp133 descriptor->start(), descriptor->length());
137 "start: %" B_PRIu32 ", length: %" B_PRIu32 ")\n",
138 map->partition_number(), descriptor->start(),
235 // We're now going to start creating Icb's, which will expect
/haiku/src/bin/writembr/
H A Dmbr.S114 .set GPT_PART_LBA,72 /* Offs of partitions start LBA */
124 .globl start /* Entry point */
130 start: cli /* Clear interrupts before relocation */ label
295 movw $(EXEC+PT_OFF),%bx /* Point to partition table start */
329 subw $0x4,%si /* Adjust back to start of buffer */
350 /* Else, start loader */
/haiku/src/libs/bsd/
H A Dunvis.c68 #define S_START 1 /* start decoding special sequence */
505 char t = '\0', *start = dst; local
547 return (int)(dst - start);
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DKPPPInterface.cpp1150 \param start (Optional): Start with this protocol. Can be used for iteration.
1155 KPPPInterface::ProtocolFor(uint16 protocolNumber, KPPPProtocol *start) const
1162 KPPPProtocol *current = start ? start : FirstProtocol();
1422 \param start Index of driver_parameter to start with.
1428 KPPPInterface::LoadModules(driver_settings *settings, int32 start, int32 count) argument
1442 for (int32 index = start;
1443 index < settings->parameter_count && index < (start + count); index++) {
1461 for (int32 index = start;
[all...]
/haiku/src/bin/listusb/
H A Dusb_video.cpp237 uint8_t start = i; local
238 for (; i - start < end; i++)
/haiku/src/bin/
H A Dhey.cpp1341 char *start = str + strlen(str); local
1353 if (strlen(start) < 36) {
1355 + strlen(start));
1392 if (strlen(start) < 60) {
1394 " " + strlen(start));
1459 char *start = str + strlen(str); local
1470 if (strlen(start) < 36 + 19) {
1472 " " + strlen(start));
/haiku/src/system/boot/platform/efi/
H A Dvideo.cpp261 gKernelArgs.frame_buffer.physical_buffer.start =
275 video_display_splash(gKernelArgs.frame_buffer.physical_buffer.start);
/haiku/src/apps/icon-o-matic/import_export/svg/
H A DDocumentBuilder.cpp174 int32 start = path->CountPoints() - 2;
178 path->SetPointOut(start, vector1);
/haiku/src/add-ons/kernel/drivers/dvb/cx23882/
H A Dcx23882.c174 // start RISC processor and DMA
324 char *start = (char *)(device->regs) + SRAM_START_ADDRESS + SRAM_BASE_RISC_PROG; local
325 volatile uint32 *rp = (volatile uint32 *)start;
353 // jmp to start, but skip sync instruction
/haiku/src/servers/app/font/
H A DFontCacheEntry.cpp189 const char* start = utf8String; local
193 if (utf8String - start + 1 > length)
H A DGlyphLayoutEngine.h308 const char* start = utf8String; local
363 if (utf8String - start + 1 > length)
/haiku/src/system/kernel/arch/arm64/
H A Darch_int.cpp100 args->arch_args.interrupt_controller.regs1.start,
101 args->arch_args.interrupt_controller.regs2.start);
/haiku/src/tests/system/kernel/file_corruption/driver/
H A Dchecksum_device.cpp642 char* start = buffer;
646 while (*start != '\0') {
648 if (isspace(*start)) {
655 start++;
661 if (*start == '"' || *start == '\'') {
663 char quote = *start;
664 start++;
665 while (*start != '\0' && *start !
[all...]
/haiku/src/apps/diskprobe/
H A DDataEditor.cpp90 int start = i; local
93 for (; i < start + DUMPED_BLOCK_SIZE; i++) {
104 for (i = start; i < start + DUMPED_BLOCK_SIZE; i++) {
765 int32 start = fChanges.IndexOf(fLastChange) + 1; local
767 for (int32 i = fChanges.CountItems(); i-- > start; ) {
1106 // start progress monitor
1169 // only a partial match, we have to check the start
/haiku/src/apps/cortex/NodeManager/
H A DNodeGroup.cpp203 // first node? the transport is now ready to start
230 // +++++ start if necessary!
373 // enabled, and the start- and end-positions are valid
403 bigtime_t start) {
407 "NodeGroup::setStartPosition(%lld)\n", start));
421 // too late to change start position; defer
423 m_newStartPosition = start;
428 // not at deadline yet; fall through to set start position
432 m_startPosition = start;
441 // +++++ if a previously-set start positio
402 setStartPosition( bigtime_t start) argument
557 status_t NodeGroup::start() { function in class:NodeGroup
[all...]
/haiku/src/kits/interface/
H A DListView.cpp1268 BListView::Select(int32 start, int32 finish, bool extend) argument
1270 if (_Select(start, finish, extend)) {
2037 int32 start = std::min(fFirstSelected, index); local
2039 _RescanSelection(start, end);
2100 BListView::_RecalcItemTops(int32 start, int32 end) argument
2103 if ((start < 0) || (start >= count))
2109 float top = (start == 0) ? 0.0 : ItemAt(start - 1)->Bottom() + 1.0;
2111 for (int32 i = start;
[all...]
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DSourceView.cpp1557 int32 start = 0; local
1561 currentLength = i - start;
1563 _DrawLineSegment(line + start, currentLength, _offset);
1566 start = i + 1;
1576 currentLength = length - start;
1578 _DrawLineSegment(line + start, currentLength, _offset);
1738 int32 start = point.offset - 1; local
1745 while ((start - 1) >= 0) {
1746 if (!isalpha(line[start - 1]) && !isdigit(line[start
[all...]
/haiku/src/servers/app/drawing/
H A DDrawingEngine.cpp876 DrawingEngine::StrokeLine(const BPoint& start, const BPoint& end, argument
881 BRect touched(start, end);
886 if (!fPainter->StraightLine(start, end, color)) {
892 fPainter->StrokeLine(start, end);
1266 DrawingEngine::StrokeLine(const BPoint& start, const BPoint& end) argument
1270 BRect touched(start, end);
1277 fPainter->StrokeLine(start, end);
/haiku/src/add-ons/kernel/drivers/disk/scsi/scsi_cd/
H A Dscsi_cd.cpp509 position.start_m = toc->tracks[start_track].start.time.minute;
510 position.start_s = toc->tracks[start_track].start.time.second;
511 position.start_f = toc->tracks[start_track].start.time.frame;
513 position.end_m = toc->tracks[end_track].start.time.minute;
514 position.end_s = toc->tracks[end_track].start.time.second;
515 position.end_f = toc->tracks[end_track].start.time.frame;
586 cmd.start.time = cdPos->absolute_address.time;
/haiku/src/apps/terminal/
H A DBasicTerminalBuffer.cpp370 BasicTerminalBuffer::GetStringFromRegion(BString& string, const TermPos& start, argument
374 //start.x, start.y, end.x, end.y);
375 if (start >= end)
378 TermPos pos(start);
433 TermPos start(x, y);
437 TermPos previousPos = start;
444 start = previousPos;
463 _start = start;
519 BasicTerminalBuffer::Find(const char* _pattern, const TermPos& start, argument
[all...]
/haiku/src/system/kernel/arch/x86/
H A Darch_debug.cpp967 is_calling(Thread* thread, addr_t ip, const char* pattern, addr_t start, argument
971 return ip >= start && ip < end;
1063 arch_debug_contains_call(Thread* thread, const char* symbol, addr_t start, argument
1094 if (is_calling(thread, frame->ip, symbol, start, end))
1106 if (is_calling(thread, ip, symbol, start, end))
/haiku/src/system/boot/platform/bios_ia32/
H A Dvideo.cpp845 addr_t lastBase = gKernelArgs.frame_buffer.physical_buffer.start;
873 gKernelArgs.frame_buffer.physical_buffer.start = modeInfo.physical_base;
889 gKernelArgs.frame_buffer.physical_buffer.start = 0xa0000;
901 && (lastBase != gKernelArgs.frame_buffer.physical_buffer.start
909 gKernelArgs.frame_buffer.physical_buffer.start,

Completed in 324 milliseconds

<<11121314151617181920>>