Searched refs:newref (Results 1 – 3 of 3) sorted by relevance
116 struct secref *newref = malloc (sizeof *newref); in cache_sections() local117 if (unlikely (newref == NULL)) in cache_sections()125 newref->scn = scn; in cache_sections()126 newref->relocs = NULL; in cache_sections()127 newref->name = name; in cache_sections()128 newref->start = dwfl_adjusted_address (mod, shdr->sh_addr); in cache_sections()129 newref->end = newref->start + shdr->sh_size; in cache_sections()130 newref->next = refs; in cache_sections()131 refs = newref; in cache_sections()
246 insert_after(PyWeakReference *newref, PyWeakReference *prev) in insert_after() argument248 newref->wr_prev = prev; in insert_after()249 newref->wr_next = prev->wr_next; in insert_after()251 prev->wr_next->wr_prev = newref; in insert_after()252 prev->wr_next = newref; in insert_after()259 insert_head(PyWeakReference *newref, PyWeakReference **list) in insert_head() argument263 newref->wr_prev = NULL; in insert_head()264 newref->wr_next = next; in insert_head()266 next->wr_prev = newref; in insert_head()267 *list = newref; in insert_head()
480 DNSServiceRef *newref; in zonedata_browse() local489 newref = malloc(sizeof(*newref)); in zonedata_browse()490 *newref = client; in zonedata_browse()491 …DNSServiceResolve(newref, kDNSServiceFlagsShareConnection, ifIndex, replyName, replyType, replyDom… in zonedata_browse()