Searched refs:id (Results 1 – 4 of 4) sorted by relevance
/elf/ |
A D | cache.c | 915 uint64_t ret = ((id->ino * 11 + id->ctime) * 11 + id->size) * 11 + id->dev; in aux_cache_entry_id_hash() 948 if (id.ino == entry->id.ino in search_aux_cache() 949 && id.ctime == entry->id.ctime in search_aux_cache() 950 && id.size == entry->id.size in search_aux_cache() 951 && id.dev == entry->id.dev) in search_aux_cache() 975 if (id->ino == entry->id.ino in insert_to_aux_cache() 976 && id->ctime == entry->id.ctime in insert_to_aux_cache() 977 && id->size == entry->id.size in insert_to_aux_cache() 978 && id->dev == entry->id.dev) in insert_to_aux_cache() 983 entry->id = *id; in insert_to_aux_cache() [all …]
|
A D | dl-tunables.h | 47 # define TUNABLE_NAME_S(top,ns,id) #top "." #ns "." #id argument 88 tunable_id_t id = TUNABLE_ENUM_NAME (__top, __ns, __id); \ in rtld_hidden_proto() 90 __tunable_get_val (id, &ret, __cb); \ in rtld_hidden_proto()
|
A D | dl-tunables.c | 155 __tunable_set_val (tunable_id_t id, tunable_val_t *valp, tunable_num_t *minp, in __tunable_set_val() argument 158 tunable_t *cur = &tunable_list[id]; in __tunable_set_val() 269 tunable_id_t id = TUNABLE_ENUM_NAME (glibc, malloc, check); in maybe_enable_malloc_check() local 271 tunable_list[id].security_level = TUNABLE_SECLEVEL_NONE; in maybe_enable_malloc_check() 401 __tunable_get_val (tunable_id_t id, void *valp, tunable_callback_t callback) in __tunable_get_val() argument 403 tunable_t *cur = &tunable_list[id]; in __tunable_get_val()
|
A D | dl-load.c | 960 struct r_file_id id; in _dl_map_object_from_fd() local 964 memset (&id, 0, sizeof (id)); in _dl_map_object_from_fd() 968 if (__glibc_unlikely (!_dl_get_file_id (fd, &id))) in _dl_map_object_from_fd() 1000 if (!l->l_removed && _dl_file_id_match_p (&l->l_file_id, &id)) in _dl_map_object_from_fd() 1019 && (_dl_file_id_match_p (&id, &GL(dl_rtld_map).l_file_id) in _dl_map_object_from_fd() 1432 l->l_file_id = id; in _dl_map_object_from_fd()
|
Completed in 10 milliseconds