/frameworks/base/core/java/android/server/ |
BluetoothEventLoop.java | 70 String address = null; 76 address = (String)msg.obj; 77 if (address != null) { 78 mBluetoothService.setPairingConfirmation(address, true); 91 address = devices[0]; 92 mBluetoothService.setBondState(address, 148 private void addDevice(String address, String[] properties) { 149 mBluetoothService.addRemoteDeviceProperties(address, properties); 150 String rssi = mBluetoothService.getRemoteDeviceProperty(address, "RSSI"); 151 String classValue = mBluetoothService.getRemoteDeviceProperty(address, "Class") 190 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local 206 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local 218 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local 293 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local 367 String address = mBluetoothService.getAddressFromObjectPath(objectPath); local 392 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local 417 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local 430 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local 442 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local 478 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local 490 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local 501 String address = mBluetoothService.getAddressFromObjectPath(objectPath); local 578 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local [all...] |
/external/webkit/JavaScriptCore/assembler/ |
MacroAssemblerARM.cpp | 67 void MacroAssemblerARM::load32WithUnalignedHalfWords(BaseIndex address, RegisterID dest) 71 ASSERT(address.scale >= 0 && address.scale <= 3); 72 op2 = m_assembler.lsl(address.index, static_cast<int>(address.scale)); 74 if (address.offset >= 0 && address.offset + 0x2 <= 0xff) { 75 m_assembler.add_r(ARMRegisters::S0, address.base, op2); 76 m_assembler.ldrh_u(dest, ARMRegisters::S0, ARMAssembler::getOp2Byte(address.offset)); 77 m_assembler.ldrh_u(ARMRegisters::S0, ARMRegisters::S0, ARMAssembler::getOp2Byte(address.offset + 0x2)) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
AddressParametersHeader.java | 26 import javax.sip.address.*; 31 import gov.nist.javax.sip.address.*; 33 /** An abstract class for headers that take an address and parameters. 47 protected AddressImpl address; field in class:AddressParametersHeader 52 public Address getAddress() { 53 return address; 57 * @see gov.nist.javax.sip.header.AddressParameters#setAddress(javax.sip.address.Address) 59 public void setAddress(Address address) { [all...] |
From.java | 32 import gov.nist.javax.sip.address.AddressImpl; 67 address = to.address; 81 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 84 address.encode(buffer); 85 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 96 * Conveniance accessor function to get the hostPort field from the address. 102 return address.getHostPort(); 106 * Get the display name from the address. 110 return address.getDisplayName() [all...] |
To.java | 32 import gov.nist.javax.sip.address.AddressImpl; 70 setAddress(from.address); 94 if (address != null) { 95 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 98 address.encode(buffer); 99 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 112 * Conveniance accessor function to get the hostPort field from the address. 118 if (address == null) 120 return address.getHostPort(); 124 * Get the display name from the address [all...] |
/libcore/luni/src/main/native/ |
NativeBreakIterator.cpp | 55 static UBreakIterator* breakIterator(jint address) { 56 return reinterpret_cast<UBreakIterator*>(static_cast<uintptr_t>(address)); 59 static void NativeBreakIterator_closeBreakIteratorImpl(JNIEnv*, jclass, jint address) { 60 ubrk_close(breakIterator(address)); 63 static jint NativeBreakIterator_cloneImpl(JNIEnv* env, jclass, jint address) { 66 UBreakIterator* it = ubrk_safeClone(breakIterator(address), NULL, &bufferSize, &status); 71 static void NativeBreakIterator_setTextImpl(JNIEnv* env, jclass, jint address, jstring javaText) { 75 ubrk_setText(breakIterator(address), s.getBuffer(), s.length(), &status); 79 static jboolean NativeBreakIterator_isBoundaryImpl(JNIEnv*, jclass, jint address, jint offset) { 80 return ubrk_isBoundary(breakIterator(address), offset) [all...] |
NativeCollation.cpp | 22 static UCollator* toCollator(jint address) { 23 return reinterpret_cast<UCollator*>(static_cast<uintptr_t>(address)); 26 static UCollationElements* toCollationElements(jint address) { 27 return reinterpret_cast<UCollationElements*>(static_cast<uintptr_t>(address)); 30 static void NativeCollation_closeCollator(JNIEnv*, jclass, jint address) { 31 ucol_close(toCollator(address)); 34 static void NativeCollation_closeElements(JNIEnv*, jclass, jint address) { 35 ucol_closeElements(toCollationElements(address)); 38 static jint NativeCollation_compare(JNIEnv* env, jclass, jint address, jstring lhs0, jstring rhs0) { 41 return ucol_strcoll(toCollator(address), [all...] |
/external/chromium/googleurl/src/ |
url_canon_ip.h | 39 // Searches the host name for the portions of the IPv4 address. On success, 41 // It will return false if the host can not be separated as an IPv4 address 43 // be in an IP address. (This is important so we fail as early as possible for 51 // address. IE6 is included in this. We do NOT handle this case. In many cases, 55 // notice these spaces and escape them, which will make IP address finding 64 // Converts an IPv4 address to a 32-bit number (network byte order). 67 // IPV4 - IPv4 address was successfully parsed. 68 // BROKEN - Input was formatted like an IPv4 address, but overflow occurred 70 // NEUTRAL - Input couldn't possibly be interpreted as an IPv4 address. 71 // It might be an IPv6 address, or a hostname [all...] |
/external/nist-sip/java/gov/nist/javax/sip/ |
UtilsExt.java | 30 public String generateCallIdentifier(String address);
|
/external/nist-sip/java/javax/sip/address/ |
Hop.java | 1 package javax.sip.address;
|
/external/webkit/JavaScriptCore/wtf/ |
MallocZoneSupport.h | 46 void* operator()(vm_address_t address, size_t size) const 49 kern_return_t err = (*m_reader)(m_task, address, size, static_cast<void**>(&output)); 57 T* operator()(T* address, size_t size=sizeof(T)) const 59 return static_cast<T*>((*this)(reinterpret_cast<vm_address_t>(address), size));
|
/libcore/luni/src/main/java/org/apache/harmony/luni/platform/ |
RuntimeMemorySpy.java | 34 AddressWrapper(PlatformAddress address) { 35 this.shadow = address.duplicate(); 36 this.wrAddress = new PhantomReference<PlatformAddress>(address, notifyQueue); 50 public void alloc(PlatformAddress address) { 58 AddressWrapper wrapper = new AddressWrapper(address); 66 public boolean free(PlatformAddress address) { 69 wrapper = memoryInUse.remove(address); 76 System.err.println("Memory Spy! Fixed attempt to free memory that was not allocated " + address); 81 public void rangeCheck(PlatformAddress address, int offset, int length) throws IndexOutOfBoundsException { 86 * Requests that the given address is freed automatically when it become [all...] |
/dalvik/vm/native/ |
sun_misc_Unsafe.c | 70 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); local 73 int result = android_atomic_release_cas(expectedValue, newValue, address); 90 volatile int64_t* address = (volatile int64_t*) (((u1*) obj) + offset); local 94 dvmQuasiAtomicCas64(expectedValue, newValue, address); 111 int32_t* address = (int32_t*) (((u1*) obj) + offset); local 115 (int32_t) newValue, address); 116 dvmWriteBarrierField(obj, address); 129 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); local 131 int32_t value = android_atomic_acquire_load(address); 145 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset) local 160 volatile int64_t* address = (volatile int64_t*) (((u1*) obj) + offset); local 176 volatile int64_t* address = (volatile int64_t*) (((u1*) obj) + offset); local 192 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); local 208 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); local 223 s4* address = (s4*) (((u1*) obj) + offset); local 237 s4* address = (s4*) (((u1*) obj) + offset); local 251 s8* address = (s8*) (((u1*) obj) + offset); local 265 s8* address = (s8*) (((u1*) obj) + offset); local 279 Object** address = (Object**) (((u1*) obj) + offset); local 293 Object** address = (Object**) (((u1*) obj) + offset); local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/address/ |
AddressFactoryImpl.java | 26 package gov.nist.javax.sip.address; 31 import javax.sip.address.*; 34 * Implementation of the JAIN-SIP address factory. 46 public class AddressFactoryImpl implements javax.sip.address.AddressFactory { 56 *Create an empty address object. 61 public javax.sip.address.Address createAddress() { 65 * Creates an Address with the new display name and URI attribute 69 * address. A <code>null</code> value does not set the display name. 70 * @param uri - the new URI value of the address [all...] |
/external/qemu/proxy/ |
proxy_http_int.h | 21 SockAddress server_addr; /* server address and port */ 30 SockAddress* address ); 35 SockAddress* address );
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
DataCallState.java | 25 public String address; field in class:DataCallState 30 + ", apn: " + apn + ", address: " + address + " }";
|
/frameworks/base/voip/java/android/net/rtp/ |
RtpStream.java | 59 * Creates a RtpStream on the given local address. Note that the local 62 * @param address The network address of the local host to bind to. 63 * @throws SocketException if the address cannot be bound or a problem 66 RtpStream(InetAddress address) throws SocketException { 67 mLocalPort = create(address.getHostAddress()); 68 mLocalAddress = address; 71 private native int create(String address) throws SocketException; 74 * Returns the network address of the local host. 88 * Returns the network address of the remote host or {@code null} if th [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/ |
ReferredBy.java | 13 import gov.nist.javax.sip.address.*; 53 if (address == null) 56 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 59 retval += address.encode(); 60 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 91 * CVS: address here. If this is your work then delete this line. 127 * CVS: address here. If this is your work then delete this line.
|
/external/v8/src/ |
ic-inl.h | 39 Address IC::address() { function in class:v8::internal::IC 40 // Get the address of the call. 41 Address result = pc() - Assembler::kCallTargetAddressOffset; 44 // First check if any break points are active if not just return the address 51 // If the call site is a call to debug break then return the address in 52 // the original code instead of the address in the running code. This will 57 // No break point here just return the address of the call. 66 Code* IC::GetTargetAtAddress(Address address) { [all...] |
/external/webkit/WebKitTools/Scripts/webkitperl/VCSUtils_unittest/ |
fixChangeLogPatch.pl | 38 # 2009-12-22 Alice <alice@email.address> 47 # 2009-12-21 Alice <alice@email.address> 67 +2009-12-22 Bob <bob@email.address> 75 2009-12-22 Alice <alice@email.address> 94 2009-12-21 Alice <alice@email.address> 114 +2009-12-21 Alice <alice@email.address> 132 2009-12-22 Alice <alice@email.address> 140 +2009-12-22 Alice <alice@email.address> 151 +2009-12-22 Alice <alice@email.address> 159 2009-12-22 Alice <alice@email.address> [all...] |
/external/nist-sip/java/gov/nist/core/net/ |
DefaultNetworkLayer.java | 74 public Socket createSocket(InetAddress address, int port) 76 return new Socket(address, port); 105 public SSLSocket createSSLSocket(InetAddress address, int port) 107 return (SSLSocket) sslSocketFactory.createSocket(address, port); 111 public SSLSocket createSSLSocket(InetAddress address, int port, 113 return (SSLSocket) sslSocketFactory.createSocket(address, port, 117 public Socket createSocket(InetAddress address, int port, 120 return new Socket(address, port, myAddress, 0); 122 return new Socket(address, port); 127 * address:port [all...] |
/packages/apps/Email/src/com/android/email/mail/ |
Address.java | 34 * This class represent email address. 36 * RFC822 email address may have following format. 37 * "name" <address> (comment) 38 * "name" <address> 39 * name <address> 40 * address 44 public class Address { 46 * Address part, in the form local_part@domain_part. No surrounding angle brackets. 52 * This must be null if Address has no name part. 56 // Regex that matches address surrounded by '<>' optionally. '^<?([^>]+)>?$ 124 String address = token.getAddress(); local 148 String address = token.getAddress(); local 368 Address address; local 416 final Address address = addresses[i]; local 431 final String address = getAddress(); local 460 String address = null; local 491 Address address = addresses[i]; local [all...] |
/libcore/luni/src/main/java/java/net/ |
Inet6Address.java | 27 * An IPv6 address. See {@link InetAddress}. 53 Inet6Address(byte[] address) { 55 ipaddress = address; 59 Inet6Address(byte[] address, String name) { 62 ipaddress = address; 67 * Constructs an {@code InetAddress} representing the {@code address} and 70 * @param address 71 * the network address. 73 * the name associated with the address. 77 Inet6Address(byte[] address, String name, int scope_id) 133 Inet6Address address = Inet6Address.getByAddress(host, addr, 0); local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ims/ |
PAssertedIdentity.java | 37 import gov.nist.javax.sip.address.AddressImpl; 57 * @param address address to set 59 public PAssertedIdentity(AddressImpl address) { 61 this.address = address; 77 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 80 retval.append(address.encode()); 81 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
|
PCalledPartyID.java | 37 import gov.nist.javax.sip.address.AddressImpl; 52 * @param address address to set 54 public PCalledPartyID(AddressImpl address) { 56 this.address = address; 72 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 75 retval.append(address.encode()); 76 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
|