Searched refs:previous (Results 26 - 50 of 119) sorted by relevance

12345

/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dcache.h29 struct CACHED_GENERIC *previous; member in struct:CACHED_GENERIC
37 struct CACHED_INODE *previous; member in struct:CACHED_INODE
47 struct CACHED_NIDATA *previous; member in struct:CACHED_NIDATA
58 struct CACHED_LOOKUP *previous; member in struct:CACHED_LOOKUP
/haiku/headers/private/fs_shell/
H A DDoublyLinkedList.h22 DoublyLinkedListLink() : next(NULL), previous(NULL) {}
26 Element *previous; member in class:FSShell::DoublyLinkedListLink
388 elLink->previous = fLast;
398 elLink->previous = NULL;
401 sGetLink(fFirst)->previous = element;
425 link->previous = beforeLink->previous;
426 if (link->previous != NULL)
427 sGetLink(link->previous)->next = element;
428 beforeLink->previous
[all...]
/haiku/src/add-ons/kernel/network/protocols/tcp/
H A DBufferQueue.cpp129 net_buffer *previous = NULL; local
131 while ((previous = iterator.Next()) != NULL) {
132 if (sequence >= previous->sequence) {
137 next = previous;
141 if (previous != NULL) {
142 if (sequence == previous->sequence) {
146 if (previous->size >= buffer->size) {
150 fList.Remove(previous);
151 fNumBytes -= previous->size;
152 gBufferModule->free(previous);
[all...]
/haiku/headers/private/kernel/util/
H A DDoublyLinkedList.h30 Element* previous; member in class:DoublyLinkedListLink
406 elLink->previous = fLast;
415 elLink->previous = NULL;
418 sGetLink(fFirst)->previous = element;
447 link->previous = beforeLink->previous;
448 beforeLink->previous = element;
450 if (link->previous != NULL)
451 sGetLink(link->previous)->next = element;
476 link->previous
[all...]
H A DSinglyLinkedList.h149 inline void Remove(Element* previous, Element* element);
226 SINGLY_LINKED_LIST_CLASS_NAME::Remove(Element* previous, Element* element) argument
228 // ASSERT(previous == NULL
229 // ? fFirst == element : sGetLink(previous)->next == element);
232 if (previous == NULL)
235 sGetLink(previous)->next = elementLink->next;
H A DSplayTree.h503 if (Node* previous = fTree.PreviousDontSplay(Definition::GetKey(node)))
504 previousNext = Definition::GetListLink(previous);
521 if (Node* previous = fTree.PreviousDontSplay(key))
522 previousNext = Definition::GetListLink(previous);
537 if (Node* previous = fTree.PreviousDontSplay(Definition::GetKey(node)))
538 previousNext = Definition::GetListLink(previous);
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DSLList.h173 inline void InsertAfter(Element *previous, Element *element);
198 inline void _Remove(Element *previous, Element *element);
226 SL_LIST_CLASS_NAME::InsertAfter(Element *previous, Element *element) argument
230 if (previous) {
231 // insert after previous element
232 Link *prevLink = fGetLink(previous);
236 // no previous element given: prepend
242 if (fLast == previous)
307 SL_LIST_CLASS_NAME::_Remove(Element *previous, Element *element) argument
310 if (previous)
[all...]
/haiku/src/apps/mediaplayer/interface/
H A DSubtitleBitmap.cpp177 previous(NULL)
181 ParseState(ParseState* previous) argument
183 color(previous->color),
184 bold(previous->bold),
185 italic(previous->italic),
186 underlined(previous->underlined),
188 previous(previous)
197 ParseState* previous; member in struct:ParseState
258 if (state->previous !
[all...]
/haiku/src/apps/icon-o-matic/document/
H A DSetPropertiesCommand.h21 PropertyObject* previous,
H A DSetPropertiesCommand.cpp29 PropertyObject* previous,
35 fOldProperties(previous),
27 SetPropertiesCommand(IconObject** objects, int32 objectCount, PropertyObject* previous, PropertyObject* current) argument
/haiku/src/apps/icon-o-matic/gui/
H A DIconObjectListView.h29 virtual void PropertyChanged(const Property* previous,
/haiku/headers/private/net/
H A Dr5_compatibility.h57 struct stack_frame* previous;
/haiku/src/apps/diskprobe/
H A DFindWindow.h27 FindWindow(BRect rect, BMessage& previous,
/haiku/src/apps/icon-o-matic/style/
H A DSetColorCommand.cpp59 rgb_color previous = fStyle->Color(); local
61 fColor = previous;
/haiku/src/tests/system/kernel/slab/
H A DSlab.cpp235 fStores[i].loaded = fStores[i].previous = NULL;
268 // if it's not empty, or from the previous magazine if it's full
278 if (store->previous && (_IsMagazineFull(store->previous)
279 || _ExchangeWithFull(store->previous)))
280 std::swap(store->previous, store->loaded);
293 // and it's not full, or to the previous one if it is empty. If
301 if ((store->previous && _IsMagazineEmpty(store->previous))
302 || _ExchangeWithEmpty(store->previous))
[all...]
/haiku/src/kits/network/libnetservices/
H A DUrlContext.cpp73 BHttpAuthentication* previous = fAuthenticationMap->Get(hostHash); local
75 if (previous)
76 *previous = authentication;
/haiku/src/system/kernel/
H A Dsyscalls.cpp71 generic_syscall* previous; member in struct:generic_syscall
175 syscall = syscall->previous;
254 generic_syscall* previous = find_generic_syscall(subsystem); local
255 if (previous != NULL) {
257 || version < previous->version) {
260 if ((previous->flags & B_SYSCALL_NOT_REPLACEABLE) != 0)
274 syscall->previous = previous;
279 if (previous != NULL)
280 sGenericSyscalls.Remove(previous);
[all...]
/haiku/src/servers/app/
H A DWindowList.h58 Window* previous; member in struct:window_anchor
H A DCanvas.cpp70 DrawState* previous = fDrawState.Detach(); local
71 DrawState* newState = previous->PushState();
73 newState = previous;
/haiku/src/preferences/screensaver/
H A DScreenCornerSelector.h45 screen_corner previous) const;
/haiku/src/add-ons/kernel/file_systems/userlandfs/private/
H A DRequestPort.cpp17 AllocatorNode(Port* port) : allocator(port), previous(NULL) {}
20 AllocatorNode* previous; member in struct:RequestPort::AllocatorNode
146 node->previous = fCurrentAllocatorNode;
204 AllocatorNode* node = fCurrentAllocatorNode->previous;
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DDeviceList.cpp82 device_list_entry *previous = NULL;
87 if (previous == NULL)
90 previous->next = current->next;
98 previous = current;
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DDirectoryCache.cpp168 NameCacheEntry* previous = NULL; local
172 fNameCache.Remove(previous, current);
177 previous = current;
184 previous = NULL;
188 fDirectoryCache->fEntries.Remove(previous, current);
193 previous = current;
H A DFileInfo.cpp73 InodeName* previous = NULL; local
77 fNames.Remove(previous, current);
82 previous = current;
/haiku/src/system/libroot/posix/glibc/include/arch/sparc/
H A Dsysdep.h35 .previous; \

Completed in 164 milliseconds

12345