Searched refs:newKey (Results 1 - 20 of 20) sorted by last modified time

/haiku/headers/private/file_systems/
H A DQueryParser.h145 const uint8* newKey, size_t newLength);
1451 int32 type, const uint8* oldKey, size_t oldLength, const uint8* newKey,
1465 LiveUpdate(entry, node, attribute, type, oldKey, oldLength, newKey,
1475 type, newKey, newLength);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBPlusTree.cpp1526 uint8* newKey = NULL; local
1533 // the parent node, so we will set the "newKey" already here.
1536 newKey = key;
1551 newKey = (uint8*)malloc(newLength);
1552 if (newKey == NULL)
1556 memcpy(newKey, droppedKey, newLength);
1602 free(newKey);
1657 // If it's the dropped key, "newKey" was already set earlier.
1659 if (newKey == NULL)
1660 newKey
[all...]
H A DQuery.cpp1361 const uint8* oldKey, size_t oldLength, const uint8* newKey,
1372 newKey, newLength);
1403 name = (const char*)newKey;
H A DVolume.cpp411 const uint8* oldKey, size_t oldLength, const uint8* newKey,
419 query->LiveUpdate(inode, attribute, type, oldKey, oldLength, newKey,
410 UpdateLiveQueries(Inode* inode, const char* attribute, int32 type, const uint8* oldKey, size_t oldLength, const uint8* newKey, size_t newLength) argument
H A DVolume.h133 const uint8* newKey, size_t newLength);
H A DIndex.cpp213 /*! Updates the specified index, the oldKey will be removed from, the newKey
221 const uint8* oldKey, uint16 oldLength, const uint8* newKey,
225 || (oldKey == NULL && newKey == NULL)
227 || (newKey != NULL && newLength == 0))
241 oldKey, oldLength, newKey, newLength)) {
247 newKey, newLength);
275 if (newKey != NULL) {
276 status = tree->Insert(transaction, (const uint8*)newKey, newLength,
220 Update(Transaction& transaction, const char* name, int32 type, const uint8* oldKey, uint16 oldLength, const uint8* newKey, uint16 newLength, Inode* inode) argument
H A DIndex.h34 uint16 oldLength, const uint8* newKey,
H A DQuery.h57 size_t oldLength, const uint8* newKey,
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DVolume.cpp620 const void* oldKey, size_t oldLength, const void* newKey,
625 query->LiveUpdate(node, attribute, type, oldKey, oldLength, newKey,
619 UpdateLiveQueries(Node* node, const char* attribute, int32 type, const void* oldKey, size_t oldLength, const void* newKey, size_t newLength) argument
H A DVolume.h87 const void* newKey, size_t newLength);
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DQuery.h46 const void* newKey, size_t newLength);
H A DQuery.cpp335 const void* oldKey, size_t oldLength, const void* newKey, size_t newLength)
338 oldLength, (const uint8*)newKey, newLength);
334 LiveUpdate(Entry* entry, Node* node, const char* attribute, int32 type, const void* oldKey, size_t oldLength, const void* newKey, size_t newLength) argument
H A DVolume.cpp708 int32 type, const uint8 *oldKey, size_t oldLength, const uint8 *newKey,
717 newKey, newLength);
707 UpdateLiveQueries(Entry *entry, Node* node, const char *attribute, int32 type, const uint8 *oldKey, size_t oldLength, const uint8 *newKey, size_t newLength) argument
H A DAttribute.cpp87 uint8 newKey[kMaxIndexKeyLength]; local
89 GetKey(newKey, &newLength);
91 oldLength, newKey, newLength);
H A DVolume.h153 const uint8 *newKey, size_t newLength);
/haiku/src/system/kernel/scheduler/
H A Dscheduler_cpu.cpp548 int32 newKey; local
552 newKey = intervalSkipped ? fCurrentLoad : GetLoad();
561 newKey = GetLoad();
566 ASSERT(newKey >= 0);
568 if (oldKey == newKey)
571 if (newKey > kHighLoad) {
577 gCoreHighLoadHeap.Insert(this, newKey);
581 gCoreHighLoadHeap.ModifyKey(this, newKey);
582 } else if (newKey < kMediumLoad) {
588 gCoreLoadHeap.Insert(this, newKey);
[all...]
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DQuery.cpp280 const void* oldKey, size_t oldLength, const void* newKey, size_t newLength)
283 oldLength, (const uint8*)newKey, newLength);
279 LiveUpdate(Node* node, const char* attribute, int32 type, const void* oldKey, size_t oldLength, const void* newKey, size_t newLength) argument
H A DQuery.h38 const void* newKey, size_t newLength);
/haiku/headers/private/kernel/util/
H A DHeap.h85 inline void ModifyKey(Element* element, Key newKey);
209 HEAP_CLASS_NAME::ModifyKey(Element* element, Key newKey) argument
215 link->fKey = newKey;
217 if (sCompare(newKey, oldKey))
219 else if (sCompare(oldKey, newKey))
H A DMinMaxHeap.h81 inline void ModifyKey(Element* element, Key newKey);
231 MIN_MAX_HEAP_CLASS_NAME::ModifyKey(Element* element, Key newKey) argument
236 link->fKey = newKey;
238 if (!sCompare(newKey, oldKey) && !sCompare(oldKey, newKey))
241 if (sCompare(newKey, oldKey) ^ !link->fMinTree)

Completed in 134 milliseconds