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

1 2 3 4 5 6 78 91011>>

  /frameworks/base/core/java/android/bluetooth/
IBluetoothGatt.aidl 38 void clientConnect(in int clientIf, in String address, in boolean isDirect);
39 void clientDisconnect(in int clientIf, in String address);
40 void refreshDevice(in int clientIf, in String address);
41 void discoverServices(in int clientIf, in String address);
42 void readCharacteristic(in int clientIf, in String address, in int srvcType,
46 void writeCharacteristic(in int clientIf, in String address, in int srvcType,
50 void readDescriptor(in int clientIf, in String address, in int srvcType,
54 void writeDescriptor(in int clientIf, in String address, in int srvcType,
59 void registerForNotification(in int clientIf, in String address, in int srvcType,
63 void beginReliableWrite(in int clientIf, in String address);
    [all...]
IBluetoothGattServerCallback.aidl 27 void onScanResult(in String address, in int rssi, in byte[] advData);
29 in boolean connected, in String address);
32 void onCharacteristicReadRequest(in String address, in int transId,
37 void onDescriptorReadRequest(in String address, in int transId,
43 void onCharacteristicWriteRequest(in String address, in int transId,
51 void onDescriptorWriteRequest(in String address, in int transId,
60 void onExecuteWrite(in String address, in int transId, in boolean execWrite);
  /external/clang/test/SemaCXX/
warn-func-as-bool.cpp 21 b = f1; // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
22 expected-note {{prefix with the address-of operator to silence this warning}}
23 if (f1) {} // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
24 expected-note {{prefix with the address-of operator to silence this warning}}
25 b = S::f2; // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
26 expected-note {{prefix with the address-of operator to silence this warning}}
27 if (S::f2) {} // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
28 expected-note {{prefix with the address-of operator to silence this warning}}
29 b = f5; // expected-warning {{address of function 'f5' will always evaluate to 'true'}} \
30 expected-note {{prefix with the address-of operator to silence this warning}}
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer.h 12 // address. It is an analogue of addr2line utility and allows to map
13 // instruction address to a location in source code at run-time.
34 uptr address; member in struct:__sanitizer::AddressInfo
50 address = addr;
57 uptr address; member in struct:__sanitizer::DataInfo
66 // for a given address (in all inlined functions). Returns the number
69 uptr SymbolizeCode(uptr address, AddressInfo *frames, uptr max_frames);
70 bool SymbolizeData(uptr address, DataInfo *info);
85 bool containsAddress(uptr address) const;
  /external/openssh/openbsd-compat/
xmmap.c 51 void *address; local
54 address = mmap(NULL, size, PROT_WRITE|PROT_READ, MAP_ANON|MAP_SHARED,
57 address = mmap(NULL, size, PROT_WRITE|PROT_READ, MAP_SHARED,
62 if (address == (void *)MAP_FAILED) {
76 address = mmap(NULL, size, PROT_WRITE|PROT_READ, MAP_SHARED,
81 return (address);
  /external/qemu/hw/
pcmcia.h 28 uint8_t (*attr_read)(void *state, uint32_t address);
29 void (*attr_write)(void *state, uint32_t address, uint8_t value);
30 uint16_t (*common_read)(void *state, uint32_t address);
31 void (*common_write)(void *state, uint32_t address, uint16_t value);
32 uint16_t (*io_read)(void *state, uint32_t address);
33 void (*io_write)(void *state, uint32_t address, uint16_t value);
  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocatorWin.cpp 57 void OSAllocator::commit(void* address, size_t bytes, bool writable, bool executable)
59 void* result = VirtualAlloc(address, bytes, MEM_COMMIT, protection(writable, executable));
64 void OSAllocator::decommit(void* address, size_t bytes)
66 bool result = VirtualFree(address, bytes, MEM_DECOMMIT);
71 void OSAllocator::releaseDecommitted(void* address, size_t bytes)
75 bool result = VirtualFree(address, 0, MEM_RELEASE);
  /frameworks/base/core/java/android/hardware/display/
IDisplayManager.aidl 36 void connectWifiDisplay(String address);
42 void renameWifiDisplay(String address, String alias);
45 void forgetWifiDisplay(String address);
  /libcore/luni/src/main/native/
libcore_icu_NativePluralRules.cpp 28 static PluralRules* toPluralRules(jint address) {
29 return reinterpret_cast<PluralRules*>(static_cast<uintptr_t>(address));
32 static void NativePluralRules_finalizeImpl(JNIEnv*, jclass, jint address) {
33 delete toPluralRules(address);
58 static jint NativePluralRules_quantityForIntImpl(JNIEnv*, jclass, jint address, jint value) {
59 UnicodeString keyword = toPluralRules(address)->select(value);
  /bionic/libc/kernel/arch-x86/asm/
pgtable_32.h 151 #define ptep_set_access_flags(vma, address, ptep, entry, dirty) ({ int __changed = !pte_same(*(ptep), entry); if (__changed && dirty) { (ptep)->pte_low = (entry).pte_low; pte_update_defer((vma)->vm_mm, (address), (ptep)); flush_tlb_page(vma, address); } __changed; })
156 #define ptep_clear_flush_young(vma, address, ptep) ({ int __young; __young = ptep_test_and_clear_young((vma), (address), (ptep)); if (__young) flush_tlb_page(vma, address); __young; })
165 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
167 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
    [all...]
  /development/ndk/platforms/android-9/arch-x86/include/asm/
pgtable_32.h 151 #define ptep_set_access_flags(vma, address, ptep, entry, dirty) ({ int __changed = !pte_same(*(ptep), entry); if (__changed && dirty) { (ptep)->pte_low = (entry).pte_low; pte_update_defer((vma)->vm_mm, (address), (ptep)); flush_tlb_page(vma, address); } __changed; })
156 #define ptep_clear_flush_young(vma, address, ptep) ({ int __young; __young = ptep_test_and_clear_young((vma), (address), (ptep)); if (__young) flush_tlb_page(vma, address); __young; })
165 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
167 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
pgtable_32.h 144 #define ptep_set_access_flags(vma, address, ptep, entry, dirty) ({ int __changed = !pte_same(*(ptep), entry); if (__changed && dirty) { (ptep)->pte_low = (entry).pte_low; pte_update_defer((vma)->vm_mm, (address), (ptep)); flush_tlb_page(vma, address); } __changed; })
148 #define ptep_clear_flush_young(vma, address, ptep) ({ int __young; __young = ptep_test_and_clear_young((vma), (address), (ptep)); if (__young) flush_tlb_page(vma, address); __young; })
155 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
157 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
pgtable_32.h 144 #define ptep_set_access_flags(vma, address, ptep, entry, dirty) ({ int __changed = !pte_same(*(ptep), entry); if (__changed && dirty) { (ptep)->pte_low = (entry).pte_low; pte_update_defer((vma)->vm_mm, (address), (ptep)); flush_tlb_page(vma, address); } __changed; })
148 #define ptep_clear_flush_young(vma, address, ptep) ({ int __young; __young = ptep_test_and_clear_young((vma), (address), (ptep)); if (__young) flush_tlb_page(vma, address); __young; })
155 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
157 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
    [all...]
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
pgtable_32.h 144 #define ptep_set_access_flags(vma, address, ptep, entry, dirty) ({ int __changed = !pte_same(*(ptep), entry); if (__changed && dirty) { (ptep)->pte_low = (entry).pte_low; pte_update_defer((vma)->vm_mm, (address), (ptep)); flush_tlb_page(vma, address); } __changed; })
148 #define ptep_clear_flush_young(vma, address, ptep) ({ int __young; __young = ptep_test_and_clear_young((vma), (address), (ptep)); if (__young) flush_tlb_page(vma, address); __young; })
155 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
157 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
pgtable_32.h 144 #define ptep_set_access_flags(vma, address, ptep, entry, dirty) ({ int __changed = !pte_same(*(ptep), entry); if (__changed && dirty) { (ptep)->pte_low = (entry).pte_low; pte_update_defer((vma)->vm_mm, (address), (ptep)); flush_tlb_page(vma, address); } __changed; })
148 #define ptep_clear_flush_young(vma, address, ptep) ({ int __young; __young = ptep_test_and_clear_young((vma), (address), (ptep)); if (__young) flush_tlb_page(vma, address); __young; })
155 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
157 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
    [all...]
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
pgtable_32.h 144 #define ptep_set_access_flags(vma, address, ptep, entry, dirty) ({ int __changed = !pte_same(*(ptep), entry); if (__changed && dirty) { (ptep)->pte_low = (entry).pte_low; pte_update_defer((vma)->vm_mm, (address), (ptep)); flush_tlb_page(vma, address); } __changed; })
148 #define ptep_clear_flush_young(vma, address, ptep) ({ int __young; __young = ptep_test_and_clear_young((vma), (address), (ptep)); if (__young) flush_tlb_page(vma, address); __young; })
155 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
157 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
    [all...]
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
pgtable_32.h 151 #define ptep_set_access_flags(vma, address, ptep, entry, dirty) ({ int __changed = !pte_same(*(ptep), entry); if (__changed && dirty) { (ptep)->pte_low = (entry).pte_low; pte_update_defer((vma)->vm_mm, (address), (ptep)); flush_tlb_page(vma, address); } __changed; })
156 #define ptep_clear_flush_young(vma, address, ptep) ({ int __young; __young = ptep_test_and_clear_young((vma), (address), (ptep)); if (__young) flush_tlb_page(vma, address); __young; })
165 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
167 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
    [all...]
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
pgtable_32.h 151 #define ptep_set_access_flags(vma, address, ptep, entry, dirty) ({ int __changed = !pte_same(*(ptep), entry); if (__changed && dirty) { (ptep)->pte_low = (entry).pte_low; pte_update_defer((vma)->vm_mm, (address), (ptep)); flush_tlb_page(vma, address); } __changed; })
156 #define ptep_clear_flush_young(vma, address, ptep) ({ int __young; __young = ptep_test_and_clear_young((vma), (address), (ptep)); if (__young) flush_tlb_page(vma, address); __young; })
165 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
167 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
    [all...]
  /external/chromium/net/disk_cache/
storage_block-inl.h 17 Addr address)
18 : data_(NULL), file_(file), address_(address), modified_(false),
20 if (address.num_blocks() > 1)
22 DCHECK(!address.is_initialized() || sizeof(*data_) == address.BlockSize());
46 Addr address) {
52 address_.set_value(address.value());
53 if (address.num_blocks() > 1)
56 DCHECK(sizeof(*data_) == address.BlockSize());
105 template<typename T> const Addr StorageBlock<T>::address() const function in class:disk_cache::StorageBlock
    [all...]
  /external/chromium/net/udp/
udp_socket_libevent.h 28 // Connect the socket to connect with a certain |address|.
30 int Connect(const IPEndPoint& address);
32 // Bind the address/port for this socket to |address|. This is generally
35 int Bind(const IPEndPoint& address);
40 // Copy the remote udp address into |address| and return a network error code.
41 int GetPeerAddress(IPEndPoint* address) const;
43 // Copy the local udp address into |address| and return a network error code
    [all...]
  /external/opencv/cv/src/
cvoptflowhs.cpp 98 int i, j, k, address; local
237 address = 0;
260 II[address].xx = GradX * GradX;
261 II[address].xy = GradX * GradY;
262 II[address].yy = GradY * GradY;
263 II[address].xt = GradX * GradT;
264 II[address].yt = GradY * GradT;
266 II[address].alpha = 1 / (Ilambda + II[address].xx + II[address].yy)
    [all...]
  /frameworks/base/core/java/android/net/
VpnService.java 54 * conflict with each other. The system takes several actions to address
299 * Private method to validate address and prefixLength.
301 private void check(InetAddress address, int prefixLength) {
302 if (address.isLoopbackAddress()) {
303 throw new IllegalArgumentException("Bad address");
305 if (address instanceof Inet4Address) {
309 } else if (address instanceof Inet6Address) {
319 * Add a network address to the VPN interface. Both IPv4 and IPv6
320 * addresses are supported. At least one address must be set before
323 * @throws IllegalArgumentException if the address is invalid
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Memory.java 153 public static native byte peekByte(long address);
154 public static native int peekInt(long address, boolean swap);
155 public static native long peekLong(long address, boolean swap);
156 public static native short peekShort(long address, boolean swap);
158 public static native void peekByteArray(long address, byte[] dst, int dstOffset, int byteCount);
159 public static native void peekCharArray(long address, char[] dst, int dstOffset, int charCount, boolean swap);
160 public static native void peekDoubleArray(long address, double[] dst, int dstOffset, int doubleCount, boolean swap);
161 public static native void peekFloatArray(long address, float[] dst, int dstOffset, int floatCount, boolean swap);
162 public static native void peekIntArray(long address, int[] dst, int dstOffset, int intCount, boolean swap);
163 public static native void peekLongArray(long address, long[] dst, int dstOffset, int longCount, boolean swap)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Contact.java 38 import gov.nist.javax.sip.address.AddressImpl;
109 if (address.getAddressType() == AddressImpl.NAME_ADDR) {
110 address.encode(buffer);
112 // Encoding in canonical form must have <> around address.
114 address.encode(buffer);
140 /** get the address field.
141 * @return Address
143 public javax.sip.address.Address getAddress() {
144 // JAIN-SIP stores the wild card as an address!
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
MultipleAddresses.java 44 private List<Address> addresses = new ArrayList<Address>();
47 * Adds a new address to which the packet is going to be sent or was sent.
50 * @param jid the JID address of the recipient.
53 * @param desc used to specify human-readable information for this address.
54 * @param delivered true when the packet was already delivered to this address.
55 * @param uri used to specify an external system address, such as a sip:, sips:, or im: URI.
59 // Create a new address with the specificed configuration
60 Address address = new Address(type) local
75 Address address = new Address(NO_REPLY); local
90 Address address = (Address) it.next(); local
113 Address address = (Address) i.next(); local
    [all...]

Completed in 960 milliseconds

1 2 3 4 5 6 78 91011>>