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

1 2

  /libcore/ojluni/src/main/java/java/net/
Inet6Address.java 146 * zone, it is possible to append a zone identifier (or <i>scope_id</i>) to an IPv6 address.
148 * The general format for specifying the <i>scope_id</i> is the following:
149 * <p><blockquote><i>IPv6-address</i>%<i>scope_id</i></blockquote>
151 * The <i>scope_id</i> refers to an interface on the local system, and it can be specified
163 * Note also, that the numeric <i>scope_id</i> can be retrieved from Inet6Address instances returned from the
188 * scope_id. The scope specified when the object is created. If the object is created
189 * with an interface name, then the scope_id is not determined until the time it is needed.
191 private int scope_id = 0; field in class:Inet6Address
194 * This will be set to true when the scope_id field contains a valid
195 * integer scope_id
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
address_v6.hpp 53 unsigned long scope_id = 0);
71 unsigned long scope_id() const function in class:asio::ip::address_v6
80 void scope_id(unsigned long id) function in class:asio::ip::address_v6
  /system/extras/tests/net_test/
csocket.py 34 "family port flowinfo addr scope_id")
58 addr, port, flowinfo, scope_id = addr
60 (addr, port), flowinfo, scope_id = addr, 0, 0
63 addr, scope_id))
ping6_test.py 239 addr, unused_port, flowlabel, scope_id = src # pylint: disable=unbalanced-tuple-unpacking
245 self.assertTrue(scope_id in self.ifindices.values())
247 self.assertEquals(0, scope_id)
  /external/webrtc/webrtc/base/
socketaddress.h 101 int scope_id() const {return scope_id_; } function in class:rtc::SocketAddress
socketaddress.cc 284 int scope_id) {
291 saddr->sin6_scope_id = scope_id;
network.cc 402 int scope_id = 0; local
431 scope_id =
456 network->set_scope_id(scope_id);
569 int scope_id = 0; local
582 scope_id = v6_addr->sin6_scope_id;
612 network->set_scope_id(scope_id);
network_unittest.cc 100 uint32_t scope_id) {
104 ipv6_addr->sin6_scope_id = scope_id;
116 uint32_t scope_id) {
121 CreateIpv6Addr(ipv6_address, scope_id));
201 bindaddress.SetScopeID((*it)->scope_id());
    [all...]
socketaddress_unittest.cc 223 EXPECT_EQ(6, addr.scope_id());
233 EXPECT_EQ(6, addr.scope_id());
network.h 337 int scope_id() const { return scope_id_; } function in class:rtc::Network
  /libcore/luni/src/main/native/
NetworkUtilities.cpp 52 int scope_id = 0; local
63 scope_id = sin6.sin6_scope_id;
88 NULL, byteArray.get(), scope_id);
143 static jfieldID scopeFid = env->GetFieldID(JniConstants::inet6AddressClass, "scope_id", "I");
  /external/v8/src/heap/
gc-tracer.h 112 #define TRACE_GC(tracer, scope_id) \
113 GCTracer::Scope::ScopeId gc_tracer_scope_id(scope_id); \
  /external/iputils/
ping6.c 709 static uint32_t scope_id = 0; local
881 /* Verify scope_id is the same as previous nodes */
882 if (firsthop.sin6_scope_id && scope_id && firsthop.sin6_scope_id != scope_id) {
885 } else if (!scope_id) {
886 scope_id = firsthop.sin6_scope_id;
943 /* Verify scope_id is the same as intermediate nodes */
944 if (firsthop.sin6_scope_id && scope_id && firsthop.sin6_scope_id != scope_id) {
947 } else if (!scope_id) {
    [all...]
  /external/wpa_supplicant_8/src/common/
wpa_ctrl.c 357 int scope_id = 0; local
381 scope_id = if_nametoindex(&scope[1]);
398 ctrl->dest.sin6_scope_id = scope_id;
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
socket_ops.hpp 219 size_t length, unsigned long scope_id, asio::error_code& ec);
222 unsigned long* scope_id, asio::error_code& ec);
  /frameworks/base/core/java/android/os/
CommonTimeUtils.java 210 int scope_id = reply.readInt(); local
  /external/curl/lib/
connect.c 288 switch(Curl_if2ip(af, scope, conn->scope_id, dev,
    [all...]
urldata.h 893 unsigned int scope_id; /* Scope id for IPv6 */ member in struct:connectdata
1645 unsigned int scope_id; \/* Scope id for IPv6 *\/ member in struct:UserDefined
    [all...]
url.c     [all...]
ftp.c     [all...]
  /libcore/ojluni/src/main/native/
net_util_md.c 530 * and override the scope_id field to use the relevant value for "lo"
639 /* now find the scope_id for "lo" */
812 // was constructed with a specific scope_id or NetworkInterface).
815 int scope_id = (int)(*env)->GetIntField(env, iaObj, ia6_scopeidID); local
816 if (scope_id > 0) {
817 him6->sin6_scope_id = scope_id;
    [all...]
  /external/selinux/libsepol/src/
module_to_cil.c 322 uint32_t scope_id; local
331 scope_id = scope->decl_ids[i];
332 if (typealias_lists[scope_id] == NULL) {
333 rc = list_init(&typealias_lists[scope_id]);
338 list_prepend(typealias_lists[scope_id], key);
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 438 milliseconds

1 2