Searched refs:new (Results 1 – 6 of 6) sorted by relevance
/elf/ |
A D | dl-object.c | 92 new = (struct link_map *) calloc (sizeof (*new) + audit_space in _dl_new_object() 95 if (new == NULL) in _dl_new_object() 98 new->l_real = new; in _dl_new_object() 136 new->l_ns = nsid; in _dl_new_object() 141 link_map_audit_state (new, cnt)->cookie = (uintptr_t) new; in _dl_new_object() 149 new->l_scope = new->l_scope_mem; in _dl_new_object() 150 new->l_scope_max = sizeof (new->l_scope_mem) / sizeof (new->l_scope_mem[0]); in _dl_new_object() 161 loader = new; in _dl_new_object() 172 new->l_scope[1] = new->l_scope[0]; in _dl_new_object() 179 new->l_local_scope[0] = &new->l_searchlist; in _dl_new_object() [all …]
|
A D | dl-open.c | 475 struct link_map *new; member 533 struct link_map *new; in dl_open_worker_begin() local 539 if (new == NULL) in dl_open_worker_begin() 558 new->l_name, new->l_ns, new->l_direct_opencount); in dl_open_worker_begin() 573 new->l_name, new->l_ns); in dl_open_worker_begin() 624 _dl_open_check (new); in dl_open_worker_begin() 707 resize_scopes (new); in dl_open_worker_begin() 728 activate_nodelete (new); in dl_open_worker_begin() 733 update_scopes (new); in dl_open_worker_begin() 803 .new = new, in dl_open_worker() [all …]
|
A D | dl-minimal-malloc.c | 115 void *new = malloc (n); in __minimal_realloc() local 116 return new != ptr ? memcpy (new, ptr, old_size) : new; in __minimal_realloc()
|
A D | rtld-debugger-interface.txt | 33 debugger is notified that a new object has been added, for instance, 74 arg3: struct link_map *new: 76 r_debug structure's link-map list corresponding to the first new 77 object to have been mapped or relocated, with new->l_next pointing 78 to the link-map of the next new object to have been mapped or 79 relocated, and so on. Note that because `new' is an entry in a 80 larger list, new->l_prev (if not NULL) will point to what was the 81 last link-map in the link-map list prior to the new objects being 102 The linker is about to map new objects into the specified 107 The linker has finished mapping new objects into the specified [all …]
|
A D | dl-fptr.c | 42 # define COMPARE_AND_SWAP(ptr, old, new) \ argument 43 (catomic_compare_and_exchange_bool_acq (ptr, new, old) == 0)
|
A D | Makefile | 163 < $< > $@.new 164 chmod 555 $@.new 165 mv -f $@.new $@ 697 $(LINK.o) -nostdlib -nostartfiles -shared -o $@.new \ 702 $(call after-link,$@.new) 703 $(READELF) -s $@.new \ 705 mv -f $@.new $@ 764 LC_ALL=C sed $(ldd-rewrite) < $< > $@.new 769 | LC_ALL=C sed -f $(patsubst $(..)/%,/%,$(..)$(ldd-rewrite-script)) > $@.new 776 chmod 555 $@.new [all …]
|
Completed in 14 milliseconds