Searched refs:next (Results 51 - 75 of 546) sorted by relevance

1234567891011>>

/haiku/src/apps/bootmanager/
H A DWizardController.cpp20 StateStack* next; local
22 next = stack->Next();
24 stack = next;
25 } while (next != NULL);
H A DWizardController.h38 StateStack(int32 state, StateStack* next) argument
41 fNext(next)
/haiku/src/bin/bfs_tools/lib/
H A DHashtable.cpp65 struct Entry *entry,*next; local
67 for(entry = table[index];entry;entry = next)
69 next = entry->next;
141 for(entry = table[index],prev = NULL;entry;entry = entry->next)
149 prev->next = entry->next;
151 table[index] = entry->next;
173 fIteratorEntry = fIteratorEntry->next;
175 // get next fille
201 Entry *entry, *next; local
[all...]
H A DHashtable.h44 : next(_next), key(_key), value(_value) {}
46 Entry *next; member in class:Hashtable::Entry
/haiku/src/apps/icon-o-matic/style/
H A DSetColorCommand.cpp84 const SetColorCommand* next local
87 if (next && next->fTimeStamp - fTimeStamp < 1000000) {
88 fTimeStamp = next->fTimeStamp;
89 // NOTE: next was already performed, but
H A DSetGradientCommand.cpp112 const SetGradientCommand* next local
115 if (next && next->fTimeStamp - fTimeStamp < 1000000) {
116 fTimeStamp = next->fTimeStamp;
117 // NOTE: next was already performed, but
/haiku/src/libs/print/libprint/
H A DPagesView.cpp42 BPoint next(kPageWidth + kPageHorizontalIndent * 2 + 10, 0);
44 position += next;
47 BPoint next(kPageWidth + kPageHorizontalIndent * 1 + 10, 0);
51 position += next;
59 BPoint next(-kPageHorizontalIndent, kPageVerticalIndent);
69 position += next;
74 position += next;
/haiku/src/system/libroot/posix/unistd/
H A Dfork.c23 struct fork_hook *next; member in struct:fork_hook
66 while (last->next)
67 last = last->next;
73 (*_lastHook)->next = hook;
77 hook->next = NULL;
80 hook->next = *_hooks;
96 hook = hook->next;
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dcache.h28 struct CACHED_GENERIC *next; member in struct:CACHED_GENERIC
36 struct CACHED_INODE *next; member in struct:CACHED_INODE
46 struct CACHED_NIDATA *next; member in struct:CACHED_NIDATA
57 struct CACHED_LOOKUP *next; member in struct:CACHED_LOOKUP
78 struct HASH_ENTRY *next; member in struct:HASH_ENTRY
/haiku/src/apps/glteapot/
H A Dutil.h18 /* Create a node with no next */
22 /* Create a node with specified next */
23 inline LispNode(contents* value, LispNode* next) argument
24 : car (value), cdr(next) { }
347 thetype* next; member in struct:DoubleLinkedNode
352 next = prev = NULL;
358 if (next != NULL)
359 next->prev = n;
361 n->next = next;
[all...]
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DParseCommandLine.cpp118 char* next = *setEnd; local
121 while (next++) {
122 if (*next == '\0') {
126 else if ((IsValidChar(*next) == false) && (*next != GUNK_CHAR))
127 *next = '\0';
134 *setBegin = next;
137 while (next++) {
138 if ((IsValidChar(*next) == false) && (*next !
298 char next = string[i]; local
[all...]
/haiku/src/add-ons/kernel/file_systems/nfs/
H A DRPCPendingCalls.c35 struct PendingCall *next=calls->fFirst->next; local
41 calls->fFirst=next;
61 call->next=calls->fFirst;
88 last->next=current->next;
90 calls->fFirst=current->next;
92 current->next=NULL;
100 current=current->next;
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DSLList.h14 SLListLink() : next(NULL) {}
17 Element *next; member in class:UserlandFSUtil::SLListLink
233 elLink->next = prevLink->next;
234 prevLink->next = element;
237 elLink->next = fFirst;
270 fGetLink(fLast)->next = fromList->fFirst;
289 element = elLink->next;
290 elLink->next = NULL;
301 return (element ? fGetLink(element)->next
[all...]
/haiku/src/add-ons/kernel/network/datalink_protocols/ethernet_frame/
H A Dethernet_frame.cpp165 return protocol->next->module->send_data(protocol->next, buffer);
172 return protocol->next->module->interface_up(protocol->next);
179 return protocol->next->module->interface_down(protocol->next);
188 return protocol->next->module->change_address(protocol->next, address,
197 return protocol->next->module->control(protocol->next, optio
[all...]
/haiku/src/add-ons/kernel/network/protocols/icmp6/
H A Dicmp6.cpp100 return protocol->next->module->control(protocol->next, level, option,
109 return protocol->next->module->getsockopt(protocol->next, level, option,
118 return protocol->next->module->setsockopt(protocol->next, level, option,
154 return protocol->next->module->send_data(protocol->next, buffer);
162 return protocol->next->module->send_routed_data(protocol->next, rout
[all...]
/haiku/src/system/runtime_loader/
H A Dadd_ons.cpp48 patcher->next = image->defined_symbol_patchers;
63 *patcher = (*patcher)->next;
67 patcher = &(*patcher)->next;
81 patcher->next = image->undefined_symbol_patchers;
96 *patcher = (*patcher)->next;
100 patcher = &(*patcher)->next;
/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dlists2.c32 void *next = NULL; local
36 next = *head;
37 *(void **)(((char *)item)+nextoff) = next;
49 fprintf(stderr, "sll_insert_tail: WARNING: %p->next NOT NULL\n", item);
102 void *next; local
105 next = *(void **)(((char *)item)+nextoff);
106 return next;
H A Dduckduckgo_request.h18 struct duckduckgo_request *next; member in struct:duckduckgo_request
33 struct duckduckgo_result *next; member in struct:duckduckgo_result
/haiku/headers/private/fs_shell/
H A DDoublyLinkedList.h22 DoublyLinkedListLink() : next(NULL), previous(NULL) {}
25 Element *next; member in class:FSShell::DoublyLinkedListLink
389 elLink->next = NULL;
391 sGetLink(fLast)->next = element;
399 elLink->next = fFirst;
424 link->next = before;
427 sGetLink(link->previous)->next = element;
450 link->next = afterLink->next;
451 afterLink->next
[all...]
/haiku/src/add-ons/kernel/partitioning_systems/session/
H A DDisc.cpp40 list_item(uint32 index, list_item* next = NULL)
43 next(next)
48 list_item* next; member in struct:list_item
78 track* next = NULL)
80 list_item(index, next),
99 session(uint32 index, session* next = NULL);
330 item = item->next;
345 item->next = NULL;
347 fLast->next
365 list_item* next = item->next; local
388 list_item* next = NULL; local
451 session(uint32 index, session* next) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A Dfs_cache_priv.h20 struct hash_ent *next; member in struct:hash_ent
49 struct cache_ent *next, /* points toward mru end of list */ member in struct:cache_ent
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DKPPPLayer.h36 //! Sets the next layer. This will be the target of \c SendToNext().
37 void SetNext(KPPPLayer *next) argument
38 { fNext = next; }
57 // send the packet to the next layer
/haiku/src/system/kernel/slab/
H A Dslab_private.h32 head = head->next;
41 object->next = head;
/haiku/src/system/boot/platform/riscv/
H A Dstart.cpp98 fix_address(image->next);
131 // Iterate over the preloaded images. Must save the next address before
132 // converting, as the next pointer will be converted.
136 preloaded_image* next = image->next; local
138 image = next;
145 driver_settings_file* next = file->next; local
146 fix_address(file->next);
148 file = next;
[all...]
/haiku/src/add-ons/kernel/file_systems/packagefs/nodes/
H A DNodeListener.h89 NodeListener* next = fNext;
91 fPrevious->fNext = next;
92 next->fPrevious = fPrevious;
96 return next;

Completed in 130 milliseconds

1234567891011>>