HomeSort by relevance Sort by last modified time
    Searched defs:ipaddr (Results 1 - 25 of 29) sorted by null

1 2

  /external/libppp/src/
ncpaddr.h 36 struct in_addr ipaddr; member in struct:ncprange::__anon22837::__anon22838
42 struct in6_addr ipaddr; member in struct:ncprange::__anon22837::__anon22839
defs.c 143 struct in_addr ipaddr; local
146 ipaddr.s_addr = INADDR_ANY;
147 else if (inet_aton(cp, &ipaddr) == 0) {
160 memcpy(&ipaddr, hp->h_addr, hp->h_length);
162 ipaddr.s_addr = INADDR_NONE;
164 ipaddr.s_addr = INADDR_NONE;
167 return ipaddr;
radius.c 258 u_int32_t ipaddr, vendor; local
431 if (ncpaddr_getip4addr(&gw, &ipaddr) && ipaddr == INADDR_ANY) {
    [all...]
ipcp.c 145 { 3, "IPADDR" }, /* IP-Address */
519 struct ncpaddr ipaddr; local
533 ncpaddr_setip4(&ipaddr, iplist_setcurpos(&ipcp->cfg.peer_list, pos));
539 ncpaddr_setip4(&ipaddr, iplist_setrandpos(&ipcp->cfg.peer_list));
541 ncprange_sethost(&ipcp->cfg.peer_range, &ipaddr);
566 ncprange_getaddr(&iface->addr[n].ifa, &ipaddr);
567 if (ncprange_contains(&ipcp->cfg.my_range, &ipaddr)) {
568 ncpaddr_getip4(&ipaddr, &ipcp->my_ip);
1058 struct in_addr ipaddr, dstipaddr, have_ip; local
1073 memcpy(&ipaddr.s_addr, opt->data, 4)
    [all...]
  /external/openssh/
auth-rhosts.c 56 const char *ipaddr, const char *client_user,
150 !innetgr(host + 1, ipaddr, NULL, NULL))
152 } else if (strcasecmp(host, hostname) && strcmp(host, ipaddr) != 0)
189 const char *hostname, *ipaddr; local
192 ipaddr = get_remote_ipaddr();
193 return auth_rhosts2(pw, client_user, hostname, ipaddr);
198 const char *ipaddr)
205 debug2("auth_rhosts2: clientuser %s hostname %s ipaddr %s",
206 client_user, hostname, ipaddr);
234 if (check_rhosts_file(_PATH_RHOSTS_EQUIV, hostname, ipaddr,
    [all...]
auth2-hostbased.c 144 const char *resolvedname, *ipaddr, *lookup, *reason; local
153 ipaddr = get_remote_ipaddr();
155 debug2("userauth_hostbased: chost %s resolvedname %s ipaddr %s",
156 chost, resolvedname, ipaddr);
171 chost, ipaddr, resolvedname);
172 if (auth_rhosts2(pw, cuser, resolvedname, ipaddr) == 0)
auth.c 98 const char *hostname = NULL, *ipaddr = NULL, *passwd = NULL; local
183 ipaddr = get_remote_ipaddr();
189 if (match_user(pw->pw_name, hostname, ipaddr,
200 if (match_user(pw->pw_name, hostname, ipaddr,
  /system/core/netcfg/
netcfg.c 37 const char *ipaddr(in_addr_t addr) function
62 printf("%40s", ipaddr(addr));
  /external/chromium_org/third_party/libjingle/source/talk/base/
socketaddress.cc 146 const IPAddress& SocketAddress::ipaddr() const { function in class:talk_base::SocketAddress
  /frameworks/base/core/jni/
android_net_NetUtils.cpp 33 const char *ipaddr,
44 const char *ipaddr,
119 char ipaddr[PROPERTY_VALUE_MAX]; local
137 result = ::dhcp_do_request_renew(nameStr, ipaddr, gateway, &prefixLength,
140 result = ::dhcp_do_request(nameStr, ipaddr, gateway, &prefixLength,
158 env->NewStringUTF(ipaddr), prefixLength);
  /external/iputils/
rarpd.c 74 __u32 ipaddr; member in struct:rarp_map
318 ifa = select_ipaddr(ifindex, &emap.ipaddr, (__u32 **)hp->h_addr_list);
321 if (only_ethers || bootable(emap.ipaddr))
387 void arp_advise(int ifindex, unsigned char *lladdr, int lllen, __u32 ipaddr)
406 sin->sin_addr.s_addr = ipaddr;
524 if (put_myipaddr(&ptr, sll.sll_ifindex, rmap->ipaddr))
528 memcpy(ptr, &rmap->ipaddr, 4);
534 arp_advise(sll.sll_ifindex, rmap->lladdr, rmap->lladdr_len, rmap->ipaddr);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atmmpc.h 16 __be32 ipaddr; /* the IP address of the shortcut */ member in struct:atmmpc_ioc
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmmpc.h 16 __be32 ipaddr; /* the IP address of the shortcut */ member in struct:atmmpc_ioc
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmmpc.h 16 __be32 ipaddr; /* the IP address of the shortcut */ member in struct:atmmpc_ioc
  /system/core/libnetutils/
dhcpclient.c 88 const char *ipaddr(in_addr_t addr) function
103 uint32_t ipaddr; member in struct:dhcp_info
116 void get_dhcp_info(uint32_t *ipaddr, uint32_t *gateway, uint32_t *prefixLength,
120 *ipaddr = last_good_info.ipaddr;
132 return ifc_configure(ifname, info->ipaddr, info->prefixLength, info->gateway,
156 strcpy(addr, ipaddr(info->ipaddr));
157 strcpy(gway, ipaddr(info->gateway));
159 if (info->dns1) ALOGD("dns1: %s", ipaddr(info->dns1))
    [all...]
  /bionic/libc/kernel/arch-mips/asm/lasat/
lasat.h 61 unsigned int ipaddr; member in struct:lasat_eeprom_struct
91 unsigned int ipaddr; member in struct:lasat_eeprom_struct_pre7
  /development/ndk/platforms/android-9/arch-mips/include/asm/lasat/
lasat.h 61 unsigned int ipaddr; member in struct:lasat_eeprom_struct
91 unsigned int ipaddr; member in struct:lasat_eeprom_struct_pre7
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.h 283 switch (address_.ipaddr().family()) {
293 const talk_base::IPAddress& ipaddr() const { return address_.ipaddr(); } function in class:cricket::StunAddressAttribute
  /external/kernel-headers/original/asm-mips/lasat/
lasat.h 73 unsigned int ipaddr; member in struct:lasat_eeprom_struct
98 unsigned int ipaddr; member in struct:lasat_eeprom_struct_pre7
  /frameworks/base/services/jni/
com_android_server_location_GpsLocationProvider.cpp 175 uint32_t ipaddr; local
176 // ipaddr field was not included in original AGpsStatus
178 ipaddr = agps_status->ipaddr;
180 ipaddr = 0xFFFFFFFF;
182 agps_status->type, agps_status->status, ipaddr);
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/lasat/
lasat.h 61 unsigned int ipaddr; member in struct:lasat_eeprom_struct
91 unsigned int ipaddr; member in struct:lasat_eeprom_struct_pre7
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/lasat/
lasat.h 61 unsigned int ipaddr; member in struct:lasat_eeprom_struct
91 unsigned int ipaddr; member in struct:lasat_eeprom_struct_pre7
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/lasat/
lasat.h 61 unsigned int ipaddr; member in struct:lasat_eeprom_struct
91 unsigned int ipaddr; member in struct:lasat_eeprom_struct_pre7
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/lasat/
lasat.h 61 unsigned int ipaddr; member in struct:lasat_eeprom_struct
91 unsigned int ipaddr; member in struct:lasat_eeprom_struct_pre7
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/lasat/
lasat.h 61 unsigned int ipaddr; member in struct:lasat_eeprom_struct
91 unsigned int ipaddr; member in struct:lasat_eeprom_struct_pre7

Completed in 3534 milliseconds

1 2