Searched refs:BTIterateRecord (Results 1 - 8 of 8) sorted by relevance

/xnu-2422.115.4/bsd/hfs/hfscommon/headers/
H A DBTreesInternal.h71 <HFS3> 1/13/97 djb Added kBTreeCurrentRecord for BTIterateRecord.
305 extern OSStatus BTIterateRecord (FCB *filePtr,
/xnu-2422.115.4/bsd/hfs/hfscommon/Catalog/
H A DFileIDsServices.c497 // Using BTIterateRecord with kBTreeNextRecord will then get that first extent record.
527 // records for srcFileID. We then do a few BTIterateRecord and BTInsertRecord of those found
529 // BTIterateRecord and BTInsertRecord until we find an extent for another file, or there are
535 // This depends on BTInsertRecord not effecting the iterator used by BTIterateRecord. If it
537 // of BTIterateRecord. We'd need to set up the key for BTSearchRecord to find the last record
538 // we found, so that BTIterateRecord would get the next one (the first we haven't processed).
566 err = BTIterateRecord(fcb, kBTreeNextRecord, btIterator, &btRecord, &btRecordSize);
741 err = BTIterateRecord(fcb, kBTreeNextRecord, btIterator, &btRecord, &btRecordSize);
/xnu-2422.115.4/bsd/hfs/
H A Dhfs_hotfiles.c1339 if (BTIterateRecord(filefork, bt_op, iterator, NULL, NULL) != 0) {
1558 error = BTIterateRecord(filefork, kBTreeFirstRecord, iterator, &record, &reclen);
1560 printf("hfs_agehotfiles: BTIterateRecord: %d\n", error);
1568 error = BTIterateRecord(filefork, kBTreeNextRecord, iterator, &record, &reclen);
1589 printf("hfs_agehotfiles: %d of %d BTIterateRecord: %d\n", i, numrecs, error);
H A Dhfs_vfsops.c6159 error = BTIterateRecord(extent_info->fcb, kBTreeNextRecord,
6801 error = BTIterateRecord(extent_info->fcb, kBTreeNextRecord,
6913 error = BTIterateRecord(fcb, btree_operation, iterator, &btdata, NULL);
7071 error = BTIterateRecord(fcb, btree_operation, iterator, &btdata, NULL);
7376 /* BTIterateRecord() might return error if the btree is empty, and
7379 error = BTIterateRecord(fcb, kBTreeNextRecord, iterator, &btdata, NULL);
7397 error = BTIterateRecord(fcb, kBTreeNextRecord, iterator, &btdata, NULL);
H A Dhfs_vfsutils.c1584 result = BTIterateRecord(fcb, kBTreeNextRecord, iterator, &btdata, NULL);
1643 if (BTIterateRecord(fcb, kBTreePrevRecord, iterator,
H A Dhfs_xattr.c1579 result = BTIterateRecord(btfile, kBTreeNextRecord, iterator, NULL, NULL);
1970 result = BTIterateRecord(btfile, kBTreeNextRecord, iterator, NULL, NULL);
/xnu-2422.115.4/bsd/hfs/hfscommon/Misc/
H A DFileExtentMapping.c265 err = BTIterateRecord(fcb, kBTreePrevRecord, btIterator, &btRecord, &btRecordSize);
305 err = BTIterateRecord(fcb, kBTreePrevRecord, btIterator, &btRecord, &btRecordSize);
/xnu-2422.115.4/bsd/hfs/hfscommon/BTree/
H A DBTree.c63 <CS9> 12/12/97 djb Radar #2202682, BTIterateRecord with kBTreeCurrentRecord was not
66 <CS8> 10/24/97 msd In BTIterateRecord, when moving to the previous or next record
77 <CS2> 5/19/97 djb Add summary traces to BTIterateRecord.
84 <HFS5> 1/13/97 djb Added support for getting current record to BTIterateRecord.
136 <11> 7/1/93 gs Fix bug in BTIterateRecord related to kBTreePrevRecord
147 <3> 2/8/93 gs Implement BTSearchRecord and BTIterateRecord.
632 Routine: BTIterateRecord - Find the first, next, previous, or last record.
649 OSStatus BTIterateRecord (FCB *filePtr, function
724 printf ("hfs: BTIterateRecord() found invalid btree node on volume %s\n", FCBTOVCB(filePtr)->vcbVN);
892 printf ("hfs: BTIterateRecord() foun
[all...]

Completed in 53 milliseconds