/external/iproute2/include/linux/ |
if_addrlabel.h | 2 * if_addrlabel.h - netlink interface for address labels 16 __u8 ifal_family; /* Address family */
|
/external/valgrind/main/memcheck/tests/ |
buflen_check.stderr.exp | 3 Address 0x........ is not stack'd, malloc'd or (recently) free'd 7 Address 0x........ is not stack'd, malloc'd or (recently) free'd
|
/libcore/dom/src/test/resources/ |
nodtdstaff.svg | 9 <address domestic="Yes">1230 North Ave. Dallas, Texas 98551</address>
|
/libcore/luni/src/main/java/libcore/icu/ |
NativePluralRules.java | 35 private final int address; field in class:NativePluralRules 37 private NativePluralRules(int address) { 38 this.address = address; 43 finalizeImpl(address); 58 return quantityForIntImpl(address, value); 61 private static native void finalizeImpl(int address); 63 private static native int quantityForIntImpl(int address, int value);
|
/external/bluetooth/bluez/doc/ |
oob-api.txt | 21 void AddRemoteData(string address, array{byte} hash, 25 specified address. If data for specified address 31 void RemoveRemoteData(string address) 34 address. If data for specified address does not exist
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/mappy/ |
popup.html | 17 function gclient_geocode(address) { 19 geocoder.getLatLng(address, function(point) { 21 console.log(address + " not found"); 34 var address = chrome.extension.getBackgroundPage().selectedAddress; 35 if (address) 36 gclient_geocode(address);
|
/external/chromium/net/data/cache_tests/list_loop/ |
contents.txt | 10 Address: 0xa0010007 11 Address: 0xa0010003 12 Address: 0xa001000b 13 Address: 0xa001000a 14 Address: 0xa0010009 15 Address: 0xa0010006 16 Address: 0xa0010005 17 Address: 0xa0010002 23 Address: 0xa0010007 34 Address: 0x9000000 [all...] |
/external/chromium/net/udp/ |
udp_client_socket.cc | 20 int UDPClientSocket::Connect(const IPEndPoint& address) { 21 return socket_.Connect(address); 40 int UDPClientSocket::GetPeerAddress(IPEndPoint* address) const { 41 return socket_.GetPeerAddress(address); 44 int UDPClientSocket::GetLocalAddress(IPEndPoint* address) const { 45 return socket_.GetLocalAddress(address);
|
/external/kernel-headers/original/linux/ |
etherdevice.h | 51 * is_zero_ether_addr - Determine if give Ethernet address is all zeros. 52 * @addr: Pointer to a six-byte array containing the Ethernet address 54 * Return true if the address is all zeroes. 62 * is_multicast_ether_addr - Determine if the Ethernet address is a multicast. 63 * @addr: Pointer to a six-byte array containing the Ethernet address 65 * Return true if the address is a multicast address. 66 * By definition the broadcast address is also a multicast address. 74 * is_broadcast_ether_addr - Determine if the Ethernet address is broadcas [all...] |
/external/nist-sip/java/gov/nist/core/net/ |
NetworkLayer.java | 49 * Creates a server with the specified port, listen backlog, and local IP address to bind to. 61 * Creates an SSL server with the specified port, listen backlog, and local IP address to bind to. 73 * Creates a stream socket and connects it to the specified port number at the specified IP address. 74 * comparable to "new java.net.Socket(address, port);" 76 * @param address 80 public Socket createSocket(InetAddress address, int port) throws IOException; 83 * Creates a stream socket and connects it to the specified port number at the specified IP address. 84 * comparable to "new java.net.Socket(address, port,localaddress);" 86 * @param address 91 public Socket createSocket(InetAddress address, int port, InetAddress localAddress) throws IOException [all...] |
/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);
|
/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);
|
Builder.java | 20 package org.apache.james.mime4j.field.address;
26 import org.apache.james.mime4j.field.address.parser.ASTaddr_spec;
27 import org.apache.james.mime4j.field.address.parser.ASTaddress;
28 import org.apache.james.mime4j.field.address.parser.ASTaddress_list;
29 import org.apache.james.mime4j.field.address.parser.ASTangle_addr;
30 import org.apache.james.mime4j.field.address.parser.ASTdomain;
31 import org.apache.james.mime4j.field.address.parser.ASTgroup_body;
32 import org.apache.james.mime4j.field.address.parser.ASTlocal_part;
33 import org.apache.james.mime4j.field.address.parser.ASTmailbox;
34 import org.apache.james.mime4j.field.address.parser.ASTname_addr; 61 Address address = buildAddress(childNode); local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
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...] |
To.java | 32 import gov.nist.javax.sip.address.AddressImpl; 70 setAddress(from.address); 94 if (address != null) { 95 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 98 address.encode(buffer); 99 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 112 * Conveniance accessor function to get the hostPort field from the address. 118 if (address == null) 120 return address.getHostPort(); 124 * Get the display name from the address [all...] |
/external/qemu/memcheck/ |
memcheck_api.h | 43 * array is used to obtain guest PC address from a translated PC address. 52 /* Checks if given address range in the context of the current process is 55 * addr - Starting address of a range. 58 * boolean: 1 if address range contains memory that requires access 59 * violation detection, or 0 if given address range is in no interest to 65 * addr - Virtual address in the guest space where memory is read. 67 * retaddr - Code address (in TB) that accesses memory. 69 * 1 Address should be invalidated in TLB cache, in order to ensure that 79 * addr - Virtual address in the guest space where memory is written [all...] |
/libcore/luni/src/main/java/java/net/ |
InetAddress.java | 45 * An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and 53 * <h4>IPv4 numeric address formats</h4> 59 * <h4>IPv6 numeric address formats</h4> 65 * hexadecimal values of the eight 16-bit pieces of the address. 79 * The "::" can only appear once in an address. The "::" can also be 80 * used to compress the leading and/or trailing zeros in an address. 84 * 1080:0:0:0:8:800:200C:417A a unicast address 85 * FF01:0:0:0:0:0:0:101 a multicast address [all...] |
/external/chromium/chrome/browser/resources/options/ |
autofill_edit_address_overlay.js | 9 // The GUID of the loaded address. 20 'autofill-edit-address-overlay'); 37 $('autofill-edit-address-cancel-button').onclick = function(event) { 40 $('autofill-edit-address-apply-button').onclick = function(event) { 113 var address = new Array(); 114 address[0] = this.guid; 116 address[1] = list.dataModel.slice(0, list.dataModel.length - 1); 117 address[2] = $('company-name').value; 118 address[3] = $('addr-line-1').value; 119 address[4] = $('addr-line-2').value [all...] |
/bionic/libc/kernel/arch-x86/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...] |
/development/ndk/platforms/android-9/arch-x86/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...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ims/ |
PAssociatedURI.java | 37 import gov.nist.javax.sip.address.AddressImpl; 38 import gov.nist.javax.sip.address.GenericURI; 39 import javax.sip.address.URI; 48 * has allocated to a user for his own usage (address-of-record). </p> 81 * @param address to be set in the header 83 public PAssociatedURI(AddressImpl address) 86 this.address = address; 91 * @param associatedURI - GenericURI to be set in the address of this header 96 this.address = new AddressImpl() [all...] |
/prebuilt/ndk/android-ndk-r4/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...] |
/prebuilt/ndk/android-ndk-r4/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...] |
/prebuilt/ndk/android-ndk-r6/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...] |
/external/llvm/lib/Target/ARM/Disassembler/ |
ARMDisassembler.cpp | 50 uint64_t address, 75 uint64_t address, 107 uint64_t Address, const void *Decoder); 109 unsigned RegNo, uint64_t Address, 112 uint64_t Address, const void *Decoder); 114 uint64_t Address, const void *Decoder); 116 uint64_t Address, const void *Decoder); 118 uint64_t Address, const void *Decoder); 120 uint64_t Address, const void *Decoder); 122 uint64_t Address, const void *Decoder) [all...] |