HomeSort by relevance Sort by last modified time
    Searched defs:address (Results 51 - 75 of 996) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
ServiceRoute.java 35 import gov.nist.javax.sip.address.AddressImpl;
53 * @param address address to set
55 public ServiceRoute(AddressImpl address) {
57 this.address = address;
72 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
75 retval.append(address.encode());
76 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
  /external/nist-sip/java/javax/sip/address/
TelURL.java 1 package javax.sip.address;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Route.java 28 * <li><strong>IP address:</strong> whether connecting directly to an origin
29 * server or a proxy, opening a socket requires an IP address. The DNS
35 final Address address; field in class:Route
39 public Route(Address address, Proxy proxy, InetSocketAddress inetSocketAddress) {
40 if (address == null) {
41 throw new NullPointerException("address == null");
49 this.address = address;
    [all...]
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/
Route.java 29 * <li><strong>IP address:</strong> whether connecting directly to an origin
30 * server or a proxy, opening a socket requires an IP address. The DNS
37 final Address address; field in class:Route
41 public Route(Address address, Proxy proxy, InetSocketAddress inetSocketAddress) {
42 if (address == null) {
43 throw new NullPointerException("address == null");
51 this.address = address;
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
address.hpp 2 // ip/address.hpp
29 * The asio::ip::address class provides the ability to use either IP
36 class address class in namespace:asio::ip
40 ASIO_DECL address();
42 /// Construct an address from an IPv4 address.
43 ASIO_DECL address(const asio::ip::address_v4& ipv4_address);
45 /// Construct an address from an IPv6 address.
46 ASIO_DECL address(const asio::ip::address_v6& ipv6_address)
    [all...]
  /external/perfetto/src/base/test/
vm_test_utils.cc 86 void* address = local
89 if (address >= start && address < end)
  /external/python/cpython2/Demo/pdist/
cmptree.py 28 address = (host, port) variable
31 remote = FSProxy.FSProxyClient(address, verbose)
  /external/python/cpython2/Lib/multiprocessing/dummy/
connection.py 45 def __init__(self, address=None, family=None, backlog=1):
54 address = property(lambda self: self._backlog_queue) variable in class:Listener
57 def Client(address):
59 address.put((_out, _in))
  /external/python/cpython3/Lib/multiprocessing/dummy/
connection.py 20 def __init__(self, address=None, family=None, backlog=1):
30 def address(self): member in class:Listener
40 def Client(address):
42 address.put((_out, _in))
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowDateIntervalFormat.java 17 private static long address; field in class:ShadowDateIntervalFormat
22 address++;
23 INTERVAL_CACHE.put(address, com.ibm.icu.text.DateIntervalFormat.getInstance(skeleton, new Locale(localeName)));
24 return address;
28 public static void destroyDateIntervalFormat(long address) {
29 INTERVAL_CACHE.remove(address);
34 public static String formatDateInterval(long address, long fromDate, long toDate) {
38 INTERVAL_CACHE.get(address).format(new com.ibm.icu.util.DateInterval(fromDate, toDate), buffer, pos);
  /external/skia/tools/skiaserve/
skiaserve.cpp 28 DEFINE_string(address, "127.0.0.1", "The address to bind to.");
92 struct sockaddr_in address; local
93 address.sin_family = AF_INET;
94 address.sin_port = htons(FLAGS_port);
95 int result = inet_pton(AF_INET, FLAGS_address[0], &address.sin_addr);
111 MHD_OPTION_SOCK_ADDR, &address,
  /external/skqp/tools/skiaserve/
skiaserve.cpp 28 DEFINE_string(address, "127.0.0.1", "The address to bind to.");
92 struct sockaddr_in address; local
93 address.sin_family = AF_INET;
94 address.sin_port = htons(FLAGS_port);
95 int result = inet_pton(AF_INET, FLAGS_address[0], &address.sin_addr);
111 MHD_OPTION_SOCK_ADDR, &address,
  /external/swiftshader/third_party/LLVM/include/llvm-c/
EnhancedDisassembly.h 32 @param address The address of the byte to be read.
36 typedef int (*EDByteReaderCallback)(uint8_t *byte, uint64_t address, void *arg);
155 @param address The address of the first byte of the instruction.
163 uint64_t address,
416 by computing the target address (with only those relocations applied that were
437 @param address The address of the byte to be read.
440 typedef int (^EDByteBlock_t)(uint8_t *byte, uint64_t address); variable
    [all...]
  /external/toybox/toys/net/
netcat.c 25 -s Local source address
112 struct sockaddr* address = (void*)toybuf; local
122 getsockname(sockfd, address, &len);
123 if (address->sa_family == AF_INET)
124 port_be = ((struct sockaddr_in*)address)->sin_port;
125 else if (address->sa_family == AF_INET6)
126 port_be = ((struct sockaddr_in6*)address)->sin6_port;
139 in1 = out2 = accept(sockfd, (struct sockaddr *)address, &len);
  /external/v8/src/ic/
ic-inl.h 19 Address IC::address() const { function in class:v8::internal::IC
20 // Get the address of the call.
25 Address IC::constant_pool() const {
34 Address IC::raw_constant_pool() const {
61 return AddressIsDeoptimizedCode(isolate(), address());
65 bool IC::AddressIsDeoptimizedCode(Isolate* isolate, Address address) {
67 isolate->inner_pointer_to_code_cache()->GetCacheEntry(address)->code;
  /external/webrtc/webrtc/base/
proxyinfo.h 30 SocketAddress address; member in struct:rtc::ProxyInfo
testechoserver.h 40 SocketAddress address() const { return server_socket_->GetLocalAddress(); } function in class:rtc::TestEchoServer
  /external/nist-sip/java/gov/nist/javax/sip/address/
AddressImpl.java 29 package gov.nist.javax.sip.address;
31 import javax.sip.address.*;
37 * Address structure. Imbeds a URI and adds a display name.
48 implements javax.sip.address.Address {
71 /** address field
73 protected GenericURI address; field in class:AddressImpl
75 /** Match on the address only.
83 if (!(other instanceof Address))
92 return address.match(that.address)
    [all...]
  /art/compiler/debug/
elf_symtab_writer.h 68 uint64_t address = info.code_address; local
69 address += info.is_code_address_text_relative ? text->GetAddress() : 0;
70 mapping_symbol_address = std::min(mapping_symbol_address, address);
97 uint64_t address = info.code_address; local
98 address += info.is_code_address_text_relative ? text->GetAddress() : 0;
100 address += CompiledMethod::CodeDelta(info.isa);
101 symtab->Add(name_offset, text, address, info.code_size, STB_GLOBAL, STT_FUNC);
  /dalvik/libdex/
DexCatch.h 32 u4 address; /* handler address */ member in struct:DexCatchHandler
61 pIterator->handler.address = 0;
104 pIterator->handler.address = readUnsignedLeb128(&pIterator->pEncodedData);
115 u4 address);
117 /* Find the handler associated with a given address, if any.
121 const DexCode* pCode, u4 address) {
134 if (address < start) {
140 if (address >= end) {
149 address);
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/stacks/
LockSnapshot.java 33 public String address; field in class:LockSnapshot
43 this.address = that.address;
55 return this.address == that.address
56 || (this.address != null && that.address != null
57 && this.address.equals(that.address));
63 if (this.address != null)
    [all...]
  /device/generic/goldfish/network/netmgr/
main.cpp 35 LOGE(" <ip/mask> is the base IP address to assign to the first interface");
37 LOGE(" Additionally mask is used to determine the address");
43 in_addr_t* address,
51 LOGE("Network specifier '%s' contains an IP address that is too long",
60 // String could not be converted to IP address
61 LOGE("Network specifier '%s' contains an invalid IP address '%s'",
75 *address = addr.s_addr;
106 in_addr_t address = 0; local
108 if (!parseNetwork(network, &address, &mask)) {
112 AddressAssigner assigner(interfacePrefix, address, mask)
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
NativeRef.java 24 final long address; field in class:NativeRef
26 NativeRef(long address) {
27 if (address == 0) {
28 throw new NullPointerException("address == 0");
31 this.address = address;
40 return ((NativeRef) o).address == address;
45 return (int) (address ^ (address >>> 32))
    [all...]
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
NativeRef.java 25 final long address; field in class:NativeRef
27 NativeRef(long address) {
28 if (address == 0) {
29 throw new NullPointerException("address == 0");
32 this.address = address;
41 return ((NativeRef) o).address == address;
46 return (int) (address ^ (address >>> 32))
    [all...]
  /external/curl/tests/libtest/
lib1506.c 43 char *address = libtest_arg2; local
50 i + 1, port, address);

Completed in 1278 milliseconds

1 23 4 5 6 7 8 91011>>