Searched refs:previous (Results 26 - 50 of 119) sorted by last modified time

12345

/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...]
H A Dheap.cpp1132 heap_area *previous = heap->all_areas; local
1133 while (previous) {
1134 if (previous->all_next == area) {
1135 previous->all_next = area->all_next;
1139 previous = previous->all_next;
1142 if (previous == NULL)
/haiku/src/apps/icon-o-matic/style/
H A DSetColorCommand.cpp59 rgb_color previous = fStyle->Color(); local
61 fColor = 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/apps/icon-o-matic/generic/property/view/
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);
H A DPropertyListView.h61 virtual void PropertyChanged(const Property* previous,
/haiku/src/apps/icon-o-matic/document/
H A DSetPropertiesCommand.cpp29 PropertyObject* previous,
35 fOldProperties(previous),
27 SetPropertiesCommand(IconObject** objects, int32 objectCount, PropertyObject* previous, PropertyObject* current) argument
/haiku/src/tools/fs_shell/
H A Dfd.cpp139 int32_t previous = fssh_atomic_add(&descriptor->ref_count, -1); local
145 if (previous == 1) {
152 && previous - 1 == descriptor->open_count
H A Dblock_cache.cpp773 sure that the previous block contents are preserved in that case.
857 // remember any previous contents for the parent transaction
892 cache_transaction* previous = block->previous_transaction; local
895 void* data = previous && block->original_data
897 // we first need to write back changes from previous transactions
913 if (previous != NULL) {
914 previous->blocks.Remove(block);
924 // Has the previous transation been finished with that write?
925 if (--previous->num_blocks == 0) {
926 TRACE(("cache transaction %ld finished!\n", previous
[all...]
/haiku/src/system/kernel/cache/
H A Dfile_cache.cpp239 // the iovec can be combined with the previous one
269 int32 previous = index - 1; local
270 if (previous < 0)
271 previous = LAST_ACCESSES - 1;
273 if (offset != ref->LastAccess(previous, isWrite))
274 ref->last_access[previous] = 0;
301 int32 previous = index - 1; local
302 if (previous < 0)
303 previous = LAST_ACCESSES - 1;
306 ref->LastAccessPageOffset(previous, tru
[all...]
H A Dblock_cache.cpp107 // There can only be one previous transaction, so when the active
108 // transaction ends, the changes of the previous transaction have to
109 // be written back before that transaction becomes the next previous
385 " (previous id %" B_PRId32 ")\n", fCache, _Action(), fBlockNumber,
1060 part of a previous transacton.
1180 // This block was already part of a previous transaction within this
1269 // We first need to write back changes from previous transactions
1318 cache_transaction* previous = block->previous_transaction; local
1319 if (previous != NULL) {
1320 previous
[all...]
/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/apps/icon-o-matic/generic/command/
H A DCommand.cpp63 Command::UndoesPrevious(const Command* previous) argument
77 Command::CombineWithPrevious(const Command* previous) argument
H A DCommand.h30 virtual bool UndoesPrevious(const Command* previous);
32 virtual bool CombineWithPrevious(const Command* previous);
/haiku/src/system/kernel/locks/
H A Dlock.cpp628 rw_lock_waiter* previous = NULL; local
631 previous = other;
635 if (previous == NULL) {
642 previous->next = waiter.next;
644 lock->waiters->last = previous;
/haiku/src/system/kernel/device_manager/
H A DIORequest.cpp1169 IORequest::NextSubRequest(IORequest* previous) argument
1171 if (previous == NULL)
1173 return dynamic_cast<IORequest*>(fChildren.GetNext(previous));
H A DIORequest.h295 IORequest* NextSubRequest(IORequest* previous);
/haiku/headers/posix/
H A Dpthread.h56 struct __pthread_cleanup_handler *previous; member in struct:__pthread_cleanup_handler
/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/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/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/servers/mount/
H A DAutoMounter.cpp60 bool initialRescan, BMessage& previous,
127 bool initialRescan, BMessage& previous, partition_id deviceID)
132 fPrevious(previous),
126 MountVisitor(mount_mode normalMode, mount_mode removableMode, bool initialRescan, BMessage& previous, partition_id deviceID) argument
/haiku/src/kits/network/libnetservices/
H A DUrlContext.cpp73 BHttpAuthentication* previous = fAuthenticationMap->Get(hostHash); local
75 if (previous)
76 *previous = authentication;
/haiku/src/add-ons/kernel/partitioning_systems/common/
H A DPartitionMap.h271 void SetPrevious(LogicalPartition* previous) argument
272 { fPrevious = previous; }
/haiku/src/add-ons/kernel/file_systems/nfs/
H A Dnfs_add_on.c789 fs_node *previous; local
794 previous = NULL;
797 previous = current;
802 if (previous)
803 previous->next = current->next;

Completed in 110 milliseconds

12345