Searched refs:address (Results 76 - 100 of 232) sorted by path

12345678910

/frameworks/base/core/java/android/net/
H A DWebAddress.java34 * browser address widget.
69 public WebAddress(String address) throws ParseException { argument
70 if (address == null) {
74 // android.util.Log.d(LOGTAG, "WebAddress: " + address);
82 Matcher m = sAddressPattern.matcher(address);
113 throw new ParseException("Bad address");
/frameworks/base/core/java/android/os/
H A DMemoryFile.java45 // returns memory address for ashmem region
50 private static native int native_read(FileDescriptor fd, long address, byte[] buffer, argument
52 private static native void native_write(FileDescriptor fd, long address, byte[] buffer, argument
58 private long mAddress; // address of ashmem memory
/frameworks/base/core/java/android/provider/
H A DCallLog.java409 * The address associated with the account used to place or receive the call; in string
597 Uri address = account.getSubscriptionAddress();
598 if (address != null) {
599 accountAddress = address.getSchemeSpecificPart();
H A DSettings.java359 * address for Wi-Fi.
2534 * The static IP address.
2546 * If using static IP, the gateway's IP address.
2570 * If using static IP, the primary DNS's IP address.
2582 * If using static IP, the secondary DNS's IP address.
3461 * "SIP_ADDRESS_ONLY" : Only if destination is a SIP address
3480 * One of the sip call options: Only if destination is a SIP address.
6610 * Each entry is a partial Bluetooth device address string and an integer representing
7506 * point for which we have failed in acquiring an IP address from DHCP.
8087 public static final String getBluetoothHeadsetPriorityKey(String address) { argument
8095 getBluetoothA2dpSinkPriorityKey(String address) argument
8103 getBluetoothA2dpSrcPriorityKey(String address) argument
8111 getBluetoothInputDevicePriorityKey(String address) argument
8119 getBluetoothMapPriorityKey(String address) argument
8127 getBluetoothPbapClientPriorityKey(String address) argument
8135 getBluetoothSapPriorityKey(String address) argument
[all...]
/frameworks/base/core/java/android/text/util/
H A DLinkify.java114 * to prevent turning the domain name in an email address into a web link.
547 String address;
551 while ((address = WebView.findAddress(string)) != null) {
552 int start = string.indexOf(address);
559 int length = address.length();
570 encodedAddress = URLEncoder.encode(address,"UTF-8");
H A DRfc822Token.java22 * This class stores an RFC 822-like name, address, and comment,
30 * Creates a new Rfc822Token with the specified name, address,
33 public Rfc822Token(@Nullable String name, @Nullable String address, @Nullable String comment) { argument
35 mAddress = address;
48 * Returns the address part.
71 * Changes the address to the specified address.
73 public void setAddress(@Nullable String address) { argument
74 mAddress = address;
86 * the comment (in parentheses), and the address (i
[all...]
H A DRfc822Tokenizer.java26 * address list fields, and also provides a method for converting
47 StringBuilder address = new StringBuilder();
65 if (address.length() > 0) {
67 address.toString(),
76 address.setLength(0);
135 address.append(c);
150 if (address.length() > 0) {
152 address.toString(),
306 * Terminates the specified address with a comma and space.
/frameworks/base/core/java/android/view/
H A DDisplay.java308 mAddress = displayInfo.address;
403 * Gets the display address, or null if none.
406 * @return The display address.
H A DDisplayInfo.java51 * Display address, or null if none.
54 public String address; field in class:DisplayInfo
277 && Objects.equal(address, other.address)
316 address = other.address;
354 address = source.readString();
400 dest.writeString(address);
642 if (address != null) {
643 sb.append(", address ")
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DVpnConfig.java106 public void updateAllowedFamilies(InetAddress address) { argument
107 if (address instanceof Inet4Address) {
132 for (String address : addresses) {
133 //each address is ip/prefix
134 LinkAddress addr = new LinkAddress(address);
/frameworks/base/core/java/com/android/internal/os/
H A DInstallerConnection.java194 LocalSocketAddress address = new LocalSocketAddress("installd",
197 mSocket.connect(address);
/frameworks/base/core/java/com/android/server/net/
H A DBaseNetworkObserver.java41 public void addressUpdated(String iface, LinkAddress address) { argument
46 public void addressRemoved(String iface, LinkAddress address) { argument
H A DNetlinkTracker.java91 private void maybeLog(String operation, String iface, LinkAddress address) { argument
93 Log.d(TAG, operation + ": " + address + " on " + iface +
94 " flags " + address.getFlags() + " scope " + address.getScope());
118 public void addressUpdated(String iface, LinkAddress address) { argument
120 maybeLog("addressUpdated", iface, address);
123 changed = mLinkProperties.addLinkAddress(address);
132 public void addressRemoved(String iface, LinkAddress address) { argument
134 maybeLog("addressRemoved", iface, address);
137 changed = mLinkProperties.removeLinkAddress(address);
216 public final InetAddress address; field in class:DnsServerEntry
221 DnsServerEntry(InetAddress address, long expiry) argument
340 updateExistingEntry(InetAddress address, long expiry) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp129 Bitmap::Bitmap(JNIEnv* env, jbyteArray storageObj, void* address, argument
135 mPixelRef.reset(new WrappedPixelRef(this, address, info, rowBytes, ctable));
141 Bitmap::Bitmap(void* address, void* context, FreeFunc freeFunc, argument
144 mPixelStorage.external.address = address;
147 mPixelRef.reset(new WrappedPixelRef(this, address, info, rowBytes, ctable));
153 Bitmap::Bitmap(void* address, int fd, argument
156 mPixelStorage.ashmem.address = address;
159 mPixelRef.reset(new WrappedPixelRef(this, address, inf
[all...]
H A DBitmap.h50 Bitmap(JNIEnv* env, jbyteArray storageObj, void* address,
52 Bitmap(void* address, void* context, FreeFunc freeFunc,
54 Bitmap(void* address, int fd, const SkImageInfo& info, size_t rowBytes,
107 void* address; member in struct:android::Bitmap::__anon841::__anon842
112 void* address; member in struct:android::Bitmap::__anon841::__anon843
/frameworks/base/core/jni/
H A Dandroid_media_AudioSystem.cpp1039 jstring jAddress = env->NewStringUTF(nAudioPort->ext.device.address);
H A Dandroid_os_MemoryFile.cpp74 jobject fileDescriptor, jlong address, jbyteArray buffer, jint srcOffset, jint destOffset,
84 env->SetByteArrayRegion(buffer, destOffset, count, (const jbyte *)address + srcOffset);
93 jobject fileDescriptor, jlong address, jbyteArray buffer, jint srcOffset, jint destOffset,
103 env->GetByteArrayRegion(buffer, srcOffset, count, (jbyte *)address + destOffset);
73 android_os_MemoryFile_read(JNIEnv* env, jobject clazz, jobject fileDescriptor, jlong address, jbyteArray buffer, jint srcOffset, jint destOffset, jint count, jboolean unpinned) argument
92 android_os_MemoryFile_write(JNIEnv* env, jobject clazz, jobject fileDescriptor, jlong address, jbyteArray buffer, jint srcOffset, jint destOffset, jint count, jboolean unpinned) argument
H A Dandroid_util_MemoryIntArray.cpp124 jint fd, jlong address, jint index, jboolean owner)
136 std::atomic_int* value = reinterpret_cast<std::atomic_int*>(address) + index;
141 jint fd, jlong address, jint index, jint newValue, jboolean owner)
153 std::atomic_int* value = reinterpret_cast<std::atomic_int*>(address) + index;
123 android_util_MemoryIntArray_get(JNIEnv* env, jobject clazz, jint fd, jlong address, jint index, jboolean owner) argument
140 android_util_MemoryIntArray_set(JNIEnv* env, jobject clazz, jint fd, jlong address, jint index, jint newValue, jboolean owner) argument
/frameworks/base/core/tests/coretests/src/android/net/
H A DLinkAddressTest.java69 LinkAddress address;
72 address = new LinkAddress(V4_ADDRESS, 25);
73 assertEquals(V4_ADDRESS, address.getAddress());
74 assertEquals(25, address.getPrefixLength());
75 assertEquals(0, address.getFlags());
76 assertEquals(RT_SCOPE_UNIVERSE, address.getScope());
78 address = new LinkAddress(V6_ADDRESS, 127);
79 assertEquals(V6_ADDRESS, address.getAddress());
80 assertEquals(127, address.getPrefixLength());
81 assertEquals(0, address
[all...]
H A DLinkPropertiesTest.java257 InetAddress address = ADDRV6;
261 RouteInfo r = new RouteInfo(prefix, address, null);
271 r = new RouteInfo(prefix, address, "wlan0");
421 // Adding an address twice has no effect.
422 // Removing an address that's not present has no effect.
432 // Adding an address that's already present but with different properties causes the
433 // existing address to be updated and returns true.
438 // Create a LinkAddress object for the same address, but with different flags.
444 // Check that adding it updates the existing address instead of adding a new one.
514 // A link with an IPv6 address an
[all...]
/frameworks/base/core/tests/coretests/src/android/text/
H A DTextUtilsTest.java258 String address = "\"Foo\" <foo@google.com>, \"Bar\" <bar@google.com>";
259 assertEquals(0, tokenizer.findTokenStart(address, 21));
260 assertEquals(22, tokenizer.findTokenEnd(address, 21));
261 assertEquals(24, tokenizer.findTokenStart(address, 25));
262 assertEquals(46, tokenizer.findTokenEnd(address, 25));
/frameworks/base/docs/html/ndk/reference/
H A Ddoxygen.css315 address.footer {
747 address {
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs199 an address on a map."
774 <a href="<?cs var:toroot ?>training/location/display-address.html">
807 "How to use Android's central address book, the Contacts Provider, to
/frameworks/base/media/java/android/media/
H A DAudioDeviceInfo.java142 * @return The "address" string of the device. This generally contains device-specific
146 return mPort.address();
H A DAudioDevicePort.java29 * - the device address (e.g MAC adddress for AD2P sink).
41 int[] formats, AudioGain[] gains, int type, String address) {
47 mAddress = address;
58 * Get the device address. Address format varies with the device type.
60 * {@link AudioManager#DEVICE_IN_USB_DEVICE}) use an address composed of the ALSA card number
64 * use the MAC address of the bluetooth device in the form "00:11:22:AA:BB:CC" as reported by
66 * - Deivces that do not have an address will indicate an empty string "".
68 public String address() { method in class:AudioDevicePort
90 if (mAddress == null && other.address() != null) {
93 if (!mAddress.equals(other.address())) {
39 AudioDevicePort(AudioHandle handle, String deviceName, int[] samplingRates, int[] channelMasks, int[] channelIndexMasks, int[] formats, AudioGain[] gains, int type, String address) argument
[all...]

Completed in 513 milliseconds

12345678910