Searched refs:current (Results 101 - 125 of 168) sorted by relevance

1234567

/haiku/src/bin/network/telnetd/
H A Dutility.c148 * the current address is a user data character, or it will
150 * if the current address is a TELNET IAC ("I Am a Command")
154 nextitem(char *current) argument
156 if ((*current&0xff) != IAC) {
157 return current+1;
159 switch (*(current+1)&0xff) {
164 return current+3;
167 char *look = current+2;
178 return current+2;
H A Ddefs.h166 slcent current; /* the current settings */ member in struct:__anon4452
192 * Macros to check the current state of things
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dxattrs.c246 * Read from a user mapping file on current NTFS partition
348 * to be located on the current file system, and internal IO
358 struct XATTRMAPPING *current; local
378 for (current=firstitem; current; current=current->next)
379 if ((current->xattr == item->xattr)
380 || !strcmp(current->name,item->name))
/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyListView.cpp268 // GetPreferredSize(), which by default just returns the current size.
284 // GetPreferredSize(), which by default just returns the current size.
454 const Property* current)
457 name_for_id(current->Identifier()));
491 Property* current = fPropertyObject->FindProperty(propertyID); local
492 if (previous && current) {
494 PropertyChanged(previous, current);
498 // and "previous" and "current" are toast)
500 && fPropertyObject->HasProperty(current))
501 previous->SetValue(current);
453 PropertyChanged(const Property* previous, const Property* current) argument
[all...]
/haiku/src/add-ons/accelerants/intel_extreme/
H A Daccelerant.cpp443 uint32 current = 0; local
449 // to limitations in the current driver on current hardware). Assign those
471 while (current < gInfo->pipe_count && assigned[current])
472 current++;
474 if (current >= gInfo->pipe_count) {
480 gInfo->ports[i]->SetPipe(gInfo->pipes[current]);
481 assigned[current] = true;
/haiku/src/add-ons/kernel/network/protocols/l2cap/
H A DL2capEndpoint.cpp414 net_buffer* current = buffer; local
416 if (current->size > fChannelConfig.outgoing_mtu) {
418 buffer = gBufferModule->split(current, fChannelConfig.outgoing_mtu);
421 gBufferModule->free(current);
428 const size_t bufferSize = current->size;
429 status_t status = gStackModule->fifo_enqueue_buffer(&fSendQueue, current);
431 gBufferModule->free(current);
/haiku/src/bin/debug/strace/
H A DNetworkTypes.cpp693 uint8 *current = buffer, *bufferEnd = buffer + bytesRead; local
695 if ((bufferEnd - current) < (IF_NAMESIZE + 1))
698 ifreq *ifr = (ifreq *)current;
701 if ((bufferEnd - current) < size)
710 current += size;
713 if (current < bufferEnd)
/haiku/src/add-ons/kernel/drivers/audio/emuxki/
H A Demuxki.h164 uint16 current;/* 0x4000 == unity pitch shift */ member in struct:_emuxki_chanparms_pitch
183 uint16 current; member in struct:_emuxki_chanparms_volume
336 float current[2]; member in struct:_emuxki_gpr
/haiku/src/apps/cortex/DiagramView/
H A DDiagramView.h204 // returns the current background color
240 BPoint current);
243 // the current data-rect
/haiku/headers/private/kernel/
H A Dsmp.h299 uint32 current = (uint32)atomic_get((int32*)&lock->count); local
301 return count % 2 == 0 && current == count;
/haiku/src/add-ons/screen_savers/ifs/
H A DIFS.cpp521 // with the contents of the current bitmap
569 // copy current points (white) and erase them from the
659 IFS::_RandomSimilitudes(FRACTAL* fractal, SIMILITUDE* current, int i) const argument
662 current->c_x = gauss_rand(0.0, .8, 4.0);
663 current->c_y = gauss_rand(0.0, .8, 4.0);
664 current->r = gauss_rand(fractal->r_mean, fractal->dr_mean, 3.0);
665 current->r2 = half_gauss_rand(0.0,fractal->dr2_mean, 2.0);
666 current->A = gauss_rand(0.0, 360.0, 4.0) * (M_PI / 180.0);
667 current->A2 = gauss_rand(0.0, 360.0, 4.0) * (M_PI / 180.0);
668 current
[all...]
/haiku/src/add-ons/kernel/bus_managers/agp_gart/
H A Dagp_gart.cpp747 aperture_memory *current = fFirstMemory, *last = NULL; local
749 while (current != NULL) {
750 if (memory == current) {
752 last->next = current->next;
754 fFirstMemory = current->next;
759 last = current;
760 current = current->next;
/haiku/src/tools/restest/
H A DResourceFile.cpp78 const uint8* current = csData; local
79 for (; current < dataEnd; current += 4) {
81 int32 bytes = min(4L, dataEnd - current);
83 word = (word << 8) + current[i];
157 const char* current = (const char*)_current; local
158 return (start <= current && start + size >= current + skip);
/haiku/src/apps/launchbox/
H A DPadView.cpp81 int32 current; local
86 current = (int32)dot.x;
92 current = (int32)dot.y;
99 while (current <= stop) {
129 current++;
/haiku/src/preferences/screen/
H A DScreenMode.cpp25 * It's a solution that works with the current BeOS interface that Haiku
313 screen_mode current; local
315 if (Get(current, workspace) == B_OK && fOriginal[workspace] == current)
/haiku/headers/cpp/
H A Deditbuf.h96 buf_char* current() { return is_reading() ? gptr() : pptr(); } function in struct:edit_streambuf
/haiku/src/apps/diskusage/
H A DPieView.cpp218 BMessage* current = Window()->CurrentMessage(); local
221 if (current->FindInt32("buttons", (int32*)&buttons) != B_OK)
247 BMessage* current = Window()->CurrentMessage(); local
250 if (current->FindInt32("modifiers", (int32*)&modifiers) != B_OK)
317 // There is a current volume.
/haiku/src/libs/compat/freebsd_network/
H A Dusb.cpp76 usb_device current; local
78 current = *cookie;
81 config = sUSB->get_configuration(current);
88 result->haiku_usb_device = current;
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dkernel_interface.cpp248 Inode* current; member in struct:dir_cookie
261 Attribute* current; member in struct:attr_cookie
867 Inode* current = fFirstEntry; local
869 while (current != NULL) {
870 last = current;
871 current = current->Next();
1348 if (cookie->current == attribute) {
1349 cookie->current
1383 cookie->current
[all...]
/haiku/src/system/kernel/posix/
H A Dxsi_message_queue.cpp414 queued_message *current = iterator.Next(); local
415 if (current->type <= -typeRequested) {
427 queued_message *current = iterator.Next(); local
428 if (current->type == typeRequested) {
/haiku/src/add-ons/decorators/BeDecorator/
H A DBeDecorator.cpp941 decorator_bitmap* current = sBitmapList; local
942 while (current) {
943 if (current->item == item && current->down == down
944 && current->width == width && current->height == height
945 && current->baseColor == colors[COLOR_BUTTON]
946 && current->lightColor == colors[COLOR_BUTTON_LIGHT]) {
947 return current->bitmap;
950 current
[all...]
/haiku/src/libs/x86emu/
H A Ddebug.c236 u32 current; local
238 current = start;
/haiku/src/system/kernel/scheduler/
H A DRunQueue.h196 Element* current = fNext; local
203 return current;
/haiku/src/tools/fs_shell/
H A DOpenHashTable.h349 The iterator is not invalidated when removing the current element from
367 ValueType* current = fNext; local
369 return current;
/haiku/src/apps/clock/
H A Dcl_view.cpp255 time_t current = time(0); local
256 struct tm *loctime = localtime(&current);

Completed in 151 milliseconds

1234567