Searched refs:list (Results 1 – 16 of 16) sorted by relevance
/elf/ |
A D | dl-scope.c | 28 #define DL_SCOPE_FREE_LIST_SIZE (sizeof (fsl->list) / sizeof (fsl->list[0])) in _dl_scope_free() 43 fsl->list[0] = old; in _dl_scope_free() 48 fsl->list[fsl->count++] = old; in _dl_scope_free() 53 free (fsl->list[--fsl->count]); in _dl_scope_free()
|
A D | dl-usage.c | 54 print_search_path_for_help_1 (struct r_search_path_elem **list) in print_search_path_for_help_1() argument 56 if (list == NULL || list == (void *) -1) in print_search_path_for_help_1() 60 for (; *list != NULL; ++list) in print_search_path_for_help_1() 63 const char *name = (*list)->dirname; in print_search_path_for_help_1() 64 size_t namelen = (*list)->dirnamelen; in print_search_path_for_help_1() 75 _dl_printf (" (%s)\n", (*list)->what); in print_search_path_for_help_1()
|
A D | dl-deps.c | 83 return p - list; in _dl_build_local_scope() 91 struct list struct 161 struct list *runp, *tail; in _dl_map_object_deps() 228 struct list *orig; in _dl_map_object_deps() 263 struct list *newp; in _dl_map_object_deps() 284 struct list *newp; in _dl_map_object_deps() 357 struct list *late; in _dl_map_object_deps() 566 struct link_map **list = &map->l_reldeps->list[0]; in _dl_map_object_deps() local 568 if (list[i]->l_reserved) in _dl_map_object_deps() 581 memcpy (&l_reldeps->list[0], &list[0], in _dl_map_object_deps() [all …]
|
A D | tst-rtld-list-tunables.sh | 42 $rtld --list-tunables \
|
A D | pldd-xx.c | 119 EW(Addr) list = 0; in E() 140 list = r.r_map; in E() 156 if (list == 0) in E() 181 if (pread (memfd, &m, sizeof (m), list) != sizeof (m)) in E() 207 list = m.l_next; in E() 209 while (list != 0); in E()
|
A D | tst-rtld-load-self.sh | 34 ${test_wrapper} $rtld --list $rtld 2>&1 && rc=0 || rc=$?
|
A D | rtld-debugger-interface.txt | 16 A linked list of loaded objects. 19 The current state of the r_map list. RT_CONSISTENT means that r_map 21 means that an object is being added to r_map, and that the list is 23 object is being removed from the list. 61 The link-map ID of the link-map list that the object was loaded 63 list, or some other value for different namespaces. 66 A pointer to the r_debug structure containing the link-map list 68 DT_DEBUG for the application's main link-map list, or some other 76 r_debug structure's link-map list corresponding to the first new 80 larger list, new->l_prev (if not NULL) will point to what was the [all …]
|
A D | rtld.c | 201 list->length = 0; in audit_list_init() 213 if (list->length == array_length (list->audit_strings)) in audit_list_add_string() 216 list->audit_strings[list->length++] = string; in audit_list_add_string() 220 if (list->length == 1) in audit_list_add_string() 246 ++list->current_index; in audit_list_next() 247 if (list->current_index == list->length) in audit_list_next() 252 list->current_tail = list->audit_strings[list->current_index]; in audit_list_next() 259 memcpy (list->fname, list->current_tail, len); in audit_list_next() 264 list->fname[0] = '\0'; in audit_list_next() 269 ++list->current_tail; in audit_list_next() [all …]
|
A D | dl-lookup.c | 370 struct link_map **list = scope->r_list; in do_lookup_x() local 374 const struct link_map *map = list[i]->l_real; in do_lookup_x() 630 struct link_map **list = &l_reldeps->list[0]; in add_dependency() local 633 if (list[i] == map) in add_dependency() 673 struct link_map **list = &undef_map->l_reldeps->list[0]; in add_dependency() local 676 if (list[i] == map) in add_dependency() 681 struct link_map **list in add_dependency() local 682 = &undef_map->l_reldeps->list[0]; in add_dependency() 686 if (list[i] == map) in add_dependency() 774 memcpy (&newp->list[0], &undef_map->l_reldeps->list[0], in add_dependency() [all …]
|
A D | dl-sort-maps.c | 93 struct link_map **relmaps = &maps[k]->l_reldeps->list[0]; in _dl_sort_maps_original() 167 struct link_map *dep = map->l_reldeps->list[m]; in dfs_traversal()
|
A D | sotruss-lib.c | 137 match_file (const char *list, const char *name, size_t name_len, in match_file() argument 140 if (list[0] == '\0') in match_file() 143 const char *cp = list; in match_file()
|
A D | rtld-Rules | 23 # `rtld-subdirs', a subset of the top-level $(subdirs) list; and for each 130 # list as applied to the names without the `rtld-', there may be none left.
|
A D | dl-load.c | 1512 print_search_path (struct r_search_path_elem **list, in print_search_path() argument 1520 while (*list != NULL && (*list)->what == what) /* Yes, ==. */ in print_search_path() 1522 char *endp = __mempcpy (buf, (*list)->dirname, (*list)->dirnamelen); in print_search_path() 1526 if ((*list)->status[cnt] != nonexisting) in print_search_path() 1542 ++list; in print_search_path()
|
A D | dl-close.c | 243 struct link_map *jmap = l->l_reldeps->list[j]; in _dl_close_worker() 504 free (fsl->list[--fsl->count]); in _dl_close_worker()
|
A D | dl-tls.c | 1086 init_one_static_tls (list_entry (runp, struct pthread, list), map); in _dl_init_static_tls() 1090 init_one_static_tls (list_entry (runp, struct pthread, list), map); in _dl_init_static_tls()
|
A D | Makefile | 52 tests-special += $(objpfx)list-tunables.out
|
Completed in 29 milliseconds