Searched refs:previous (Results 76 - 100 of 119) sorted by last modified time

12345

/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dsecurity.h74 struct CACHED_PERMISSIONS_LEGACY *previous; member in struct:CACHED_PERMISSIONS_LEGACY
89 struct CACHED_SECURID *previous; member in struct:CACHED_SECURID
/haiku/src/system/libroot/os/
H A Ddebug.c198 bool previous = _rtDebugFlag; local
200 return previous;
/haiku/src/system/kernel/debug/
H A Ddebug_paranoia.cpp153 ParanoiaCheck* previous = fChecks; local
154 while (previous != NULL && previous->fNext != check)
155 previous = previous->fNext;
157 // if previous is NULL (which it shouldn't be), just crash here
158 previous->fNext = check->fNext;
H A Ddebug_heap.cpp27 uint32 previous; member in struct:allocation_header
50 fBase[1].previous = 0;
111 fBase[next].previous = index;
116 fBase[nextNext].previous = next;
141 // join with previous, if possible
142 if (index > 1 && fBase[header->previous].free) {
143 uint32 previous = header->previous; local
144 _RemoveFreeEntry(previous);
146 fBase[previous]
177 uint32 previous; local
199 uint32 previous = ((free_entry*)&fBase[index])->previous_free; local
[all...]
/haiku/src/system/kernel/scheduler/
H A Dscheduler_tracing.h82 ScheduleThread(Thread* thread, Thread* previous) argument
85 fPreviousID(previous->id),
86 fCPU(previous->cpu->cpu_num),
88 fPreviousState(previous->state),
89 fPreviousWaitObjectType(previous->wait.type)
99 fPreviousWaitObject = previous->wait.object;
/haiku/src/system/libroot/os/arch/ppc/
H A Dstack_trace.cpp32 addr_t previous; member in struct:stack_frame
43 basePointer = frame->previous;
/haiku/src/add-ons/kernel/bluetooth/hci/
H A Dbluetooth.cpp288 || device->GetDoublyLinkedListLink()->previous != NULL
/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 DCookie.cpp113 RequestEntry* previous = NULL; local
116 if (previous == NULL)
119 previous->fNext = entry->fNext;
124 previous = entry;
174 OpenFileCookie::RemoveLock(LockInfo* lock, LockInfo* previous) argument
176 if (previous != NULL)
177 previous->fCookieNext = lock->fCookieNext;
179 ASSERT(previous == NULL && fLocks == lock);
H A DRPCServer.cpp446 ServerNode* previous = NULL; local
455 previous = current;
458 previous = current;
466 if (previous == NULL)
469 if (previous->fID < node->fID)
470 previous->fRight = NULL;
472 previous->fLeft = NULL;
474 if (previous->fID < node->fID)
475 previous->fRight = current->fLeft;
477 previous
508 ServerNode* previous = NULL; local
[all...]
H A DFileInfo.cpp73 InodeName* previous = NULL; local
77 fNames.Remove(previous, current);
82 previous = current;
/haiku/headers/private/kernel/util/
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);
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;
/haiku/src/kits/game/
H A DGameProducer.cpp37 _gs_play* previous; member in struct:_gs_play
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Dlock.cpp431 rw_lock_waiter* previous = NULL; local
434 previous = other;
438 if (previous == NULL) {
445 previous->next = waiter.next;
447 lock->waiters->last = previous;
/haiku/src/kits/app/
H A DMessageAdapter.cpp513 uint8 *previous = pointer; local
525 *fieldSize = (uint8)(pointer - previous);
527 *(ssize_t *)fieldSize = (pointer - previous);
/haiku/src/apps/haikudepot/edits_generic/
H A DUndoableEdit.h27 virtual bool UndoesPrevious(const UndoableEdit* previous);
30 const UndoableEdit* previous);
/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/kits/tracker/
H A DGroupedMenu.cpp297 TMenuItemGroup* previous = GroupAt(groupIndex - 1); local
298 group->fFirstItemIndex = previous->fFirstItemIndex
299 + previous->fItemsTotal;
/haiku/src/kits/media/
H A DRealtimeAlloc.cpp47 FreeChunk* previous = NULL);
156 FreeChunk::Remove(rtm_pool* pool, FreeChunk* previous) argument
158 if (previous == NULL) {
159 // find the previous chunk in the list
163 previous = chunk;
171 previous->fNext = fNext;
/haiku/src/preferences/screensaver/
H A DScreenCornerSelector.h45 screen_corner previous) const;
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DAttributeDirectory.cpp267 Attribute* previous = NULL; local
276 previous = attribute;
286 fAttributes.InsertAfter(previous, attribute);
/haiku/src/system/libroot/posix/glibc/include/arch/ppc/
H A Dsysdep.h125 .previous; \
137 .previous; \
/haiku/src/system/libroot/posix/pthread/
H A Dpthread_cleanup.cpp17 handler->previous = thread->cleanup_handlers;
33 thread->cleanup_handlers = handler->previous;
/haiku/src/tests/system/kernel/device_manager/playground/
H A Ddevice_manager.cpp158 device_node* previous = NULL);
160 status_t _RegisterDynamic(device_node* previous = NULL);
1382 float& bestSupport, device_node* previous)
1385 bestSupport = previous != NULL ? previous->fSupportsParent : 0.0f;
1390 if (previous != NULL && driver == previous->DriverModule()) {
1452 device_node::_RegisterDynamic(device_node* previous) argument
1469 _FindBestDriver(path.Path(), bestDriver, bestSupport, previous);
1482 if (previous !
1381 _FindBestDriver(const char* path, driver_module_info*& bestDriver, float& bestSupport, device_node* previous) argument
1581 device_node* previous = NULL; local
[all...]

Completed in 114 milliseconds

12345