Searched refs:searchKey (Results 1 - 10 of 10) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/hfscommon/Misc/
H A DFileExtentMapping.c727 int32_t CompareExtentKeys( const HFSExtentKey *searchKey, const HFSExtentKey *trialKey ) argument
732 if (searchKey->keyLength != kHFSExtentKeyMaximumLength)
738 result = -1; // assume searchKey < trialKey
740 if (searchKey->fileID == trialKey->fileID) {
744 if (searchKey->forkType == trialKey->forkType) {
748 if (searchKey->startBlock == trialKey->startBlock) {
758 if (searchKey->startBlock > trialKey->startBlock)
766 if (searchKey->forkType > trialKey->forkType)
774 if (searchKey->fileID > trialKey->fileID)
791 int32_t CompareExtentKeysPlus( const HFSPlusExtentKey *searchKey, cons argument
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_catalog.h331 HFSPlusCatalogKey *searchKey,
335 HFSCatalogKey *searchKey,
339 HFSPlusCatalogKey *searchKey,
H A Dhfs_hotfiles.c1930 hfc_comparekeys(HotFileKey *searchKey, HotFileKey *trialKey) argument
1935 if (searchKey->temperature == trialKey->temperature) {
1939 if (searchKey->fileID == trialKey->fileID) {
1943 if (searchKey->forkType == trialKey->forkType) {
1945 } else if (searchKey->forkType > trialKey->forkType) {
1948 } else if (searchKey->fileID > trialKey->fileID) {
1951 } else if (searchKey->temperature > trialKey->temperature) {
H A Dhfs_xattr.c1722 hfs_attrkeycompare(HFSPlusAttrKey *searchKey, HFSPlusAttrKey *trialKey) argument
1727 searchFileID = searchKey->fileID;
1736 u_int16_t * str1 = &searchKey->attrName[0];
1738 int length1 = searchKey->attrNameLen;
1771 if (searchKey->startBlock == trialKey->startBlock)
1774 return (searchKey->startBlock < trialKey->startBlock ? -1 : 1);
H A Dhfs_catalog.c3264 cat_binarykeycompare(HFSPlusCatalogKey *searchKey, HFSPlusCatalogKey *trialKey) argument
3269 searchParentID = searchKey->parentID;
3278 u_int16_t * str1 = &searchKey->nodeName.unicode[0];
3280 int length1 = searchKey->nodeName.length;
3322 CompareCatalogKeys(HFSCatalogKey *searchKey, HFSCatalogKey *trialKey) argument
3327 searchParentID = searchKey->parentID;
3335 result = FastRelString(searchKey->nodeName, trialKey->nodeName);
3349 CompareExtendedCatalogKeys(HFSPlusCatalogKey *searchKey, HFSPlusCatalogKey *trialKey) argument
3354 searchParentID = searchKey->parentID;
3364 if ( searchKey
[all...]
H A Dhfs.h746 int hfs_attrkeycompare(HFSPlusAttrKey *searchKey, HFSPlusAttrKey *trialKey);
/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/hfscommon/headers/
H A DFileMgrInternal.h262 CompareExtentKeys (const HFSExtentKey * searchKey,
266 CompareExtentKeysPlus (const HFSPlusExtentKey *searchKey,
H A DBTreesPrivate.h308 KeyPtr searchKey,
441 KeyPtr searchKey,
/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/hfscommon/BTree/
H A DBTreeNodeOps.c101 compare was searchKey > trialKey. Add UpdateNode.
710 searchKey - pointer to the key to match
720 KeyPtr searchKey,
740 result = compareProc(searchKey, trialKey);
718 SearchNode( BTreeControlBlockPtr btreePtr, NodeDescPtr node, KeyPtr searchKey, u_int16_t *returnIndex ) argument
H A DBTreeTreeOps.c197 BTreeKeyPtr searchKey,
283 keyFound = SearchNode (btreePtr, nodeRec.buffer, searchKey, &index);
328 return noErr; // searchKey found, index identifies record in node
330 return fsBTRecordNotFoundErr; // searchKey not found, index identifies insert point
196 SearchTree(BTreeControlBlockPtr btreePtr, BTreeKeyPtr searchKey, TreePathTable treePathTable, u_int32_t *nodeNum, BlockDescriptor *nodePtr, u_int16_t *returnIndex ) argument

Completed in 71 milliseconds