Lines Matching full:files
34 bitstr_t *files; member
150 p = realloc(db->files, bitstr_size(idx + 1)); in maybe_grow_files()
153 db->files = p; in maybe_grow_files()
155 bit_nclear(db->files, db->nbits, idx); in maybe_grow_files()
166 bit_set(db->files, idx); in set_file()
175 * db->files is non-NULL (see maybe_grow_files()). in clear_file()
178 bit_clear(db->files, idx); in clear_file()
185 * db->files is non-NULL (see maybe_grow_files()). in test_file()
188 return bit_test(db->files, idx); in test_file()
266 free(db->files); in tadb_put()
319 * If db->files isn't NULL the bitfield is already populated and in populate_files()
365 free(db->files); in populate_files()
366 db->files = NULL; in populate_files()
400 if (ta->db->files) { in tee_tadb_ta_create()
401 bit_ffc(ta->db->files, ta->db->nbits, &i); in tee_tadb_ta_create()