Searched refs:addrs (Results 1 - 12 of 12) sorted by relevance

/haiku-fatelf/src/kits/network/libbind/resolv/
H A Dres_findzonecut.c60 rrset_a addrs; member in struct:rr_ns
108 *\li addrs - found server addresses
109 *\li naddrs - max number of addrs
113 *\li = 0 - zname is now valid, but addrs[] wasn't changed
114 *\li > 0 - zname is now valid, and return value is number of addrs[] found
155 char *zname, size_t zsize, struct in_addr *addrs, int naddrs)
172 addrs[i] = u[i].sin.sin_addr;
180 char *zname, size_t zsize, union res_sockaddr_union *addrs,
200 (n = satisfy(statp, mname, &nsrrs, addrs, naddrs)) > 0))
206 (n = satisfy(statp, mname, &nsrrs, addrs, naddr
154 res_findzonecut(res_state statp, const char *dname, ns_class class, int opts, char *zname, size_t zsize, struct in_addr *addrs, int naddrs) argument
179 res_findzonecut2(res_state statp, const char *dname, ns_class class, int opts, char *zname, size_t zsize, union res_sockaddr_union *addrs, int naddrs) argument
223 satisfy(res_state statp, const char *mname, rrset_ns *nsrrsp, union res_sockaddr_union *addrs, int naddrs) argument
251 add_addrs(res_state statp, rr_ns *nsrr, union res_sockaddr_union *addrs, int naddrs) argument
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Dsymfile.c332 copy_section_addr_info (struct section_addr_info *addrs)
335 = alloc_section_addr_info (addrs->num_sections);
338 copy->num_sections = addrs->num_sections;
339 for (i = 0; i < addrs->num_sections; i++)
341 copy->other[i].addr = addrs->other[i].addr;
342 if (addrs->other[i].name)
343 copy->other[i].name = xstrdup (addrs->other[i].name);
346 copy->other[i].sectindex = addrs->other[i].sectindex;
461 struct section_addr_info *addrs)
474 for (i = 0; i < addrs
331 copy_section_addr_info(struct section_addr_info *addrs) argument
459 default_symfile_offsets(struct objfile *objfile, struct section_addr_info *addrs) argument
526 syms_from_objfile(struct objfile *objfile, struct section_addr_info *addrs, struct section_offsets *offsets, int num_offsets, int mainline, int verbo) argument
792 symbol_file_add_with_addrs_or_offsets(bfd *abfd, int from_tty, struct section_addr_info *addrs, struct section_offsets *offsets, int num_offsets, int mainline, int flags) argument
934 symbol_file_add_from_bfd(bfd *abfd, int from_tty, struct section_addr_info *addrs, int mainline, int flags) argument
948 symbol_file_add(char *name, int from_tty, struct section_addr_info *addrs, int mainline, int flags) argument
[all...]
H A Dsomread.c429 som_symfile_offsets (struct objfile *objfile, struct section_addr_info *addrs) argument
451 offsets from the library, else get them from addrs. */
457 for (i = 0; i < objfile->num_sections && addrs->other[i].name; i++)
458 if (strcmp (addrs->other[i].name, ".text") == 0)
460 text_addr = addrs->other[i].addr;
H A Dsymfile.h204 (struct section_addr_info *addrs));
H A Dwin32-nat.c503 struct section_addr_info *addrs; member in struct:safe_symbol_file_add_args
532 p->ret = symbol_file_add (p->name, p->from_tty, p->addrs, p->mainline, p->flags);
554 struct section_addr_info *addrs,
570 p.addrs = addrs;
816 struct section_addr_info *addrs = NULL; local
839 addrs = get_relocated_section_addrs (abfd, load_addr);
845 if (addrs)
847 result = safe_symbol_file_add (name, from_tty, addrs, 0, OBJF_SHARED);
848 free_section_addr_info (addrs);
553 safe_symbol_file_add(char *name, int from_tty, struct section_addr_info *addrs, int mainline, int flags) argument
[all...]
H A Dd10v-tdep.c1113 CORE_ADDR *addrs; member in struct:trace_buffer
1124 if (trace_data.addrs == NULL)
1125 trace_data.addrs = XCALLOC (65536, CORE_ADDR);
1155 paddr_nz (trace_data.addrs[i]));
1223 trace_data.addrs[j] = (trace_addr << 2) + 0x1000000;
1293 next_address = trace_data.addrs[i];
H A Dutils.c272 make_cleanup_free_section_addr_info (struct section_addr_info *addrs)
274 return make_my_cleanup (&cleanup_chain, do_free_section_addr_info, addrs);
271 make_cleanup_free_section_addr_info(struct section_addr_info *addrs) argument
H A Dxcoffread.c197 struct section_addr_info *addrs);
2964 xcoff_symfile_offsets (struct objfile *objfile, struct section_addr_info *addrs)
2955 xcoff_symfile_offsets(struct objfile *objfile, struct section_addr_info *addrs) argument
/haiku-fatelf/src/bin/network/traceroute/
H A Dtraceroute.c264 u_int32_t *addrs; member in struct:hostinfo
501 setsin(to, hi->addrs[0]);
731 for (i = hi->n, ap = hi->addrs; i > 0; --i, ++ap)
742 setsin(from, hi->addrs[0]);
1268 hi->addrs = calloc(1, sizeof(hi->addrs[0]));
1269 if (hi->addrs == NULL) {
1274 hi->addrs[0] = addr;
1291 hi->addrs = calloc(n, sizeof(hi->addrs[
[all...]
/haiku-fatelf/src/bin/network/netcat/
H A Dnetcat.c95 char addrs[8][24]; /* ascii-format IP addresses */ member in struct:host_poop
384 strlcpy (poop->addrs[x], inet_ntoa (poop->iaddrs[x]),
385 sizeof (poop->addrs[0]));
386 } /* for x -> addrs, part A */
389 /* do inverse lookups in separate loop based on our collected forward addrs,
396 poop->addrs[x]);
399 } /* for x -> addrs, part B */
403 strncpy (poop->addrs[0], inet_ntoa (iaddr), sizeof (poop->addrs));
933 cp, whozis->name, whozis->addrs[
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/network/vlance/
H A Dvlance.c431 uint8 *addrs; local
458 addrs = (uint8 *)(&(device->multi[i]));
460 if (!(*addrs & 1))
465 for (bit = *addrs++, j = 0; j < 8; j++, bit >>= 1) {
/haiku-fatelf/src/kits/network/libbind/irs/
H A Dgethostent.c58 char * addrs[2]; member in struct:pvt
1030 pvt->addrs[0] = (char *)pvt->addr;
1031 pvt->addrs[1] = NULL;
1032 pvt->host.h_addr_list = pvt->addrs;

Completed in 124 milliseconds