Home
last modified time | relevance | path

Searched refs:btrecord_size (Results 1 – 3 of 3) sorted by relevance

/xnu-8019.80.24/tools/lldbmacros/
H A Dbtlog.py19 record_size = btlog.btrecord_size
28 capacity = (btlog.btlog_buffersize - sizeof('btlog_t')) / btlog.btrecord_size
117 record_size = btlog.btrecord_size
H A Dmemory.py1101 btrecord_size = unsigned(btlog_ptr.btrecord_size)
1110 max_count = ((btrecords_total_size - btlog_size)/btrecord_size)
1116 zstack_record_offset = zstack_index * btrecord_size
1141 btrecord_size = unsigned(btlog_ptr.btrecord_size)
1148 count = ((btrecords_total_size - btlog_size)/btrecord_size)
1151 zstack_record_offset = zstack_index * btrecord_size
1181 btrecord_size = unsigned(btlog_ptr.btrecord_size)
1191 cpcs_record_offset = cpcs_index * btrecord_size
1233 btrecord_size = unsigned(btlog_ptr.btrecord_size)
1247 recoffset = recindex * btrecord_size
[all …]
/xnu-8019.80.24/osfmk/kern/
H A Dbtlog.c113 size_t btrecord_size; member
138 ((btlog_record_t *)(btlog->btrecords + index * btlog->btrecord_size))
239 size_t btrecord_size = 0; in btlog_create() local
261 btrecord_size = sizeof(btlog_record_t) in btlog_create()
264 buffersize_needed = sizeof(btlog_t) + numrecords * btrecord_size; in btlog_create()
283 (buffersize_needed - sizeof(btlog_t)) / btrecord_size); in btlog_create()
344 btlog->btrecord_size = btrecord_size; in btlog_create()
873 return (btlog->btlog_buffersize - sizeof(btlog_t)) / btlog->btrecord_size; in get_btlog_records_count()
894 count = (unsigned int)((btlog->btlog_buffersize - sizeof(btlog_t)) / btlog->btrecord_size); in get_btlog_records()