HomeSort by relevance Sort by last modified time
    Searched refs:address (Results 76 - 100 of 1393) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/native/
libcore_icu_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 javaLhs, jstring javaRhs) {
47 return ucol_strcoll(toCollator(address), lhs.get(), lhs.size(), rhs.get(), rhs.size())
    [all...]
libcore_icu_NativeBreakIterator.cpp 35 static BreakIteratorPeer* fromAddress(jint address) {
36 return reinterpret_cast<BreakIteratorPeer*>(static_cast<uintptr_t>(address));
112 static UBreakIterator* breakIterator(jint address) {
113 return BreakIteratorPeer::fromAddress(address)->breakIterator();
145 static void NativeBreakIterator_closeBreakIteratorImpl(JNIEnv* env, jclass, jint address) {
146 BreakIteratorPeer* peer = BreakIteratorPeer::fromAddress(address);
151 static jint NativeBreakIterator_cloneImpl(JNIEnv* env, jclass, jint address) {
152 return BreakIteratorPeer::fromAddress(address)->clone(env)->toAddress();
155 static void NativeBreakIterator_setTextImpl(JNIEnv* env, jclass, jint address, jstring javaText) {
156 BreakIteratorPeer* peer = BreakIteratorPeer::fromAddress(address);
    [all...]
  /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/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/chromium/net/udp/
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;
  /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> {
46 public Address run(JobContext jc) {
53 public void onAddressAvailable(String address);
65 new FutureListener<Address>() {
66 public void onFutureDone(final Future<Address> future) {
80 private void updateLocation(Address address) {
81 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/base/telephony/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/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...]
  /frameworks/base/core/java/android/server/
BluetoothService.java 177 public String address; field in class:BluetoothService.RemoteService
179 public RemoteService(String address, ParcelUuid uuid) {
180 this.address = address;
187 return address.equals(service.address) && uuid.equals(service.uuid);
195 hash = hash * 31 + (address == null ? 0 : address.hashCode());
256 byte[] address = new byte[17];
257 file.read(address);
2005 String address = objectPath.substring(adapterObjectPath.length()); local
2189 String address = device.getAddress(); local
2427 String address = getAddressFromObjectPath(path); local
2438 String address = getAddressFromObjectPath(path); local
    [all...]
BluetoothBondState.java 72 // If this is an outgoing connection, store the address.
96 synchronized void setPendingOutgoingBonding(String address) {
97 mPendingOutgoingBonding = address;
130 public synchronized void setBondState(String address, int state) {
131 setBondState(address, state, 0);
135 public synchronized void setBondState(String address, int state, int reason) {
136 if (DBG) Log.d(TAG, "setBondState " + "address" + " " + state + "reason: " + reason);
138 int oldState = getBondState(address);
146 if (address.equals(mPendingOutgoingBonding)) {
153 if (mPairingRequestRcvd.contains(address)) setTrust = true
    [all...]
  /bionic/libc/kernel/common/asm-generic/
4level-fixup.h 24 #define pmd_alloc(mm, pud, address) ((unlikely(pgd_none(*(pud))) && __pmd_alloc(mm, pud, address))? NULL: pmd_offset(pud, address))
26 #define pud_alloc(mm, pgd, address) (pgd)
  /development/ndk/platforms/android-3/include/asm-generic/
4level-fixup.h 24 #define pmd_alloc(mm, pud, address) ((unlikely(pgd_none(*(pud))) && __pmd_alloc(mm, pud, address))? NULL: pmd_offset(pud, address))
26 #define pud_alloc(mm, pgd, address) (pgd)
  /external/chromium/googleurl/src/
url_canon_ip.h 40 // Searches the host name for the portions of the IPv4 address. On success,
42 // It will return false if the host can not be separated as an IPv4 address
44 // be in an IP address. (This is important so we fail as early as possible for
52 // address. IE6 is included in this. We do NOT handle this case. In many cases,
56 // notice these spaces and escape them, which will make IP address finding
65 // Converts an IPv4 address to a 32-bit number (network byte order).
68 // IPV4 - IPv4 address was successfully parsed.
69 // BROKEN - Input was formatted like an IPv4 address, but overflow occurred
71 // NEUTRAL - Input couldn't possibly be interpreted as an IPv4 address.
72 // It might be an IPv6 address, or a hostname
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
addrcache.cc 16 // Implementation of the Address Cache and Address Encoding
105 // This method will be called whenever an address is calculated for an
114 // address: This must be a valid address between 0 and
118 void VCDiffAddressCache::UpdateCache(VCDAddress address) {
120 near_addresses_[next_slot_] = address;
124 same_addresses_[address % (same_cache_size_ * 256)] = address;
128 // Determines the address mode that yields the most compact encodin
    [all...]
  /external/kernel-headers/original/asm-generic/
4level-fixup.h 13 #define pmd_alloc(mm, pud, address) \
14 ((unlikely(pgd_none(*(pud))) && __pmd_alloc(mm, pud, address))? \
15 NULL: pmd_offset(pud, address))
17 #define pud_alloc(mm, pgd, address) (pgd)
  /external/nist-sip/java/gov/nist/core/net/
AddressResolver.java 31 import javax.sip.address.Hop;
34 * An interface that allows you to customize address lookup.
37 * The default implementation of the address resolver does nothing more than just return back
53 * Do a name lookup and resolve the given IP address.
57 * @param hop - an incoming Hop containing a potenitally unresolved address.
58 * @return a new hop ( if the address is recomputed ) or the original hop
  /external/nist-sip/java/javax/sip/address/
URI.java 1 package javax.sip.address;
  /external/nist-sip/java/javax/sip/header/
AlertInfoHeader.java 3 import javax.sip.address.URI;
WWWAuthenticateHeader.java 3 import javax.sip.address.URI;
  /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);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm-generic/
4level-fixup.h 24 #define pmd_alloc(mm, pud, address) ((unlikely(pgd_none(*(pud))) && __pmd_alloc(mm, pud, address))? NULL: pmd_offset(pud, address))
26 #define pud_alloc(mm, pgd, address) (pgd)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/asm-generic/
4level-fixup.h 24 #define pmd_alloc(mm, pud, address) ((unlikely(pgd_none(*(pud))) && __pmd_alloc(mm, pud, address))? NULL: pmd_offset(pud, address))
26 #define pud_alloc(mm, pgd, address) (pgd)

Completed in 1153 milliseconds

1 2 34 5 6 7 8 91011>>