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

1 23 4 5 6 7 8 91011>>

  /external/syslinux/gpxe/src/include/gpxe/
nvs.h 40 * @v address Address from which to read
47 int ( * read ) ( struct nvs_device *nvs, unsigned int address,
52 * @v address Address to which to write
59 int ( * write ) ( struct nvs_device *nvs, unsigned int address,
63 extern int nvs_read ( struct nvs_device *nvs, unsigned int address,
65 extern int nvs_write ( struct nvs_device *nvs, unsigned int address,
  /libcore/luni/src/main/java/java/nio/
NIOAccess.java 34 long address = b.address; local
35 if (address == 0L) {
38 return address + (b.position << b._elementSizeShift);
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-scripts/
empty-address-3c.d 1 #source: empty-address-3.s
2 #ld: -T empty-address-3c.t
  /device/generic/goldfish/wifi/ipv6proxy/
router.h 30 // Indicate that |address| is a neighbor to this node and that it is
32 bool addNeighbor(const struct in6_addr& address, uint32_t interfaceIndex);
34 // Add a route to |address|/|bits| on interface |interfaceIndex|. The
35 // |bits| parameter indicates the bitmask of the address, for example in
37 bool addRoute(const struct in6_addr& address,
41 // Set the default gateway route to |address| on interface with index
43 // address.
44 bool setDefaultGateway(const struct in6_addr& address,
  /external/autotest/server/site_tests/bluetooth_Sanity_ValidAddress/
bluetooth_Sanity_ValidAddress.py 13 Verify that the client Bluetooth adapter has a valid address.
22 # Read the address both via BlueZ and via the kernel mgmt_ops interface.
27 if bluez_properties['Address'] != controller_info[0]:
29 'BlueZ and Kernel adapter address differ: %s != %s' %
30 (bluez_properties['Address'], controller_info[0]))
32 address = controller_info[0]
33 logging.debug('Bluetooth address of adapter is %s', address)
35 # Sanity check the address
36 if address == '00:00:00:00:00:00'
    [all...]
  /external/elfutils/libdw/
dwarf_cfi_addrframe.c 36 dwarf_cfi_addrframe (Dwarf_CFI *cache, Dwarf_Addr address, Dwarf_Frame **frame)
42 struct dwarf_fde *fde = __libdw_find_fde (cache, address);
46 int error = __libdw_frame_at_address (cache, fde, address, frame);
  /external/protobuf/java/core/src/stubs/sun/misc/
Unsafe.java 38 public byte getByte(long address) { /* null implementation */ return 0; }
41 public long getLong(long address) { /* null implementation */ return 0; }
44 public void putByte(long address, byte x) { /* null implmentation */ }
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsAddress.java 31 public String address; field in class:SmsAddress
35 * Returns the address of the SMS message in String form or null if unavailable
38 return address;
42 * Returns true if this is an alphanumeric address
49 * Returns true if this is a network address
59 // So we just attempt to treat any message from an address length <= 4
62 return address.length() <= 4;
  /libcore/ojluni/src/main/java/sun/nio/ch/
DatagramDispatcher.java 40 int read(FileDescriptor fd, long address, int len) throws IOException {
42 return read0(fd, address, len);
45 long readv(FileDescriptor fd, long address, int len) throws IOException {
47 return readv0(fd, address, len);
50 int write(FileDescriptor fd, long address, int len) throws IOException {
52 return write0(fd, address, len);
55 long writev(FileDescriptor fd, long address, int len) throws IOException {
57 return writev0(fd, address, len);
68 static native int read0(FileDescriptor fd, long address, int len)
71 static native long readv0(FileDescriptor fd, long address, int len
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
JniCallbacks.java 48 void sspRequestCallback(byte[] address, byte[] name, int cod, int pairingVariant, int passkey) {
49 mBondStateMachine.sspRequestCallback(address, name, cod, pairingVariant, passkey);
52 void devicePropertyChangedCallback(byte[] address, int[] types, byte[][] val) {
53 mRemoteDevices.devicePropertyChangedCallback(address, types, val);
56 void deviceFoundCallback(byte[] address) {
57 mRemoteDevices.deviceFoundCallback(address);
60 void pinRequestCallback(byte[] address, byte[] name, int cod, boolean min16Digits) {
61 mBondStateMachine.pinRequestCallback(address, name, cod, min16Digits);
64 void bondStateChangeCallback(int status, byte[] address, int newState) {
65 mBondStateMachine.bondStateChangeCallback(status, address, newState)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
BaseNode.java 20 package org.apache.james.mime4j.field.address.parser;
22 import org.apache.james.mime4j.field.address.parser.Node;
23 import org.apache.james.mime4j.field.address.parser.Token;
  /frameworks/base/core/java/android/net/
IpPrefix.java 36 * <li>A starting IP address (IPv4 or IPv6). This is the first IP address of the prefix.
38 * in the IP address, starting from the most significant bit in network byte order, that
50 private final byte[] address; // network byte order field in class:IpPrefix
54 if (address.length != 4 && address.length != 16) {
56 "IpPrefix has " + address.length + " bytes which is neither 4 nor 16");
58 NetworkUtils.maskRawAddress(address, prefixLength);
62 * Constructs a new {@code IpPrefix} from a byte array containing an IPv4 or IPv6 address in
63 * network byte order and a prefix length. Silently truncates the address to the prefix length
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
IPAddress.java 9 * Validate the given IPv4 or IPv6 address.
11 * @param address the IP address as a String.
13 * @return true if a valid address, false otherwise
16 String address)
18 return isValidIPv4(address) || isValidIPv6(address);
22 * Validate the given IPv4 or IPv6 address and netmask.
24 * @param address the IP address as a String
    [all...]
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.export/
address.pass.cpp 18 // constexpr void* address() const noexcept
32 static_assert(c.address() == nullptr, "");
36 ASSERT_NOEXCEPT(c.address());
37 ASSERT_SAME_TYPE(decltype(c.address()), void*);
38 assert(c.address() == nullptr);
43 assert(c.address() == &dummy);
  /external/nist-sip/java/gov/nist/javax/sip/header/
ReferTo.java 33 import gov.nist.javax.sip.address.*;
66 if (address == null)
69 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
72 retval += address.encode();
73 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
105 * CVS: address here. If this is your work then delete this line.
140 * CVS: address here. If this is your work then delete this line.
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.export/
address.pass.cpp 18 // constexpr void* address() const noexcept
32 static_assert(c.address() == nullptr, "");
36 ASSERT_NOEXCEPT(c.address());
37 ASSERT_SAME_TYPE(decltype(c.address()), void*);
38 assert(c.address() == nullptr);
43 assert(c.address() == &dummy);
  /system/bt/include/hardware/
bt_hearing_aid.h 38 const RawAddress& address) = 0;
46 const RawAddress& address) = 0;
57 virtual void Connect(const RawAddress& address) = 0;
60 virtual void Disconnect(const RawAddress& address) = 0;
69 virtual void RemoveDevice(const RawAddress& address) = 0;
  /libcore/ojluni/src/main/java/sun/security/x509/
IPAddressName.java 43 * When the subjectAltName extension contains a iPAddress, the address
47 * address. For IP Version 4, as specified in RFC 791, the octet string
56 * address range.[RFC 1519] For IPv6 addresses, the ipAddress field
71 private byte[] address; field in class:IPAddressName
88 * @params address the IP address
89 * @throws IOException if address is not a valid IPv4 or IPv6 address
91 public IPAddressName(byte[] address) throws IOException {
93 * A valid address must consist of 4 bytes of address an
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetNativeInterface.java 70 private BluetoothDevice getDevice(byte[] address) {
71 return mAdapter.getRemoteDevice(Utils.getAddressStringFromByte(address));
74 void onConnectionStateChanged(int state, byte[] address) {
77 getDevice(address));
83 private void onAudioStateChanged(int state, byte[] address) {
86 getDevice(address));
90 private void onVrStateChanged(int state, byte[] address) {
93 getDevice(address));
97 private void onAnswerCall(byte[] address) {
99 new HeadsetStackEvent(HeadsetStackEvent.EVENT_TYPE_ANSWER_CALL, getDevice(address));
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
SourcePosition.java 24 * line number and original bytecode address.
35 * {@code >= -1;} the bytecode address, or {@code -1} if that
38 private final int address; field in class:SourcePosition
51 * @param address {@code >= -1;} original bytecode address or {@code -1}
56 public SourcePosition(CstUtf8 sourceFile, int address, int line) {
57 if (address < -1) {
58 throw new IllegalArgumentException("address < -1");
66 this.address = address;
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
SourcePosition.java 24 * line number and original bytecode address.
35 * {@code >= -1;} the bytecode address, or {@code -1} if that
38 private final int address; field in class:SourcePosition
51 * @param address {@code >= -1;} original bytecode address or {@code -1}
56 public SourcePosition(CstString sourceFile, int address, int line) {
57 if (address < -1) {
58 throw new IllegalArgumentException("address < -1");
66 this.address = address;
    [all...]
  /external/pdfium/third_party/base/allocator/partition_allocator/
page_allocator.h 50 // The requested address is just a hint; the actual address returned may
51 // differ. The returned address will be aligned at least to align bytes.
55 // If addr is null, then a suitable and randomized address will be chosen
60 BASE_EXPORT void* AllocPages(void* address,
67 BASE_EXPORT void FreePages(void* address, size_t length);
70 // Subsequently accessing any address in the range will fault, and the
73 BASE_EXPORT void SetSystemPagesInaccessible(void* address, size_t length);
81 BASE_EXPORT WARN_UNUSED_RESULT bool SetSystemPagesAccessible(void* address,
85 // is released to the system, but the virtual address space remains reserved
    [all...]
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
School.java 29 public Address address; field in class:School
42 public Address getAddress() {
43 return address;
46 public void setAddress(Address address) {
47 this.address = address;
81 if (address != null ? !address.equals(school.address) : school.address != null)
    [all...]
  /libcore/ojluni/src/main/java/java/net/
InterfaceAddress.java 29 * This class represents a Network Interface address. In short it's an
30 * IP address, a subnet mask and a broadcast address when the address is
31 * an IPv4 one. An IP address and a network prefix length in the case
32 * of IPv6 address.
38 private InetAddress address = null; field in class:InterfaceAddress
50 InterfaceAddress(InetAddress address, Inet4Address broadcast, InetAddress netmask) {
51 this.address = address;
    [all...]
  /system/bt/types/
raw_address.cc 33 std::copy(addr, addr + kLength, address);
37 return base::StringPrintf("%02x:%02x:%02x:%02x:%02x:%02x", address[0],
38 address[1], address[2], address[3], address[4],
39 address[5]);
57 new_addr.address[i] = strtol(token.c_str(), &temp, 16);
66 std::copy(from, from + kLength, address);
70 bool RawAddress::IsValidAddress(const std::string& address) {
    [all...]

Completed in 825 milliseconds

1 23 4 5 6 7 8 91011>>