Home
last modified time | relevance | path

Searched refs:newref (Results 1 – 4 of 4) sorted by relevance

/external/elfutils/libdwfl/
Dderelocate.c126 struct secref *newref = malloc (sizeof *newref); in cache_sections() local
127 if (unlikely (newref == NULL)) in cache_sections()
135 newref->scn = scn; in cache_sections()
136 newref->relocs = NULL; in cache_sections()
137 newref->name = name; in cache_sections()
138 newref->start = dwfl_adjusted_address (mod, shdr->sh_addr); in cache_sections()
139 newref->end = newref->start + shdr->sh_size; in cache_sections()
140 newref->next = refs; in cache_sections()
141 refs = newref; in cache_sections()
/external/python/cpython3/Objects/
Dweakrefobject.c245 insert_after(PyWeakReference *newref, PyWeakReference *prev) in insert_after() argument
247 newref->wr_prev = prev; in insert_after()
248 newref->wr_next = prev->wr_next; in insert_after()
250 prev->wr_next->wr_prev = newref; in insert_after()
251 prev->wr_next = newref; in insert_after()
258 insert_head(PyWeakReference *newref, PyWeakReference **list) in insert_head() argument
262 newref->wr_prev = NULL; in insert_head()
263 newref->wr_next = next; in insert_head()
265 next->wr_prev = newref; in insert_head()
266 *list = newref; in insert_head()
/external/python/cpython2/Objects/
Dweakrefobject.c248 insert_after(PyWeakReference *newref, PyWeakReference *prev) in insert_after() argument
250 newref->wr_prev = prev; in insert_after()
251 newref->wr_next = prev->wr_next; in insert_after()
253 prev->wr_next->wr_prev = newref; in insert_after()
254 prev->wr_next = newref; in insert_after()
261 insert_head(PyWeakReference *newref, PyWeakReference **list) in insert_head() argument
265 newref->wr_prev = NULL; in insert_head()
266 newref->wr_next = next; in insert_head()
268 next->wr_prev = newref; in insert_head()
269 *list = newref; in insert_head()
/external/mdnsresponder/Clients/
Ddns-sd.c480 DNSServiceRef *newref; in zonedata_browse() local
489 newref = malloc(sizeof(*newref)); in zonedata_browse()
490 *newref = client; in zonedata_browse()
491 …DNSServiceResolve(newref, kDNSServiceFlagsShareConnection, ifIndex, replyName, replyType, replyDom… in zonedata_browse()