HomeSort by relevance Sort by last modified time
    Searched refs:gateway (Results 1 - 25 of 180) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/IN/
IPSECKEY.py 28 @ivar gateway_type: the gateway type
32 @ivar gateway: the public key
33 @type gateway: None, IPv4 address, IPV6 address, or domain name
38 __slots__ = ['precedence', 'gateway_type', 'algorithm', 'gateway', 'key']
41 gateway, key):
44 if gateway != '.' and not gateway is None:
45 raise SyntaxError('invalid gateway for gateway type 0')
46 gateway = Non
    [all...]
  /frameworks/base/core/java/android/net/
RouteInfo.java 40 * implied by the gateway IP address.
41 * <li>a gateway {@link InetAddress} indicating the next hop to use. If this is {@code null} it
45 * Either the destination or the gateway may be {@code null}, but not both. If the
46 * destination and gateway are both specified, they must be of the same address family
56 * The gateway address for this route.
88 * If destination is null, then gateway must be specified and the
90 * if the gateway is an instance of {@link Inet4Address}, or the IPv6 default
91 * route <code>::/0</code> if gateway is an instance of
94 * destination and gateway may not both be null.
97 * @param gateway the IP address to route packets throug
    [all...]
StaticIpConfiguration.java 50 public InetAddress gateway; field in class:StaticIpConfiguration
63 gateway = source.gateway;
71 gateway = null;
79 * default gateway is not covered by the directly-connected route, it will also contain a host
80 * route to the gateway as well. This configuration is arguably invalid, but it used to work
88 if (gateway != null && !connectedRoute.matches(gateway)) {
89 routes.add(RouteInfo.makeHostRoute(gateway, iface));
92 if (gateway != null)
    [all...]
DhcpInfo.java 27 public int gateway; field in class:DhcpInfo
43 gateway = source.gateway;
56 str.append(" gateway "); putAddress(str, gateway);
78 dest.writeInt(gateway);
92 info.gateway = in.readInt();
  /system/connectivity/shill/
routing_table_entry.h 36 gateway(IPAddress::kFamilyUnknown),
51 gateway(gateway_in),
67 gateway(gateway_in),
84 gateway(gateway_in),
94 gateway(b.gateway),
104 gateway = b.gateway;
119 gateway.Equals(b.gateway) &
129 IPAddress gateway; member in struct:shill::RoutingTableEntry
    [all...]
connection.cc 165 IPAddress gateway(properties.address_family);
166 if (!properties.gateway.empty() &&
167 !gateway.SetAddressFromString(properties.gateway)) {
168 LOG(ERROR) << "Gateway address " << properties.gateway << " is invalid";
179 // such as eth0 or wan0. The excluded IPs are pinned to the gateway of
195 if (!PinHostRoute(trusted_ip, gateway)) {
228 if (!FixGatewayReachability(local, &peer, &gateway, trusted_ip)) {
244 << " gateway=" << gateway.ToString()
    [all...]
connection_unittest.cc 102 properties_.gateway = kGatewayAddress0;
146 const IPAddress gateway) {
147 return connection->PinHostRoute(trusted_ip, gateway);
270 !arg.src.IsValid() && !arg.gateway.IsValid() &&
503 properties_.gateway = string();
527 // Assign a prefix that makes the gateway unreachable.
532 // gateway to be reachable.
795 IPAddress gateway(IPAddress::kFamilyIPv4);
799 EXPECT_FALSE(PinHostRoute(connection, trusted_ip, gateway));
802 ASSERT_TRUE(gateway.SetAddressFromString(kGateway))
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
wifi.h 117 * @param gateway return the gateway being used
126 int do_dhcp_request(int *ipaddr, int *gateway, int *mask,
  /frameworks/base/services/core/java/com/android/server/net/
IpConfigStore.java 51 protected static final String GATEWAY_KEY = "gateway";
87 if (staticIpConfiguration.gateway != null) {
90 out.writeInt(1); // Have a gateway.
91 out.writeUTF(staticIpConfiguration.gateway.getHostAddress());
217 InetAddress gateway = null; local
220 gateway = NetworkUtils.numericToInetAddress(in.readUTF());
221 if (staticIpConfiguration.gateway == null) {
222 staticIpConfiguration.gateway = gateway;
224 loge("Duplicate gateway: " + gateway.getHostAddress())
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
StaticIpConfigurationTest.java 38 private static final InetAddress GATEWAY = IpAddress("192.0.2.1");
51 assertNull(s.gateway);
71 s.gateway = GATEWAY;
109 s.gateway = GATEWAY;
138 s.gateway = DNS2;
160 s.gateway = GATEWAY;
161 RouteInfo defaultRoute = new RouteInfo(new IpPrefix("0.0.0.0/0"), GATEWAY, IFACE)
    [all...]
  /external/autotest/client/site_tests/network_WiFiTxRx/
network-flipflop.sh 177 gateway=$(ip route show dev $iface to match 0/0|\
180 progress Allowing link $gateway strength/quality readings to stabilise;
181 ping -n -w 5 -c 5 $gateway 1>&2;
183 progress Contacting AP at "/dev/tcp/$gateway/80" to collect TX strength;
184 if exec {http}<>/dev/tcp/$gateway/80; then
  /external/autotest/client/cros/
backchannel.py 34 self.gateway = None
67 # Retrieve the gateway for the default route.
77 self.gateway, self.interface = line.strip().split(' ')
96 # Add route using the pre-backchannel gateway.
98 self.gateway)
102 # Make sure we have a route to the gateway before continuing.
103 logging.info('Waiting for route to gateway %s', self.gateway)
129 if self.gateway:
130 logging.info('Waiting for route restore to gateway %s'
    [all...]
  /bionic/libc/kernel/uapi/linux/
icmp.h 80 __be32 gateway; member in union:icmphdr::__anon529
  /development/ndk/platforms/android-21/include/linux/
icmp.h 80 __be32 gateway; member in union:icmphdr::__anon1657
  /development/ndk/platforms/android-3/include/linux/
icmp.h 67 __u32 gateway; member in union:icmphdr::__anon2283
  /external/autotest/site_utils/
mysql_bootstrap.py 28 database server without knowing their ips by using the ip of the gateway.
32 by the gateway.
37 "GRANT privileges on <db> to 'A1_user'@(gateway address)
184 """Return the address of the default gateway.
186 @raises: subprocess.CalledProcessError: If the address of the gateway
193 logging.error('Unable to get gateway: %s', e)
202 default=False, help='Enable gateway access for vagrant testing.')
210 access through the gateway if --enable_gateway is specified.
230 gateway = get_gateway()
231 logging.info('Enabling access through gateway %s', gateway
    [all...]
  /external/kernel-headers/original/uapi/linux/
icmp.h 77 __be32 gateway; member in union:icmphdr::__anon13157
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
icmp.h 77 __be32 gateway; member in union:icmphdr::__anon38686
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
icmp.h 77 __be32 gateway; member in union:icmphdr::__anon40600
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/
icmp.h 67 __u32 gateway; member in union:icmphdr::__anon44958
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/
icmp.h 67 __u32 gateway; member in union:icmphdr::__anon45411
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/linux/
icmp.h 67 __u32 gateway; member in union:icmphdr::__anon45866
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/linux/
icmp.h 67 __u32 gateway; member in union:icmphdr::__anon46274
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/linux/
icmp.h 67 __u32 gateway; member in union:icmphdr::__anon46734
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/linux/
icmp.h 67 __u32 gateway; member in union:icmphdr::__anon47196

Completed in 612 milliseconds

1 2 3 4 5 6 7 8