• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/bsd/hfs/

Lines Matching defs:record

517 	FSBufferDescriptor  record;
579 record.bufferAddress = &data;
580 record.itemSize = sizeof(u_int32_t);
581 record.itemCount = 1;
654 error = BTInsertRecord(filefork, iterator, &record, record.itemSize);
661 /* Insert the corresponding thread record. */
667 error = BTInsertRecord(filefork, iterator, &record, record.itemSize);
924 * Update the data of a btree record
945 FSBufferDescriptor record;
961 record.bufferAddress = &data;
962 record.itemSize = sizeof(u_int32_t);
963 record.itemCount = 1;
984 if (BTSearchRecord(filefork, iterator, &record, NULL, iterator) != 0) {
1006 /* Pick up record data. */
1008 (void) BTSearchRecord(filefork, iterator, &record, NULL, iterator);
1019 error = BTInsertRecord(filefork, iterator, &record, record.itemSize);
1056 FSBufferDescriptor record;
1090 record.bufferAddress = &data;
1091 record.itemSize = sizeof(u_int32_t);
1092 record.itemCount = 1;
1177 error = BTInsertRecord(filefork, iterator, &record, record.itemSize);
1185 /* Insert thread record */
1191 error = BTInsertRecord(filefork, iterator, &record, record.itemSize);
1298 * Obtain the first record (ie the coldest one).
1454 FSBufferDescriptor record;
1476 record.bufferAddress = &data;
1477 record.itemSize = sizeof(data);
1478 record.itemCount = 1;
1509 error = BTIterateRecord(filefork, kBTreeFirstRecord, iterator, &record, &reclen);
1519 error = BTIterateRecord(filefork, kBTreeNextRecord, iterator, &record, &reclen);
1527 printf("hfs_agehotfiles: invalid record length %d\n", reclen);
1546 printf("hfs_agehotfiles: ran into thread record\n");