Home
last modified time | relevance | path

Searched refs:newaddr (Results 1 – 5 of 5) sorted by relevance

/openbmc/qemu/io/
H A Ddns-resolver.c106 SocketAddress *newaddr = g_new0(SocketAddress, 1); in qio_dns_resolver_lookup_sync_inet() local
108 newaddr->type = SOCKET_ADDRESS_TYPE_INET; in qio_dns_resolver_lookup_sync_inet()
114 newaddr->u.inet = *iaddr; in qio_dns_resolver_lookup_sync_inet()
115 newaddr->u.inet.host = g_strdup(uaddr), in qio_dns_resolver_lookup_sync_inet()
116 newaddr->u.inet.port = g_strdup(uport), in qio_dns_resolver_lookup_sync_inet()
117 newaddr->u.inet.has_numeric = true, in qio_dns_resolver_lookup_sync_inet()
118 newaddr->u.inet.numeric = true, in qio_dns_resolver_lookup_sync_inet()
120 (*addrs)[i] = newaddr; in qio_dns_resolver_lookup_sync_inet()
/openbmc/u-boot/lib/efi_loader/
H A Defi_runtime.c339 ulong newaddr = patchto ? (patchto + patchoff) : 0; in efi_runtime_detach() local
341 debug("%s: Setting %p to %lx\n", __func__, p, newaddr); in efi_runtime_detach()
342 *p = newaddr; in efi_runtime_detach()
363 ulong newaddr; in efi_runtime_relocate() local
373 newaddr = rel->addend + offset - CONFIG_SYS_TEXT_BASE; in efi_runtime_relocate()
375 newaddr = *p - lastoff + offset; in efi_runtime_relocate()
382 newaddr = __dyn_sym_start[symidx].addr + offset; in efi_runtime_relocate()
384 newaddr -= CONFIG_SYS_TEXT_BASE; in efi_runtime_relocate()
397 if (map && ((newaddr < map->virtual_start) || in efi_runtime_relocate()
398 newaddr > (map->virtual_start + in efi_runtime_relocate()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/pxaregs/pxaregs-1.14/
H A Dpxaregs.c1840 static u32 newaddr = 1; variable
1849 if (regs[i].addr != lastaddr) newaddr = 1; in dumpentry()
1850 if (newaddr) { in dumpentry()
1851 newaddr = 0; in dumpentry()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/procmail/procmail/
H A Dfrom-debian-to-fix-compile-errors.patch203 -{ char*chad;int newvalid; struct sockaddr_in newaddr;
218 - newaddr.sin_family=AF_INET;
219 - tmemmove(&newaddr.sin_addr,ip_localhost,sizeof ip_localhost);
225 - { bbzero(&newaddr.sin_addr,sizeof newaddr.sin_addr);
229 - { newaddr.sin_family=host->h_addrtype; /* address number found */
230 - tmemmove(&newaddr.sin_addr,host->h_0addr_list,host->h_length);
240 - newaddr.sin_port=htons((short)s); /* network order */
245 - newaddr.sin_port=serv->s_port;
247 - { newaddr.sin_port=htons((short)0); /* no such service */
261 - tmemmove(&csaddr,&newaddr,sizeof(newaddr));
/openbmc/u-boot/cmd/
H A Dfdt.c198 struct fdt_header *newaddr; in do_fdt() local
212 newaddr = (struct fdt_header *)simple_strtoul(argv[3],NULL,16); in do_fdt()
233 err = fdt_open_into(working_fdt, newaddr, len); in do_fdt()
239 set_working_fdt_addr((ulong)newaddr); in do_fdt()