HomeSort by relevance Sort by last modified time
    Searched refs:address (Results 101 - 125 of 1981) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/main/native/
libcore_icu_NativeBreakIterator.cpp 30 static BreakIterator* toBreakIterator(jint address) {
31 return reinterpret_cast<BreakIterator*>(static_cast<uintptr_t>(address));
42 BreakIteratorAccessor(JNIEnv* env, jint address, jstring javaInput, bool reset) {
43 init(env, address);
67 BreakIteratorAccessor(JNIEnv* env, jint address) {
68 init(env, address);
88 void init(JNIEnv* env, jint address) {
91 mBreakIterator = toBreakIterator(address);
122 static jint NativeBreakIterator_cloneImpl(JNIEnv* env, jclass, jint address) {
123 BreakIteratorAccessor it(env, address);
    [all...]
libcore_icu_NativeCollation.cpp 23 static UCollator* toCollator(jint address) {
24 return reinterpret_cast<UCollator*>(static_cast<uintptr_t>(address));
27 static UCollationElements* toCollationElements(jint address) {
28 return reinterpret_cast<UCollationElements*>(static_cast<uintptr_t>(address));
31 static void NativeCollation_closeCollator(JNIEnv*, jclass, jint address) {
32 ucol_close(toCollator(address));
35 static void NativeCollation_closeElements(JNIEnv*, jclass, jint address) {
36 ucol_closeElements(toCollationElements(address));
39 static jint NativeCollation_compare(JNIEnv* env, jclass, jint address, jstring javaLhs, jstring javaRhs) {
48 return ucol_strcoll(toCollator(address), lhs.get(), lhs.size(), rhs.get(), rhs.size())
    [all...]
  /external/smack/src/org/jivesoftware/smackx/muc/
RoomListenerMultiplexor.java 99 public void addRoom(String address, PacketMultiplexListener roomListener) {
100 filter.addRoom(address);
101 listener.addRoom(address, roomListener);
135 public void removeRoom(String address) {
136 filter.removeRoom(address);
137 listener.removeRoom(address);
152 * <code>Connection</code> the address for that chat room
168 public void addRoom(String address) {
169 if (address == null) {
172 roomAddressTable.put(address.toLowerCase(), address) local
    [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...]
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerX86_64.h 55 void add32(TrustedImm32 imm, AbsoluteAddress address)
57 move(TrustedImmPtr(address.m_ptr), scratchRegister);
58 add32(imm, Address(scratchRegister));
61 void and32(TrustedImm32 imm, AbsoluteAddress address)
63 move(TrustedImmPtr(address.m_ptr), scratchRegister);
64 and32(imm, Address(scratchRegister));
67 void or32(TrustedImm32 imm, AbsoluteAddress address)
69 move(TrustedImmPtr(address.m_ptr), scratchRegister);
70 or32(imm, Address(scratchRegister));
73 void sub32(TrustedImm32 imm, AbsoluteAddress address)
    [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) {
PProfileKey.java 29 import gov.nist.javax.sip.address.AddressImpl;
46 public PProfileKey(AddressImpl address)
49 this.address = address;
57 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
60 retval.append(address.encode());
61 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
Path.java 36 import gov.nist.javax.sip.address.AddressImpl;
49 * @param address address to set
51 public Path(AddressImpl address) {
53 this.address = address;
71 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
74 retval.append(address.encode());
75 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
  /frameworks/base/core/java/android/bluetooth/
IBluetoothGattCallback.aidl 28 in boolean connected, in String address);
29 void onScanResult(in String address, in int rssi, in byte[] advData);
30 void onGetService(in String address, in int srvcType, in int srvcInstId,
32 void onGetIncludedService(in String address, in int srvcType, in int srvcInstId,
35 void onGetCharacteristic(in String address, in int srvcType,
39 void onGetDescriptor(in String address, in int srvcType,
43 void onSearchComplete(in String address, in int status);
44 void onCharacteristicRead(in String address, in int status, in int srvcType,
48 void onCharacteristicWrite(in String address, in int status, in int srvcType,
51 void onExecuteWrite(in String address, in int status)
    [all...]
  /external/chromium/net/udp/
udp_socket_libevent.cc 81 int UDPSocketLibevent::GetPeerAddress(IPEndPoint* address) const {
83 DCHECK(address);
93 scoped_ptr<IPEndPoint> address(new IPEndPoint());
94 if (!address->FromSockAddr(addr, addr_len))
96 remote_address_.reset(address.release());
99 *address = *remote_address_;
103 int UDPSocketLibevent::GetLocalAddress(IPEndPoint* address) const {
105 DCHECK(address);
115 scoped_ptr<IPEndPoint> address(new IPEndPoint());
116 if (!address->FromSockAddr(addr, addr_len)
    [all...]
udp_socket_win.cc 77 int UDPSocketWin::GetPeerAddress(IPEndPoint* address) const {
79 DCHECK(address);
89 scoped_ptr<IPEndPoint> address(new IPEndPoint());
90 if (!address->FromSockAddr(addr, addr_len))
92 remote_address_.reset(address.release());
95 *address = *remote_address_;
99 int UDPSocketWin::GetLocalAddress(IPEndPoint* address) const {
101 DCHECK(address);
111 scoped_ptr<IPEndPoint> address(new IPEndPoint());
112 if (!address->FromSockAddr(addr, addr_len)
    [all...]
udp_client_socket.h 25 virtual int Connect(const IPEndPoint& address);
29 virtual int GetPeerAddress(IPEndPoint* address) const;
30 virtual int GetLocalAddress(IPEndPoint* address) const;
  /development/tools/axl/
udpServer.py 19 data, address = svrsocket.recvfrom(8192)
23 print 'Sending packet', count, 'to', address[0]
24 svrsocket.sendto("%3.3s%s" % (count, buf), address)
  /external/arduino/libraries/Wire/
Wire.cpp 63 void TwoWire::begin(uint8_t address)
65 twi_setAddress(address);
71 void TwoWire::begin(int address)
73 begin((uint8_t)address);
76 uint8_t TwoWire::requestFrom(uint8_t address, uint8_t quantity)
83 uint8_t read = twi_readFrom(address, rxBuffer, quantity);
91 uint8_t TwoWire::requestFrom(int address, int quantity)
93 return requestFrom((uint8_t)address, (uint8_t)quantity);
96 void TwoWire::beginTransmission(uint8_t address)
100 // set address of targeted slav
    [all...]
  /external/chromium/net/disk_cache/
storage_block.h 23 // StorageBlock<TypeA> a(file, address);
24 // StorageBlock<TypeB> b(file, address);
34 StorageBlock(MappedFile* file, Addr address);
43 bool LazyInit(MappedFile* file, Addr address);
67 const Addr address() const;
  /external/openssh/
monitor_mm.h 33 void *address; member in struct:mm_share
40 void *address; member in struct:mm_master
50 #define MM_ADDRESS_END(x) (void *)((u_char *)(x)->address + (x)->size)
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
DetailsAddressResolver.java 20 import android.location.Address;
36 private Future<Address> mAddressLookupJob;
39 private class AddressLookupJob implements Job<Address> {
47 public Address run(JobContext jc) {
54 public void onAddressAvailable(String address);
66 new FutureListener<Address>() {
68 public void onFutureDone(final Future<Address> future) {
83 private void updateLocation(Address address) {
84 if (address != null)
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocatorSymbian.cpp 55 // Frees the _entire_ code chunk in which this address resides.
56 static bool deallocateCodeChunk(void* address)
61 if (p && p->contains(address)) {
76 // Reserve memory and return the base address of the region
97 void OSAllocator::commit(void* address, size_t bytes, bool, bool executable)
102 dataAllocatorInstance()->commit(address, bytes);
105 void OSAllocator::decommit(void* address, size_t bytes)
107 if (dataAllocatorInstance()->contains(address))
108 dataAllocatorInstance()->decommit(address, bytes);
110 deallocateCodeChunk(address); // for code chunk, decommit AND release
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
CdmaSmsAddress.java 29 * the address digits are 4-bit DTMF codes or 8-bit codes. (See
39 * address type is a data network address or not. (See 3GPP2
69 * This field shall be set to the number of address digits
88 * NOTE: the parsed string address and the raw byte array values
89 * are stored in the parent class address and origBytes fields,
105 builder.append(", address=\"" + address + "\"");
117 private static byte[] parseToDtmf(String address) {
118 int digits = address.length()
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
LocalList.java 121 /** {@code >= 0;} address */
122 private final int address; field in class:LocalList.Entry
136 * @param address {@code >= 0;} address
141 public Entry(int address, Disposition disposition, RegisterSpec spec) {
142 if (address < 0) {
143 throw new IllegalArgumentException("address < 0");
160 this.address = address;
168 return Integer.toHexString(address) + " " + disposition + " "
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
LocalList.java 121 /** {@code >= 0;} address */
122 private final int address; field in class:LocalList.Entry
136 * @param address {@code >= 0;} address
141 public Entry(int address, Disposition disposition, RegisterSpec spec) {
142 if (address < 0) {
143 throw new IllegalArgumentException("address < 0");
160 this.address = address;
168 return Integer.toHexString(address) + " " + disposition + " "
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
LocalList.java 121 /** {@code >= 0;} address */
122 private final int address; field in class:LocalList.Entry
136 * @param address {@code >= 0;} address
141 public Entry(int address, Disposition disposition, RegisterSpec spec) {
142 if (address < 0) {
143 throw new IllegalArgumentException("address < 0");
160 this.address = address;
168 return Integer.toHexString(address) + " " + disposition + " "
    [all...]
  /external/qemu/
ioport.c 57 static uint32_t ioport_read(int index, uint32_t address)
64 IOPortReadFunc *func = ioport_read_table[index][address];
67 return func(ioport_opaque[address], address);
70 static void ioport_write(int index, uint32_t address, uint32_t data)
77 IOPortWriteFunc *func = ioport_write_table[index][address];
80 func(ioport_opaque[address], address, data);
83 static uint32_t default_ioport_readb(void *opaque, uint32_t address)
85 LOG_UNUSED_IOPORT("unused inb: port=0x%04"PRIx32"\n", address);
    [all...]
  /bionic/libc/kernel/common/asm-generic/
4level-fixup.h 29 #define pmd_alloc(mm, pud, address) ((unlikely(pgd_none(*(pud))) && __pmd_alloc(mm, pud, address))? NULL: pmd_offset(pud, address))
30 #define pud_alloc(mm, pgd, address) (pgd)

Completed in 554 milliseconds

1 2 3 45 6 7 8 91011>>