Lines Matching refs:record

522 	FSBufferDescriptor  record;
595 record.bufferAddress = &data;
596 record.itemSize = sizeof(u_int32_t);
597 record.itemCount = 1;
670 error = BTInsertRecord(filefork, iterator, &record, record.itemSize);
677 /* Insert the corresponding thread record. */
683 error = BTInsertRecord(filefork, iterator, &record, record.itemSize);
939 * Update the data of a btree record
960 FSBufferDescriptor record;
980 record.bufferAddress = &data;
981 record.itemSize = sizeof(u_int32_t);
982 record.itemCount = 1;
1003 if (BTSearchRecord(filefork, iterator, &record, NULL, iterator) != 0) {
1025 /* Pick up record data. */
1027 (void) BTSearchRecord(filefork, iterator, &record, NULL, iterator);
1038 error = BTInsertRecord(filefork, iterator, &record, record.itemSize);
1076 FSBufferDescriptor record;
1115 record.bufferAddress = &data;
1116 record.itemSize = sizeof(u_int32_t);
1117 record.itemCount = 1;
1202 error = BTInsertRecord(filefork, iterator, &record, record.itemSize);
1210 /* Insert thread record */
1216 error = BTInsertRecord(filefork, iterator, &record, record.itemSize);
1328 * Obtain the first record (ie the coldest one).
1484 FSBufferDescriptor record;
1510 record.bufferAddress = &data;
1511 record.itemSize = sizeof(data);
1512 record.itemCount = 1;
1543 error = BTIterateRecord(filefork, kBTreeFirstRecord, iterator, &record, &reclen);
1553 error = BTIterateRecord(filefork, kBTreeNextRecord, iterator, &record, &reclen);
1561 printf("hfs_agehotfiles: invalid record length %d\n", reclen);
1580 printf("hfs_agehotfiles: ran into thread record\n");