Searched refs:btNotFound (Results 1 - 12 of 12) sorted by relevance

/darwin-on-arm/xnu/bsd/hfs/hfscommon/BTree/
H A DBTreeScanner.c56 // btNotFound No more records
110 return btNotFound;
123 err = btNotFound;
/darwin-on-arm/xnu/bsd/hfs/hfscommon/Catalog/
H A DCatalogUtilities.c87 if (result == btNotFound) {
167 return (result == btNotFound ? cmNotFound : result);
H A DFileIDsServices.c516 // We expect a btNotFound here, since there shouldn't be an extent record with FABN = 0.
517 if (err != btNotFound)
540 if ( err == btNotFound ) // Did we run out of extent records in the extents tree?
685 if ( err != btNotFound )
701 if (err == btNotFound) // If we hit the end of the BTree
/darwin-on-arm/xnu/bsd/hfs/hfscommon/Misc/
H A DFileExtentMapping.c260 if (err == btNotFound && allowPrevious) {
263 // A previous record may not exist, so just return btNotFound (like we would if
266 err = btNotFound;
271 err = btNotFound;
318 if (err == btNotFound && allowPrevious) {
321 // A previous record may not exist, so just return btNotFound (like we would if
324 err = btNotFound;
329 err = btNotFound;
658 if (err == btNotFound)
1610 if (error != btNotFound)
[all...]
/darwin-on-arm/xnu/bsd/hfs/hfscommon/headers/
H A DBTreesInternal.h94 fsBTRecordNotFoundErr = btNotFound,
H A DFileMgrInternal.h79 btNotFound = ERR_BASE + 32, /* record not found*/ enumerator in enum:__anon109
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_xattr.c504 if (result == btNotFound) {
919 return (result == btNotFound ? ENOATTR : MacToVFSError(result));
1521 if (result && (result != btNotFound)) {
1529 if ((result && (result == btNotFound)) || (key->fileID != fileID)) {
1623 return (result == btNotFound ? ENOATTR : MacToVFSError(result));
1767 if (result && result != btNotFound) {
1792 if (state.result || result == btNotFound)
1926 return (result == btNotFound ? 0: MacToVFSError(result));
2002 if (result == btNotFound)
H A Dhfs_catalog.c1170 if (std_hfs || (result != btNotFound))
1426 if (std_hfs || (result != btNotFound))
1572 return (btNotFound);
1588 return (btNotFound);
1631 return (btNotFound);
1696 return (btNotFound);
1811 return (btNotFound);
1951 return (btNotFound);
H A Dhfs_search.c420 } else if ( err == btNotFound ) {
H A Dhfs_hotfiles.c630 if (error == btNotFound)
H A Dhfs_vfsops.c5365 if (error != btNotFound) {
5414 /* BTSearchRecord above returned btNotFound,
5427 /* BTSearchRecord above returned btNotFound,
6714 if (error != btNotFound) {
6717 /* btNotFound is expected here, so just mask it */
7277 * extent record for given fileID. It will always return btNotFound,
7281 if (error && (error != btNotFound)) {
H A Dhfs_vfsutils.c1763 case btNotFound: /* -32735 */

Completed in 166 milliseconds