HomeSort by relevance Sort by last modified time
    Searched defs:address (Results 301 - 325 of 1950) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/net/
MailTo.java 92 // Address can be specified in both the headers and just after the
94 String address = email.getPath(); local
95 if (address != null) {
98 address += ", " + addr;
100 m.mHeaders.put(TO, address);
107 * Retrieve the To address line from the parsed mailto URL. This could be
108 * several email address that are comma-space delimited.
117 * Retrieve the CC address line from the parsed mailto URL. This could be
118 * several email address that are comma-space delimited.
  /frameworks/base/libs/hwui/hwui/
Bitmap.h 62 Bitmap(void* address, size_t allocSize, const SkImageInfo& info, size_t rowBytes);
63 Bitmap(void* address, void* context, FreeFunc freeFunc, const SkImageInfo& info,
65 Bitmap(void* address, int fd, size_t mappedSize, const SkImageInfo& info, size_t rowBytes);
120 void* address; member in struct:android::Bitmap::__anon45811::__anon45812
125 void* address; member in struct:android::Bitmap::__anon45811::__anon45813
130 void* address; member in struct:android::Bitmap::__anon45811::__anon45814
  /frameworks/base/services/core/jni/
com_android_server_connectivity_Vpn.cpp 132 char address[65]; local
137 while (sscanf(addresses, " %64[^/]/%d %n", address, &prefix, &chars) == 2) {
140 if (strchr(address, ':')) {
141 // Add an IPv6 address.
142 if (inet_pton(AF_INET6, address, &ifr6.ifr6_addr) != 1 ||
154 // Add an IPv4 address.
155 if (inet_pton(AF_INET, address, as_in_addr(&ifr4.ifr_addr)) != 1 ||
176 ALOGD("Address added on %s: %s/%d", name, address, prefix);
181 ALOGE("Invalid address: %s/%d", address, prefix)
222 const char *address = jAddress ? env->GetStringUTFChars(jAddress, NULL) : NULL; local
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
WsbmWrapper.c 353 void * address = wsbmBOMap((struct _WsbmBufferObject *)buf, local
355 if(!address) {
361 address, wsbmBOSize((struct _WsbmBufferObject *)buf));
363 return address;
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
WsbmWrapper.c 353 void * address = wsbmBOMap((struct _WsbmBufferObject *)buf, local
355 if(!address) {
362 address, buf_size);
364 return address;
  /hardware/interfaces/tv/input/1.0/default/
TvInput.cpp 164 const char* address = event->device_info.audio_address; local
165 if (address != nullptr) {
166 size_t size = strlen(address);
168 LOG(ERROR) << "Audio address is too long. Address:" << address << "";
  /hardware/libhardware/modules/audio_remote_submix/tests/
remote_submix_tests.cpp 70 const char* address, bool mono, uint32_t sampleRate, audio_stream_in_t** streamIn);
72 const char* address, bool mono, uint32_t sampleRate, audio_stream_out_t** streamOut);
107 const char* address, bool mono, uint32_t sampleRate, audio_stream_in_t** streamIn) {
114 streamIn, AUDIO_INPUT_FLAG_NONE, address, AUDIO_SOURCE_DEFAULT);
120 const char* address, bool mono, uint32_t sampleRate, audio_stream_out_t** streamOut) {
127 &configOut, streamOut, address);
193 const char* address = "1"; local
195 OpenOutputStream(address, true /*mono*/, 48000, &streamOut);
203 // const char* address = "1";
205 // OpenOutputStream(address, true /*mono*/, 48000, &streamOut)
214 const char* address = "1"; local
227 const char* address = "1"; local
243 const char* address = "1"; local
261 const char* address = "1"; local
279 const char* address = "1"; local
292 const char* address = "1"; local
305 const char* address = "1"; local
318 const char* address = "1"; local
    [all...]
  /hardware/qcom/msm8996/kernel-headers/linux/
msm_ipc.h 56 struct msm_ipc_addr address; member in struct:sockaddr_msm_ipc
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_ipc.h 44 struct msm_ipc_addr address; member in struct:sockaddr_msm_ipc
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InetSocketAddressTest.java 33 InetSocketAddress address = new InetSocketAddress("127.0.0.1", 0); local
34 assertEquals("/127.0.0.1:0", address.toString());
35 String localhostName = address.getHostName();
37 assertEquals(localhostName + "/127.0.0.1:0", address.toString());
104 assertEquals("Address", init.getAddress(), desr.getAddress());
  /libcore/ojluni/src/main/java/java/net/
SocketImpl.java 58 * The IP address of the remote end of this socket.
60 protected InetAddress address; field in class:SocketImpl
95 * @param address the IP address of the remote host.
100 protected abstract void connect(InetAddress address, int port) throws IOException;
107 * @param address the Socket address of the remote host.
113 protected abstract void connect(SocketAddress address, int timeout) throws IOException;
116 * Binds this socket to the specified local IP address and port number.
118 * @param host an IP address that belongs to a local interface
    [all...]
  /libcore/ojluni/src/main/java/java/nio/
Buffer.java 194 long address; field in class:Buffer
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeObject.java 45 // Native allocation address;
46 // may be smaller than the base address due to page-size rounding
50 // Native base address
52 private final long address; field in class:NativeObject
55 * Creates a new native object that is based at the given native address.
57 NativeObject(long address) {
58 this.allocationAddress = address;
59 this.address = address;
63 * Creates a new native object allocated at the given native address bu
90 long address() { method in class:NativeObject
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
IPAddressName.java 43 * When the subjectAltName extension contains a iPAddress, the address
47 * address. For IP Version 4, as specified in RFC 791, the octet string
56 * address range.[RFC 1519] For IPv6 addresses, the ipAddress field
71 private byte[] address; field in class:IPAddressName
88 * @params address the IP address
89 * @throws IOException if address is not a valid IPv4 or IPv6 address
91 public IPAddressName(byte[] address) throws IOException {
93 * A valid address must consist of 4 bytes of address an
    [all...]
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/mapclient/
MapClientTest.java 124 String address = "11:11:11:11:11:1"; local
126 list.add(makeBluetoothDevice(address + i));
151 private BluetoothDevice makeBluetoothDevice(String address) {
152 return mAdapter.getRemoteDevice(address);
  /packages/apps/Contacts/src/com/android/contacts/interactions/
SmsInteraction.java 49 String address = getAddress(); local
50 return address == null ? null : new Intent(Intent.ACTION_VIEW).setData(
51 Uri.parse(URI_TARGET_PREFIX + address));
97 final String address = mValues.getAsString(Sms.ADDRESS); local
98 return address == null ? null :
99 sBidiFormatter.unicodeWrap(address, TextDirectionHeuristics.LTR);
  /packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
ReverseGeocodeTask.java 60 String address = null; local
66 // Parse the JSON response for the formatted address of the first result.
73 address = topResult.getString(JSON_KEY_ADDRESS);
75 // Strip off the Premise component from the address, if present.
87 && address.startsWith(component.getString(JSON_KEY_SHORT_NAME))) {
90 && address.startsWith(component.getString(JSON_KEY_LONG_NAME))) {
94 int index = address.indexOf(',', premise.length());
95 if (index > 0 && index < address.length()) {
96 address = address.substring(index + 1).trim()
    [all...]
  /packages/apps/TV/common/src/com/android/tv/common/util/
PostalCodeUtils.java 20 import android.location.Address;
97 Address address = LocationUtils.getCurrentAddress(context); local
98 if (address != null) {
102 + address.getCountryName()
104 + address.getPostalCode());
105 return address.getPostalCode();
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
ReplyFromAccount.java 39 private static final String ADDRESS_STRING = "address";
47 public String address; field in class:ReplyFromAccount
53 public ReplyFromAccount(Account account, Uri baseAccountUri, String address, String name,
57 this.address = address;
68 json.put(ADDRESS_STRING, address);
74 LogUtils.wtf(LOG_TAG, e, "Could not serialize account with address " + address);
107 * Determine if this address is the account itself or a custom from for the
123 if (TextUtils.equals(Utils.normalizeEmailAddress(replyFromAccount.address),
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
JJTAddressListParserState.java 1 /* Generated By:JJTree: Do not edit this line. /Users/jason/Projects/apache-mime4j-0.3/target/generated-sources/jjtree/org/apache/james/mime4j/field/address/parser/JJTAddressListParserState.java */
3 package org.apache.james.mime4j.field.address.parser;
  /packages/services/BuiltInPrintService/src/com/android/bips/p2p/
P2pPrinterConnection.java 95 String address = mPrinter.path.getHost().replaceAll("-", ":"); local
97 if (peer.deviceAddress.equals(address)) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
connection.py 85 Return an arbitrary free address for the given family
98 def address_type(address):
100 Return the types of the address
104 if type(address) == tuple:
106 elif type(address) is str and address.startswith('\\\\'):
108 elif type(address) is str:
111 raise ValueError('address type of %r unrecognized' % address)
124 def __init__(self, address=None, family=None, backlog=1, authkey=None)
157 address = property(lambda self: self._listener._address) variable in class:Listener
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
connection.py 85 Return an arbitrary free address for the given family
98 def address_type(address):
100 Return the types of the address
104 if type(address) == tuple:
106 elif type(address) is str and address.startswith('\\\\'):
108 elif type(address) is str:
111 raise ValueError('address type of %r unrecognized' % address)
124 def __init__(self, address=None, family=None, backlog=1, authkey=None)
157 address = property(lambda self: self._listener._address) variable in class:Listener
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 85 Return an arbitrary free address for the given family
98 def address_type(address):
100 Return the types of the address
104 if type(address) == tuple:
106 elif type(address) is str and address.startswith('\\\\'):
108 elif type(address) is str:
111 raise ValueError('address type of %r unrecognized' % address)
124 def __init__(self, address=None, family=None, backlog=1, authkey=None)
157 address = property(lambda self: self._listener._address) variable in class:Listener
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 85 Return an arbitrary free address for the given family
98 def address_type(address):
100 Return the types of the address
104 if type(address) == tuple:
106 elif type(address) is str and address.startswith('\\\\'):
108 elif type(address) is str:
111 raise ValueError('address type of %r unrecognized' % address)
124 def __init__(self, address=None, family=None, backlog=1, authkey=None)
157 address = property(lambda self: self._listener._address) variable in class:Listener
    [all...]

Completed in 911 milliseconds

<<11121314151617181920>>