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

1 2 34 5 6 7 8 91011>>

  /packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
NativeInterface.java 40 static native boolean connectNative(byte[] address);
42 static native boolean disconnectNative(byte[] address);
44 static native boolean connectAudioNative(byte[] address);
46 static native boolean disconnectAudioNative(byte[] address);
48 static native boolean startVoiceRecognitionNative(byte[] address);
50 static native boolean stopVoiceRecognitionNative(byte[] address);
52 static native boolean setVolumeNative(byte[] address, int volumeType, int volume);
54 static native boolean dialNative(byte[] address, String number);
56 static native boolean dialMemoryNative(byte[] address, int location);
58 static native boolean handleCallActionNative(byte[] address, int action, int index)
    [all...]
  /external/lzma/C/
7zAlloc.c 35 void SzFree(void *p, void *address)
39 if (address != 0)
45 free(address);
63 void SzFreeTemp(void *p, void *address)
67 if (address != 0)
73 HeapFree(GetProcessHeap(), 0, address); local
77 free(address);
  /external/nist-sip/java/gov/nist/javax/sip/header/
RecordRoute.java 31 import gov.nist.javax.sip.address.*;
55 * @param address address to set
57 public RecordRoute(AddressImpl address) {
59 this.address = address;
78 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
81 address.encode(buffer);
82 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
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...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PPreferredIdentity.java 36 import gov.nist.javax.sip.address.AddressImpl;
57 * @param address address to set
59 public PPreferredIdentity(AddressImpl address) {
61 this.address = address;
76 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
79 retval.append(address.encode());
80 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
ServiceRoute.java 35 import gov.nist.javax.sip.address.AddressImpl;
53 * @param address address to set
55 public ServiceRoute(AddressImpl address) {
57 this.address = address;
72 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
75 retval.append(address.encode());
76 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
custom_call_target_registry.h 43 void Register(const std::string& symbol, void* address);
53 explicit RegisterCustomCallTarget(const std::string& name, void* address) {
54 CustomCallTargetRegistry::Global()->Register(name, address);
60 #define REGISTER_CUSTOM_CALL_TARGET_WITH_SYM_HELPER(symbol, address, counter) \
63 reinterpret_cast<void*>(address))
65 #define REGISTER_CUSTOM_CALL_TARGET_WITH_SYM(symbol, address) \
66 REGISTER_CUSTOM_CALL_TARGET_WITH_SYM_HELPER(symbol, address, __COUNTER__)
  /external/valgrind/none/tests/s390x/
cu41.stdout.exp 11 dst address difference: 0 dst len: 1000
15 dst address difference: 0 dst len: 1000
19 dst address difference: 0 dst len: 1000
23 dst address difference: 0 dst len: 1000
27 dst address difference: 0 dst len: 1000
28 src address difference: 0 src len: 0
31 dst address difference: 0 dst len: 1000
32 src address difference: 0 src len: 1
35 dst address difference: 0 dst len: 1000
36 src address difference: 0 src len:
    [all...]
cu21.stdout.exp 11 dst address difference: 0 dst len: 1000
15 dst address difference: 0 dst len: 1000
16 src address difference: 0 src len: 1
19 dst address difference: 0 dst len: 1000
20 src address difference: 0 src len: 1
23 dst address difference: 0 dst len: 1000
24 src address difference: 0 src len: 1
27 dst address difference: 0 dst len: 1000
28 src address difference: 0 src len: 1
31 dst address difference: 0 dst len: 100
    [all...]
cu21_1.stdout.exp 11 dst address difference: 0 dst len: 1000
15 dst address difference: 0 dst len: 1000
16 src address difference: 0 src len: 1
19 dst address difference: 0 dst len: 1000
20 src address difference: 0 src len: 1
23 dst address difference: 0 dst len: 1000
24 src address difference: 0 src len: 1
27 dst address difference: 0 dst len: 1000
28 src address difference: 0 src len: 1
31 dst address difference: 0 dst len: 100
    [all...]
  /system/bt/binder/android/bluetooth/
IBluetoothGattCallback.aidl 28 in boolean connected, in String address);
29 void onPhyUpdate(in String address, in int txPhy, in int rxPhy, in int status);
30 void onPhyRead(in String address, in int txPhy, in int rxPhy, in int status);
31 void onSearchComplete(in String address, in List<BluetoothGattService> services, in int status);
32 void onCharacteristicRead(in String address, in int status, in int handle, in byte[] value);
33 void onCharacteristicWrite(in String address, in int status, in int handle);
34 void onExecuteWrite(in String address, in int status);
35 void onDescriptorRead(in String address, in int status, in int handle, in byte[] value);
36 void onDescriptorWrite(in String address, in int status, in int handle);
37 void onNotify(in String address, in int handle, in byte[] value)
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowGeocoder.java 3 import android.location.Address;
39 public List<Address> getFromLocation(double latitude, double longitude, int maxResults) throws IOException {
46 Address address = makeAddress(); local
47 address.setAddressLine(0, addressLine1);
48 address.setLocality(city);
49 address.setAdminArea(state);
50 address.setPostalCode(zip);
51 address.setCountryCode(countryCode);
52 return oneElementList(address);
65 Address address = makeAddress(); local
73 Address address = new Address(Locale.getDefault()); local
    [all...]
  /external/curl/docs/cmdline-opts/
dns-ipv4-addr.d 2 Arg: <address>
3 Help: IPv4 address to use for DNS requests
9 Tell curl to bind to <ip-address> when making IPv4 DNS requests, so that
10 the DNS requests originate from this address. The argument should be a
11 single IPv4 address.
dns-ipv6-addr.d 2 Arg: <address>
3 Help: IPv6 address to use for DNS requests
9 Tell curl to bind to <ip-address> when making IPv6 DNS requests, so that
10 the DNS requests originate from this address. The argument should be a
11 single IPv6 address.
mail-from.d 2 Arg: <address>
3 Help: Mail from this address
8 Specify a single address that the given mail should get sent from.
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Route.java 28 * <li><strong>IP address:</strong> whether connecting directly to an origin
29 * server or a proxy, opening a socket requires an IP address. The DNS
35 final Address address; field in class:Route
39 public Route(Address address, Proxy proxy, InetSocketAddress inetSocketAddress) {
40 if (address == null) {
41 throw new NullPointerException("address == null");
49 this.address = address;
    [all...]
  /system/bt/btif/src/
btif_hearing_aid.cc 68 const RawAddress& address) override {
69 DVLOG(2) << __func__ << " address: " << address;
71 Unretained(callbacks), state, address));
75 const RawAddress& address) override {
76 DVLOG(2) << __func__ << " address: " << address
81 hiSyncId, address));
84 void Connect(const RawAddress& address) override {
85 DVLOG(2) << __func__ << " address: " << address
    [all...]
  /external/pdfium/third_party/base/allocator/partition_allocator/
page_allocator.cc 29 // On POSIX |mmap| uses a nearby address if the hint address is blocked.
37 // |VirtualAlloc| will fail if allocation at the hint address is blocked.
115 void* AllocPages(void* address,
123 DCHECK(!(reinterpret_cast<uintptr_t>(address) &
127 DCHECK(!(reinterpret_cast<uintptr_t>(address) & align_offset_mask));
129 // If the client passed null as the address, choose a good one.
130 if (!address) {
131 address = GetRandomPageBase();
132 address = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(address)
    [all...]
  /bionic/libc/bionic/
sys_shm.cpp 34 void* shmat(int id, const void* address, int flags) {
36 return reinterpret_cast<void*>(syscall(SYS_shmat, id, address, flags));
40 if (syscall(SYS_ipc, SHMAT, id, flags, &result, address, 0) == -1) {
60 int shmdt(const void* address) {
62 return syscall(SYS_shmdt, address);
64 return syscall(SYS_ipc, SHMDT, 0, 0, 0, address, 0);
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
accept.c 24 @param [in] address Address of a buffer to receive the remote network address.
26 @param [in, out] address_len Address of a buffer containing the Length in bytes
27 of the remote network address buffer. Upon return,
28 contains the length of the remote network address.
38 struct sockaddr * address,
72 address,
103 It returns the remote network address to the caller if requested.
111 @param [in] address Address of a buffer to receive the remote network address.
    [all...]
  /external/google-breakpad/src/common/
stabs_to_module.h 76 bool StartCompilationUnit(const char *name, uint64_t address,
78 bool EndCompilationUnit(uint64_t address);
79 bool StartFunction(const string &name, uint64_t address);
80 bool EndFunction(uint64_t address);
81 bool Line(uint64_t address, const char *name, int number);
82 bool Extern(const string &name, uint64_t address);
105 // their ending address, and their lines' ending addresses.
115 vector<Module::Address> boundaries_;
122 // The base address of the current compilation unit. We use this to
126 Module::Address comp_unit_base_address_
    [all...]
  /external/google-breakpad/src/processor/
address_map-inl.h 30 // address_map-inl.h: Address map implementation.
48 bool AddressMap<AddressType, EntryType>::Store(const AddressType &address,
50 // Ensure that the specified address doesn't conflict with something already
52 if (map_.find(address) != map_.end()) {
53 BPLOG(INFO) << "Store failed, address " << HexString(address) <<
58 map_.insert(MapValue(address, entry));
64 const AddressType &address,
69 // upper_bound gives the first element whose key is greater than address,
70 // but we want the first element whose key is less than or equal to address
    [all...]
  /external/valgrind/none/tests/ppc32/
data-cache-instructions.stdout.exp 1 Passed dcbzl test at aligned address within the test block.
2 Passed dcbzl test at un-aligned (1 modulo block_size) address within the test block.
3 Passed dcbzl test at un-aligned ((block_size - 1) modulo block_size) address within the test block.
  /external/valgrind/none/tests/ppc64/
data-cache-instructions.stdout.exp 1 Passed dcbzl test at aligned address within the test block.
2 Passed dcbzl test at un-aligned (1 modulo block_size) address within the test block.
3 Passed dcbzl test at un-aligned ((block_size - 1) modulo block_size) address within the test block.

Completed in 546 milliseconds

1 2 34 5 6 7 8 91011>>