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

/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_catalog.h350 HFSPlusCatalogKey *searchKey,
354 HFSCatalogKey *searchKey,
358 HFSPlusCatalogKey *searchKey,
H A Dhfs_hotfiles.c1973 hfc_comparekeys(HotFileKey *searchKey, HotFileKey *trialKey) argument
1978 if (searchKey->temperature == trialKey->temperature) {
1982 if (searchKey->fileID == trialKey->fileID) {
1986 if (searchKey->forkType == trialKey->forkType) {
1988 } else if (searchKey->forkType > trialKey->forkType) {
1991 } else if (searchKey->fileID > trialKey->fileID) {
1994 } else if (searchKey->temperature > trialKey->temperature) {
H A Dhfs_catalog.c3490 cat_binarykeycompare(HFSPlusCatalogKey *searchKey, HFSPlusCatalogKey *trialKey) argument
3495 searchParentID = searchKey->parentID;
3504 u_int16_t * str1 = &searchKey->nodeName.unicode[0];
3506 int length1 = searchKey->nodeName.length;
3548 CompareCatalogKeys(HFSCatalogKey *searchKey, HFSCatalogKey *trialKey) argument
3553 searchParentID = searchKey->parentID;
3561 result = FastRelString(searchKey->nodeName, trialKey->nodeName);
3575 CompareExtendedCatalogKeys(HFSPlusCatalogKey *searchKey, HFSPlusCatalogKey *trialKey) argument
3580 searchParentID = searchKey->parentID;
3590 if ( searchKey
[all...]
H A Dhfs_xattr.c2057 hfs_attrkeycompare(HFSPlusAttrKey *searchKey, HFSPlusAttrKey *trialKey) argument
2062 searchFileID = searchKey->fileID;
2071 u_int16_t * str1 = &searchKey->attrName[0];
2073 int length1 = searchKey->attrNameLen;
2106 if (searchKey->startBlock == trialKey->startBlock)
2109 return (searchKey->startBlock < trialKey->startBlock ? -1 : 1);
H A Dhfs.h854 int hfs_attrkeycompare(HFSPlusAttrKey *searchKey, HFSPlusAttrKey *trialKey);
/darwin-on-arm/xnu/bsd/hfs/hfscommon/Misc/
H A DFileExtentMapping.c746 int32_t CompareExtentKeys( const HFSExtentKey *searchKey, const HFSExtentKey *trialKey ) argument
751 if (searchKey->keyLength != kHFSExtentKeyMaximumLength)
757 result = -1; // assume searchKey < trialKey
759 if (searchKey->fileID == trialKey->fileID) {
763 if (searchKey->forkType == trialKey->forkType) {
767 if (searchKey->startBlock == trialKey->startBlock) {
777 if (searchKey->startBlock > trialKey->startBlock)
785 if (searchKey->forkType > trialKey->forkType)
793 if (searchKey->fileID > trialKey->fileID)
810 int32_t CompareExtentKeysPlus( const HFSPlusExtentKey *searchKey, cons argument
[all...]
/darwin-on-arm/xnu/bsd/hfs/hfscommon/headers/
H A DFileMgrInternal.h276 CompareExtentKeys (const HFSExtentKey * searchKey,
280 CompareExtentKeysPlus (const HFSPlusExtentKey *searchKey,
H A DBTreesPrivate.h308 KeyPtr searchKey,
441 KeyPtr searchKey,
/darwin-on-arm/xnu/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 45 milliseconds