Searched defs:objects (Results 1 - 3 of 3) sorted by relevance
/dovecot/src/auth/ |
H A D | test-db-dict.c | 21 const struct db_dict_key *objects[] = { local 33 buffer_create_from_const_data(&objectbuf, objects, sizeof(objects)); 36 array_create_from_buffer(&objectarr, &objectbuf, sizeof(objects[0]));
|
H A D | db-dict.c | 44 const ARRAY_TYPE(db_dict_key_p) *objects; 382 array_foreach(iter->objects, keyp) { 442 const ARRAY_TYPE(db_dict_key_p) *objects, 456 iter->objects = objects; 519 iter->error = "Nested objects not supported"; 548 if (iter->object_idx == array_count(iter->objects)) 551 keyp = array_idx(iter->objects, iter->object_idx); 439 db_dict_value_iter_init(struct dict_connection *conn, struct auth_request *auth_request, const ARRAY_TYPE(db_dict_field) *fields, const ARRAY_TYPE(db_dict_key_p) *objects, struct db_dict_value_iter **iter_r) argument
|
/dovecot/src/plugins/acl/ |
H A D | acl-cache.c | 25 HASH_TABLE(char *, struct acl_object_cache *) objects; member in struct:acl_cache 51 hash_table_create(&cache->objects, default_pool, 0, str_hash, strcmp); 67 hash_table_destroy(&cache->objects); 169 obj_cache = hash_table_lookup(cache->objects, objname); 171 hash_table_remove(cache->objects, objname); 182 iter = hash_table_iterate_init(cache->objects); 183 while (hash_table_iterate(iter, cache->objects, &key, &obj_cache)) 187 hash_table_clear(cache->objects, FALSE); 274 obj_cache = hash_table_lookup(cache->objects, objname); 279 hash_table_insert(cache->objects, obj_cach [all...] |
Completed in 169 milliseconds