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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/util/zip/
ZStreamRef.java 34 private volatile long address; field in class:ZStreamRef
35 ZStreamRef (long address) {
36 this.address = address;
39 long address() { method in class:ZStreamRef
40 return address;
44 address = 0;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
thumb-entry.d 2 Entry point address: 0x8001
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
CallbackInfo.java 26 public String address; field in class:CallbackInfo
30 CallbackInfo(String address, int status, int handle) {
31 this.address = address;
36 CallbackInfo(String address, int status) {
37 this.address = address;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-scripts/
empty-address.exp 26 run_dump_test empty-address-1
27 run_dump_test empty-address-2a
28 run_dump_test empty-address-2b
29 run_dump_test empty-address-3a
30 run_dump_test empty-address-3b
31 run_dump_test empty-address-3c
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 22 import android.location.Address;
32 new Address(Locale.ENGLISH);
34 new Address(Locale.FRANCE);
36 new Address(null);
40 Address address = new Address(Locale.GERMAN); local
42 assertEquals(0, address.describeContents());
46 address.setExtras(extras);
48 assertEquals(extras.describeContents(), address.describeContents())
52 Address address = new Address(Locale.ITALY); local
63 Address address = new Address(Locale.JAPAN); local
74 Address address = new Address(Locale.KOREA); local
85 Address address = new Address(Locale.TAIWAN); local
102 Address address = new Address(Locale.SIMPLIFIED_CHINESE); local
113 Address address = new Address(Locale.CHINA); local
131 Address address = new Address(Locale.CHINA); local
149 Address address = new Address(Locale.CHINA); local
160 Address address = new Address(Locale.CHINA); local
171 Address address = new Address(Locale.CHINA); local
182 Address address = new Address(Locale.CHINA); local
193 Address address = new Address(Locale.CHINA); local
204 Address address = new Address(Locale.CHINA); local
216 Address address = new Address(Locale.CHINA); local
251 Address address = new Address(locale); local
263 Address address = new Address(Locale.PRC); local
274 Address address = new Address(Locale.PRC); local
285 Address address = new Address(Locale.PRC); local
296 Address address = new Address(Locale.PRC); local
308 Address address = new Address(locale); local
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
address.hpp 2 // ip/address.hpp
29 * The asio::ip::address class provides the ability to use either IP
36 class address class in namespace:asio::ip
40 ASIO_DECL address();
42 /// Construct an address from an IPv4 address.
43 ASIO_DECL address(const asio::ip::address_v4& ipv4_address);
45 /// Construct an address from an IPv6 address.
46 ASIO_DECL address(const asio::ip::address_v6& ipv6_address)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
AddressHeaderIms.java 33 import javax.sip.address.Address;
35 import gov.nist.javax.sip.address.AddressImpl;
45 protected AddressImpl address; field in class:AddressHeaderIms
48 * get the Address field
49 * @return the imbedded Address
51 public Address getAddress() {
52 return address;
56 * set the Address field
57 * @param address Address to se
    [all...]
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/
EmailAddressTest.java 58 EmailAddress address = EmailAddress.getEmailAddress("test name <test@localhost.com>"); local
59 assertEquals("test name", address.getName());
60 assertEquals("test@localhost.com", address.getAddress());
62 address = EmailAddress.getEmailAddress("\"test name\" <test@localhost.com>");
63 assertEquals("test name", address.getName());
64 assertEquals("test@localhost.com", address.getAddress());
66 address = EmailAddress.getEmailAddress("<test@localhost.com>");
67 assertEquals("", address.getName());
68 assertEquals("test@localhost.com", address.getAddress());
70 address = EmailAddress.getEmailAddress("test@localhost.com")
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
atomic.h 24 static inline size_t AtomicIncrement(size_t* address) {
26 return InterlockedIncrement64(reinterpret_cast<LONGLONG*>(address));
28 return InterlockedIncrement(reinterpret_cast<LONG*>(address));
32 static inline size_t AtomicDecrement(size_t* address) {
34 return InterlockedDecrement64(reinterpret_cast<LONGLONG*>(address));
36 return InterlockedDecrement(reinterpret_cast<LONG*>(address));
44 static inline size_t AtomicIncrement(size_t* address) {
45 return OSAtomicIncrement32Barrier(reinterpret_cast<int32_t*>(address));
48 static inline size_t AtomicDecrement(size_t* address) {
49 return OSAtomicDecrement32Barrier(reinterpret_cast<int32_t*>(address));
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
Alloc.h 12 void MyFree(void *address);
19 void MidFree(void *address);
21 void BigFree(void *address);
26 #define MidFree(address) MyFree(address)
28 #define BigFree(address) MyFree(address)
  /external/lzma/C/
Alloc.h 12 void MyFree(void *address);
19 void MidFree(void *address);
21 void BigFree(void *address);
26 #define MidFree(address) MyFree(address)
28 #define BigFree(address) MyFree(address)
  /system/core/libcutils/
socket_network_client_windows.cpp 38 // First resolve the host and port parameters into a usable network address.
43 struct addrinfo* address = NULL; local
46 if (getaddrinfo(host, port_str, &hints, &address) != 0 || address == NULL) {
47 if (address != NULL) {
48 freeaddrinfo(address);
54 SOCKET sock = socket(address->ai_family, address->ai_socktype,
55 address->ai_protocol);
57 freeaddrinfo(address);
    [all...]
  /libcore/ojluni/src/main/java/java/net/
Inet4Address.java 33 * This class represents an Internet Protocol version 4 (IPv4) address.
37 * <i>RFC&nbsp;1918: Address Allocation for Private Internets</i></a>,
43 * Textual representation of IPv4 address used as input to methods
55 * address.
57 * <p> When a three part address is specified, the last part is
59 * bytes of the network address. This makes the three part address
63 * <p> When a two part address is supplied, the last part is
65 * bytes of the network address. This makes the two part address
131 int address = addr[3] & 0xFF; local
219 int address = holder().getAddress(); local
236 int address = holder().getAddress(); local
283 int address = holder().getAddress(); local
299 int address = holder().getAddress(); local
315 int address = holder().getAddress(); local
329 int address = holder().getAddress(); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
AvrcpMediaRspInterface.java 26 void setAddrPlayerRsp(byte[] address, int rspStatus);
28 void setBrowsedPlayerRsp(byte[] address, int rspStatus, byte depth, int numItems,
31 void mediaPlayerListRsp(byte[] address, int rspStatus, MediaPlayerListRsp rspObj);
33 void folderItemsRsp(byte[] address, int rspStatus, FolderItemsRsp rspObj);
35 void changePathRsp(byte[] address, int rspStatus, int numItems);
37 void getItemAttrRsp(byte[] address, int rspStatus, ItemAttrRsp rspObj);
39 void playItemRsp(byte[] address, int rspStatus);
41 void getTotalNumOfItemsRsp(byte[] address, int rspStatus, int uidCounter, int numItems);
45 void avalPlayerChangedRsp(byte[] address, int type);
  /external/nist-sip/java/gov/nist/javax/sip/address/
RouterExt.java 26 package gov.nist.javax.sip.address;
28 import javax.sip.address.Hop;
29 import javax.sip.address.Router;
  /external/ImageMagick/MagickCore/
memory-private.h 36 #define MagickAssumeAligned(address) \
37 __builtin_assume_aligned((address),CACHE_LINE_SIZE)
39 #define MagickAssumeAligned(address) (address)
42 #define MagickAssumeAligned(address) (address)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
jal-range.l 2 .*:4: Error: jump to misaligned address \(0x1\)
3 .*:6: Error: jump to misaligned address \(0xfffffff\)
4 .*:8: Error: jump to misaligned address \(0x10000003\)
  /device/generic/goldfish/dhcp/common/
utils.cpp 19 std::string addrToStr(in_addr_t address) {
21 if (::inet_ntop(AF_INET, &address, buffer, sizeof(buffer)) == nullptr) {
  /external/nist-sip/java/javax/sip/header/
HeaderAddress.java 3 import javax.sip.address.Address;
6 Address getAddress();
7 void setAddress(Address address);
  /development/tools/bugreport/src/com/android/bugreport/stacks/
LockSnapshot.java 33 public String address; field in class:LockSnapshot
43 this.address = that.address;
55 return this.address == that.address
56 || (this.address != null && that.address != null
57 && this.address.equals(that.address));
63 if (this.address != null)
    [all...]
  /external/google-breakpad/src/google_breakpad/processor/
memory_region.h 52 // The base address of this memory region.
58 // Access to data of various sizes within the memory region. address
60 // defined by its base address and size. The location pointed to by
61 // value is set to the value at address. Byte-swapping is performed
63 // program. Returns true on success. Fails and returns false if address
66 virtual bool GetMemoryAtAddress(uint64_t address, uint8_t* value) const = 0;
67 virtual bool GetMemoryAtAddress(uint64_t address, uint16_t* value) const = 0;
68 virtual bool GetMemoryAtAddress(uint64_t address, uint32_t* value) const = 0;
69 virtual bool GetMemoryAtAddress(uint64_t address, uint64_t* value) const = 0;
  /system/core/base/include/android-base/
memory.h 27 static inline T get_unaligned(const void* address) {
29 memcpy(&result, address, sizeof(T));
34 static inline void put_unaligned(void* address, T v) {
35 memcpy(address, &v, sizeof(T));
  /system/core/base/
parsenetaddress.cpp 27 bool ParseNetAddress(const std::string& address, std::string* host, int* port,
33 size_t colons = std::count(address.begin(), address.end(), ':');
34 size_t dots = std::count(address.begin(), address.end(), '.');
36 if (address[0] == '[') {
38 if (address.rfind("]:") == std::string::npos) {
39 *error = StringPrintf("bad IPv6 address '%s'", address.c_str());
42 *host = address.substr(1, (address.find("]:") - 1))
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/Common/
AmdStyxAcpiLib.h 54 #define AMD_GAS8(address) {EFI_ACPI_5_1_SYSTEM_MEMORY, 8, 0, EFI_ACPI_5_1_BYTE, address}
55 #define AMD_GAS16(address) {EFI_ACPI_5_1_SYSTEM_MEMORY, 16, 0, EFI_ACPI_5_1_WORD, address}
56 #define AMD_GAS32(address) {EFI_ACPI_5_1_SYSTEM_MEMORY, 32, 0, EFI_ACPI_5_1_DWORD, address}
57 #define AMD_GAS64(address) {EFI_ACPI_5_1_SYSTEM_MEMORY, 64, 0, EFI_ACPI_5_1_QWORD, address}
58 #define AMD_GASN(address) AMD_GAS32(address)
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
NativeBuffer.java 38 private final long address; field in class:NativeBuffer
47 private final long address; field in class:NativeBuffer.Deallocator
48 Deallocator(long address) {
49 this.address = address;
52 unsafe.freeMemory(address);
57 this.address = unsafe.allocateMemory(size);
59 this.cleaner = Cleaner.create(this, new Deallocator(address));
66 long address() { method in class:NativeBuffer
67 return address;
    [all...]

Completed in 827 milliseconds

1 2 3 4 5 6 7 8 91011>>