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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/net/voip/src/jni/rtp/
util.cpp 28 jniThrowNullPointerException(env, "address");
35 const char *address = env->GetStringUTFChars(jAddress, NULL); local
36 if (!address) {
43 if (inet_pton(AF_INET, address, &(sin->sin_addr)) > 0) {
46 env->ReleaseStringUTFChars(jAddress, address);
51 if (inet_pton(AF_INET6, address, &(sin6->sin6_addr)) > 0) {
54 env->ReleaseStringUTFChars(jAddress, address);
58 env->ReleaseStringUTFChars(jAddress, address);
59 jniThrowException(env, "java/lang/IllegalArgumentException", "address");
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 22 import android.location.Address;
32 new Address(Locale.ENGLISH);
34 new Address(Locale.FRANCE);
36 new Address(null);
40 Address address = new Address(Locale.GERMAN); local
42 assertEquals(0, address.describeContents());
46 address.setExtras(extras);
48 assertEquals(extras.describeContents(), address.describeContents())
52 Address address = new Address(Locale.ITALY); local
63 Address address = new Address(Locale.JAPAN); local
74 Address address = new Address(Locale.KOREA); local
85 Address address = new Address(Locale.TAIWAN); local
102 Address address = new Address(Locale.SIMPLIFIED_CHINESE); local
113 Address address = new Address(Locale.CHINA); local
131 Address address = new Address(Locale.CHINA); local
149 Address address = new Address(Locale.CHINA); local
160 Address address = new Address(Locale.CHINA); local
171 Address address = new Address(Locale.CHINA); local
182 Address address = new Address(Locale.CHINA); local
193 Address address = new Address(Locale.CHINA); local
204 Address address = new Address(Locale.CHINA); local
216 Address address = new Address(Locale.CHINA); local
251 Address address = new Address(locale); local
263 Address address = new Address(Locale.PRC); local
275 Address address = new Address(locale); local
    [all...]
  /external/valgrind/main/none/tests/
pth_stackalign.c 9 uintptr_t address = (uintptr_t)&arg; local
11 printf("alignment = %" PRIuPTR "\n", address & 3U);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
GeocoderTest.java 4 import android.location.Address;
39 Address address = geocoder.getFromLocationName("731 Market St, San Francisco, CA 94103", 1).get(0); local
40 assertTrue(address.hasLatitude());
41 assertTrue(address.hasLongitude());
43 address = geocoder.getFromLocationName("731 Market St, San Francisco, CA 94103", 1).get(0);
44 assertFalse(address.hasLatitude());
45 assertFalse(address.hasLongitude());
51 List<Address> result = geocoder.getFromLocationName("731 Market St, San Francisco, CA 94103", 1);
  /external/chromium/chrome/browser/autofill/
address_unittest.cc 9 #include "chrome/browser/autofill/address.h"
15 Address address; local
16 EXPECT_EQ(std::string(), address.country_code());
18 address.set_country_code("US");
19 EXPECT_EQ("US", address.country_code());
21 address.set_country_code("CA");
22 EXPECT_EQ("CA", address.country_code());
27 Address address; local
45 Address address; local
81 Address address; local
    [all...]
  /external/chromium/net/base/
ip_endpoint.h 16 // An IPEndPoint represents the address of a transport endpoint:
17 // * IP address (either v4 or v6)
23 IPEndPoint(const IPAddressNumber& address, int port);
26 const IPAddressNumber& address() const { return address_; } function in class:net::IPEndPoint
29 // Returns AF_INET or AF_INET6 depending on the type of the address.
33 // |address| is the sockaddr to copy into. Should be at least
36 // size of data in |address| available. On output, it is the size of
37 // the address that was copied into |address|.
39 bool ToSockAddr(struct sockaddr* address, size_t* address_length) const
    [all...]
net_util_posix.cc 72 IPEndPoint address; local
74 if (address.FromSockAddr(ifa->ifa_addr,
77 networks->push_back(NetworkInterface(name, address.address()));
  /external/chromium_org/third_party/lzma_sdk/
7zAlloc.c 33 void SzFree(void *p, void *address)
37 if (address != 0)
43 free(address);
61 void SzFreeTemp(void *p, void *address)
65 if (address != 0)
71 HeapFree(GetProcessHeap(), 0, address); local
75 free(address);
  /external/lzma/C/
7zAlloc.c 33 void SzFree(void *p, void *address)
37 if (address != 0)
43 free(address);
61 void SzFreeTemp(void *p, void *address)
65 if (address != 0)
71 HeapFree(GetProcessHeap(), 0, address); local
75 free(address);
  /external/nist-sip/java/gov/nist/javax/sip/address/
RouterExt.java 26 package gov.nist.javax.sip.address;
28 import javax.sip.address.Hop;
29 import javax.sip.address.Router;
SipURIExt.java 1 package gov.nist.javax.sip.address;
3 import javax.sip.address.SipURI;
  /external/nist-sip/java/javax/sip/address/
Router.java 1 package javax.sip.address;
AddressFactory.java 1 package javax.sip.address;
6 Address createAddress();
7 Address createAddress(String address) throws ParseException;
8 Address createAddress(URI uri);
9 Address createAddress(String displayName, URI uri)
  /external/openssh/openbsd-compat/
xmmap.c 51 void *address; local
54 address = mmap(NULL, size, PROT_WRITE|PROT_READ, MAP_ANON|MAP_SHARED,
57 address = mmap(NULL, size, PROT_WRITE|PROT_READ, MAP_SHARED,
62 if (address == (void *)MAP_FAILED) {
76 address = mmap(NULL, size, PROT_WRITE|PROT_READ, MAP_SHARED,
81 return (address);
  /libcore/luni/src/main/java/java/nio/
NIOAccess.java 29 * address."
36 long address = b.effectiveDirectAddress; local
37 if (address == 0) {
40 return address + (b.position << b._elementSizeShift);
  /external/smack/src/org/xbill/DNS/
AAAARecord.java 9 * IPv6 Address Record - maps a domain name to an IPv6 address
18 private InetAddress address; field in class:AAAARecord
29 * @param address The address suffix
32 AAAARecord(Name name, int dclass, long ttl, InetAddress address) {
34 if (Address.familyOf(address) != Address.IPv6)
35 throw new IllegalArgumentException("invalid IPv6 address");
    [all...]
ClientSubnetOption.java 13 * The option is used to convey information about the IP address of the
15 * based on this address, rather than the address of the intermediate
25 * for IPv6), a 1-byte source netmask, a 1-byte scope netmask, and an address
42 private InetAddress address; field in class:ClientSubnetOption
50 int max = Address.addressLength(family) * 8;
60 * the address must not be greater than the supplied source netmask.
67 * @param address The address of the client.
70 ClientSubnetOption(int sourceNetmask, int scopeNetmask, InetAddress address) {
    [all...]
  /art/runtime/native/
java_lang_DexCache.cc 34 void* address = const_cast<void*>(reinterpret_cast<const void*>(dex_file->Begin())); local
35 jobject byte_buffer = env->NewDirectByteBuffer(address, dex_file->Size());
  /external/chromium/third_party/libjingle/source/talk/base/
nethelpers.h 52 const SocketAddress& address() const { return addr_; } function in class:talk_base::AsyncResolver
  /external/chromium_org/chrome/browser/extensions/api/dns/
dns_apitest.cc 74 std::string address; local
75 EXPECT_TRUE(value->GetString("address", &address));
76 EXPECT_EQ("127.0.0.1", address);
101 std::string address; local
102 EXPECT_TRUE(value->GetString("address", &address));
103 EXPECT_EQ(extensions::MockHostResolverCreator::kAddress, address);
  /external/chromium_org/components/autofill/core/browser/
address_unittest.cc 9 #include "components/autofill/core/browser/address.h"
18 Address address; local
19 EXPECT_EQ(base::string16(), address.GetRawInfo(ADDRESS_HOME_COUNTRY));
23 address.GetInfo(AutofillType(ADDRESS_HOME_COUNTRY), "en-US");
26 address.SetInfo(
28 country = address.GetInfo(AutofillType(ADDRESS_HOME_COUNTRY), "en-US");
30 country = address.GetInfo(
33 country = address.GetInfo(
37 address.SetRawInfo(ADDRESS_HOME_COUNTRY, ASCIIToUTF16("CA"))
50 Address address; local
114 Address address; local
156 Address address; local
185 Address address; local
    [all...]
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_socket_utils.cc 28 std::vector<unsigned char> address; local
30 &address,
  /external/chromium_org/net/base/
ip_endpoint.h 20 // An IPEndPoint represents the address of a transport endpoint:
21 // * IP address (either v4 or v6)
27 IPEndPoint(const IPAddressNumber& address, int port);
30 const IPAddressNumber& address() const { return address_; } function in class:net::IPEndPoint
33 // Returns AddressFamily of the address.
36 // Returns the sockaddr family of the address, AF_INET or AF_INET6.
40 // |address| is the sockaddr to copy into. Should be at least
43 // size of data in |address| available. On output, it is the size of
44 // the address that was copied into |address|
    [all...]
  /external/chromium_org/ppapi/tests/
test_tcp_server_socket_private_disallowed.cc 65 PP_NetAddress_Private base_address, address; local
68 base_address, 0, &address));
72 &address,
  /external/llvm/include/llvm/CodeGen/
MachineCodeInfo.h 27 void *Address; // The address of the function in memory
30 MachineCodeInfo() : Size(0), Address(0) {}
37 Address = a;
44 void *address() const { function in class:llvm::MachineCodeInfo
45 return Address;

Completed in 1105 milliseconds

1 2 3 4 5 6 7 8 91011>>