Searched refs:previous (Results 51 - 75 of 119) sorted by relevance

12345

/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;
/haiku/src/system/kernel/util/
H A DAVLTreeBase.cpp96 // The previous node cannot be in the right subtree.
105 AVLTreeNode* previous; local
107 previous = node;
109 } while (node && previous == node->left);
130 AVLTreeNode* previous; local
132 previous = node;
134 } while (node && previous == node->right);
/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...]
/haiku/src/system/libroot/posix/glibc/include/arch/ppc/
H A Dsysdep.h125 .previous; \
137 .previous; \
/haiku/src/system/libroot/os/
H A Ddebug.c198 bool previous = _rtDebugFlag; local
200 return previous;
/haiku/src/apps/icon-o-matic/gui/
H A DIconObjectListView.cpp97 IconObjectListView::PropertyChanged(const Property* previous, argument
105 oldObject->AddProperty(previous->Clone());
/haiku/src/tools/fs_shell/
H A DOpenHashTable.h227 ValueType* previous = NULL; local
234 if (previous)
235 _Link(previous) = next;
241 previous = slot;
/haiku/src/bin/consoled/
H A Dconsoled.cpp225 open_keyboards(int target, const char* start, struct keyboard* previous) argument
240 struct keyboard* keyboard = previous;
280 if (previous != NULL)
281 previous->next = keyboard;
/haiku/headers/private/kernel/util/
H A DOpenHashTable.h227 ValueType* previous = NULL; local
234 if (previous)
235 _Link(previous) = next;
241 previous = slot;
/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyListView.h61 virtual void PropertyChanged(const Property* previous,
H A DPropertyListView.cpp453 PropertyListView::PropertyChanged(const Property* previous, argument
490 Property* previous = fSavedProperties->FindProperty(propertyID); local
492 if (previous && current) {
494 PropertyChanged(previous, current);
498 // and "previous" and "current" are toast)
499 if (fSavedProperties->HasProperty(previous)
501 previous->SetValue(current);
/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/kits/tracker/
H A DGroupedMenu.cpp297 TMenuItemGroup* previous = GroupAt(groupIndex - 1); local
298 group->fFirstItemIndex = previous->fFirstItemIndex
299 + previous->fItemsTotal;
/haiku/src/system/kernel/arch/ppc/
H A Darch_debug.cpp22 struct stack_frame *previous; member in struct:stack_frame
74 *next = (addr_t)frame.previous;
246 // switch back to the previous page directory to no cause any troubles
264 registers->r1 = (addr_t)frame->previous;
/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/add-ons/kernel/network/protocols/ipv6/
H A Dipv6.cpp321 net_buffer* previous = NULL; local
323 while ((previous = iterator.Next()) != NULL) {
324 if (previous->fragment.start <= start) {
329 next = previous;
334 if (previous != NULL && previous->fragment.start <= start
335 && previous->fragment.end >= end) {
344 TRACE(" previous: %p, next: %p", previous, next);
348 if (previous !
[all...]
/haiku/src/add-ons/kernel/network/protocols/ipv4/
H A Dipv4.cpp282 net_buffer* previous = NULL; local
284 while ((previous = iterator.Next()) != NULL) {
285 if (previous->fragment.start <= start) {
290 next = previous;
295 if (previous != NULL && previous->fragment.start <= start
296 && previous->fragment.end >= end) {
305 TRACE(" previous: %p, next: %p", previous, next);
309 if (previous !
[all...]
/haiku/src/system/kernel/device_manager/
H A Ddevice_manager.cpp175 device_node* previous = NULL);
177 status_t _RegisterDynamic(device_node* previous = NULL);
1826 float& bestSupport, device_node* previous)
1829 bestSupport = previous != NULL ? previous->fSupportsParent : 0.0f;
1834 if (previous != NULL && driver == previous->DriverModule()) {
1903 device_node::_RegisterDynamic(device_node* previous) argument
1924 _FindBestDriver(path.Path(), bestDriver, bestSupport, previous);
1937 if (previous !
1825 _FindBestDriver(const char* path, driver_module_info*& bestDriver, float& bestSupport, device_node* previous) argument
2003 device_node* previous = NULL; local
[all...]
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DKPPPInterface.cpp1020 KPPPProtocol *current = fFirstProtocol, *previous = NULL;
1026 previous = current;
1031 if (!previous)
1034 previous->SetNextProtocol(protocol);
1044 if (!previous)
1047 previous->SetNextProtocol(protocol);
1084 KPPPProtocol *current = fFirstProtocol, *previous = NULL;
1091 if (previous) {
1092 previous->SetNextProtocol(current->NextProtocol());
1095 if (!previous
[all...]
/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/headers/private/kernel/
H A Dsmp.h236 uint32 previous = atomic_add(&lock->lock, 1); local
237 return (previous & (1u << 31)) == 0;
/haiku/src/add-ons/kernel/partitioning_systems/common/
H A DPartitionMap.h271 void SetPrevious(LogicalPartition* previous) argument
272 { fPrevious = previous; }
/haiku/src/system/kernel/
H A Dsmp.cpp601 uint32 previous = atomic_get_and_set(&lock->lock, 0); local
602 if ((previous & 1u << 31) == 0) {
604 "%#" B_PRIx32 ")\n", lock, previous);
627 uint32 previous = atomic_add(&lock->lock, 1); local
628 return (previous & (1u << 31)) == 0;
666 uint32 previous = atomic_add(&lock->lock, -1); local
667 if ((previous & 1u << 31) != 0) {
669 " %#" B_PRIx32 ")\n", lock, previous);
/haiku/src/system/kernel/arch/m68k/
H A Darch_debug.cpp23 struct stack_frame *previous; member in struct:stack_frame
75 *next = (addr_t)frame.previous;
239 // switch back to the previous page directory to no cause any troubles
/haiku/src/add-ons/kernel/bluetooth/btCoreData/
H A DConnectionInterface.cpp121 || conn->GetDoublyLinkedListLink()->previous != NULL
150 || conn->GetDoublyLinkedListLink()->previous != NULL

Completed in 491 milliseconds

12345