Searched refs:is_tmp (Results 1 – 4 of 4) sorted by relevance
/trusty/user/app/storage/ |
D | block_cache.h | 78 void* block_dirty(struct transaction* tr, const void* data, bool is_tmp); 100 bool is_tmp, 106 bool is_tmp, 111 bool is_tmp, 122 bool is_tmp); 127 bool is_tmp,
|
D | block_allocator.h | 26 data_block_t block_allocate_etc(struct transaction* tr, bool is_tmp); 27 void block_free_etc(struct transaction* tr, data_block_t block, bool is_tmp); 30 bool is_tmp);
|
D | block_allocator.c | 138 bool is_tmp, in block_allocator_queue_add() argument 148 assert(q->entry[index].tmp == is_tmp); in block_allocator_queue_add() 157 block, is_tmp, is_free); in block_allocator_queue_add() 169 q->entry[q->tail].tmp = is_tmp; in block_allocator_queue_add() 174 is_tmp, is_free, q->tail, block_allocator_queue_count(q)); in block_allocator_queue_add() 351 data_block_t block_allocate_etc(struct transaction* tr, bool is_tmp) { in block_allocate_etc() argument 369 min_block = is_tmp ? tr->last_tmp_free_block : tr->last_free_block; in block_allocate_etc() 383 block_allocator_queue_add(&block_allocator_queue, block, is_tmp, false); in block_allocate_etc() 410 bool is_tmp) { in block_allocator_add_allocated() argument 411 if (is_tmp) { in block_allocator_add_allocated() [all …]
|
D | block_cache.c | 1251 void* block_dirty(struct transaction* tr, const void* data, bool is_tmp) { in block_dirty() argument 1276 entry->dirty_tmp = is_tmp; in block_dirty() 1456 bool is_tmp, in block_get_write_no_read() argument 1459 return block_dirty(tr, data_ro, is_tmp); in block_get_write_no_read() 1479 bool is_tmp, in block_get_write() argument 1485 return block_dirty(tr, data_ro, is_tmp); in block_get_write() 1499 bool is_tmp, in block_get_cleared() argument 1501 void* data = block_get_write_no_read(tr, block, is_tmp, ref); in block_get_cleared() 1559 bool is_tmp, in block_get_copy() argument 1567 dst_data = block_get_write_no_read(tr, block, is_tmp, new_ref); in block_get_copy() [all …]
|