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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/voip/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;
35 @TestTargetClass(Address.class)
40 method = "Address",
44 new Address(Locale.ENGLISH);
46 new Address(Locale.FRANCE);
48 new Address(null);
58 Address address = new Address(Locale.GERMAN); local
60 assertEquals(0, address.describeContents())
84 Address address = new Address(Locale.ITALY); local
109 Address address = new Address(Locale.JAPAN); local
134 Address address = new Address(Locale.KOREA); local
159 Address address = new Address(Locale.TAIWAN); local
190 Address address = new Address(Locale.SIMPLIFIED_CHINESE); local
227 Address address = new Address(Locale.CHINA); local
271 Address address = new Address(Locale.CHINA); local
305 Address address = new Address(Locale.CHINA); local
330 Address address = new Address(Locale.CHINA); local
355 Address address = new Address(Locale.CHINA); local
380 Address address = new Address(Locale.CHINA); local
405 Address address = new Address(Locale.CHINA); local
422 Address address = new Address(Locale.CHINA); local
454 Address address = new Address(Locale.CHINA); local
495 Address address = new Address(locale); local
521 Address address = new Address(Locale.PRC); local
539 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/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/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)
Hop.java 1 package javax.sip.address;
URI.java 1 package javax.sip.address;
  /libcore/luni/src/main/java/java/nio/
NIOAccess.java 29 * address."
36 int address = b.effectiveDirectAddress; local
37 if (address == 0) {
40 return address + (b.position << b._elementSizeShift);
  /external/chromium/third_party/libjingle/source/talk/base/
nethelpers.h 52 const SocketAddress& address() const { return addr_; } function in class:talk_base::AsyncResolver
  /external/dbus/dbus/
dbus-transport-unix.c 46 * address, this function needs to do escaping.
50 * @param error address where an error can be returned.
60 DBusString address; local
64 if (!_dbus_string_init (&address))
73 !_dbus_string_append (&address, "unix:abstract=")) ||
75 !_dbus_string_append (&address, "unix:path=")) ||
76 !_dbus_string_append (&address, path))
92 transport = _dbus_transport_new_for_socket (fd, NULL, &address);
99 _dbus_string_free (&address);
106 _dbus_string_free (&address);
    [all...]
  /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;
  /external/qemu/android/
async-console.h 28 SockAddress address; member in struct:__anon9341
34 /* Initialize the console connector. This attempts to connect to the address
39 const SockAddress* address,
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/
Address.java 20 package org.apache.james.mime4j.field.address;
32 public abstract class Address {
35 * Adds any mailboxes represented by this address
41 final void addMailboxesTo(ArrayList<Address> results) {
46 * Adds any mailboxes represented by this address
50 protected abstract void doAddMailboxesTo(ArrayList<Address> results);
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
ASTaddr_spec.java 3 package org.apache.james.mime4j.field.address.parser;
ASTaddress.java 3 package org.apache.james.mime4j.field.address.parser;
ASTaddress_list.java 3 package org.apache.james.mime4j.field.address.parser;
ASTangle_addr.java 3 package org.apache.james.mime4j.field.address.parser;
ASTdomain.java 3 package org.apache.james.mime4j.field.address.parser;
ASTgroup_body.java 3 package org.apache.james.mime4j.field.address.parser;
ASTlocal_part.java 3 package org.apache.james.mime4j.field.address.parser;

Completed in 2296 milliseconds

1 2 3 4 5 6 7 8 91011>>