HomeSort by relevance Sort by last modified time
    Searched full:addresses (Results 1 - 25 of 1446) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
package.html 2 Parsers for SIP Headers, URL's and addresses.
  /external/chromium/net/base/
fixed_host_resolver.cc 33 AddressList* addresses,
40 DCHECK(addresses);
41 addresses->Copy(address_.head());
42 addresses->SetPort(info.port());
fixed_host_resolver.h 15 // A FixedHostResolver resolves all addresses to a single address.
24 AddressList* addresses,
  /external/qemu/slirp-android/
ctl.h 5 /* NOTE: DNS_ADDR_MAX addresses, starting from CTL_DNS, are reserved */
  /packages/apps/Email/src/com/android/email/mail/
Address.java 114 * This method is used to check that all the addresses that the user
134 * Parse a comma-delimited list of addresses in RFC822 format and return an
138 * @return An array of 0 or more Addresses.
145 ArrayList<Address> addresses = new ArrayList<Address>(); local
155 addresses.add(new Address(address, name));
159 return addresses.toArray(new Address[] {});
217 * @param addresses Address array
220 public static String toString(Address[] addresses) {
221 if (addresses == null || addresses.length == 0)
351 ArrayList<Address> addresses = new ArrayList<Address>(); local
449 ArrayList<Address> addresses = new ArrayList<Address>(); local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
AddressList.java 35 private ArrayList addresses; field in class:AddressList
38 * @param addresses An ArrayList that contains only Address objects.
39 * @param dontCopy true iff it is not possible for the addresses ArrayList to be modified by someone else.
41 public AddressList(ArrayList addresses, boolean dontCopy) {
42 if (addresses != null)
43 this.addresses = (dontCopy ? addresses : (ArrayList) addresses.clone());
45 this.addresses = new ArrayList(0);
52 return addresses.size();
    [all...]
  /external/iptables/extensions/
libipt_NETMAP.man 1 This target allows you to statically map a whole network of addresses onto
2 another network of addresses. It can only be used from rules in the
libipt_SAME.man 1 Similar to SNAT/DNAT depending on chain: it takes a range of addresses
6 Addresses to map source to. May be specified more than once for
libipt_iprange.man 1 This matches on a given arbitrary range of IPv4 addresses
libip6t_rt.man 16 Match type=0 addresses (list).
19 List of type=0 addresses is not a strict list.
  /packages/apps/Email/tests/src/com/android/email/mail/
AddressUnitTests.java 246 Address[] addresses = Address.parse("address1@dom1.net, <address2@dom2.com>"); local
247 assertEquals("address count", 2, addresses.length);
249 assertEquals("bare address", "address1@dom1.net", addresses[0].getAddress());
250 assertNull("bare address name", addresses[0].getPersonal());
252 assertEquals("bracket address", "address2@dom2.com", addresses[1].getAddress());
253 assertNull("bracket address name", addresses[1].getPersonal());
260 Address[] addresses = Address.parse( local
263 assertEquals("address count", 2, addresses.length);
265 assertEquals("bare name address", "address1@dom1.net", addresses[0].getAddress());
266 assertEquals("bare name", "name 1", addresses[0].getPersonal())
276 Address[] addresses = Address.parse( local
295 Address[] addresses = Address.parse( local
314 Address[] addresses = Address.parse(MULTI_ADDRESSES_LIST); local
344 Address[] addresses = Address.parse(MULTI_ADDRESSES_LIST); local
368 Address[] addresses = Address.parse(MULTI_ADDRESSES_LIST); local
390 Address[] addresses = Address.parse( local
470 Address[] addresses = new Address[] { local
    [all...]
  /external/webkit/WebCore/platform/network/win/
NetworkStateNotifierWin.cpp 49 PIP_ADAPTER_ADDRESSES addresses = reinterpret_cast<PIP_ADAPTER_ADDRESSES>(buffer.data()); local
51 if (::GetAdaptersAddresses(AF_UNSPEC, 0, 0, addresses, &size) != ERROR_SUCCESS) {
56 for (; addresses; addresses = addresses->Next) {
57 if (addresses->IfType == MIB_IF_TYPE_LOOPBACK)
60 if (addresses->OperStatus != IfOperStatusUp)
  /dalvik/dx/src/com/android/dx/dex/code/
StdCatchBuilder.java 45 private final BlockAddresses addresses; field in class:StdCatchBuilder
53 * @param addresses {@code non-null;} address objects for each block
56 BlockAddresses addresses) {
65 if (addresses == null) {
66 throw new NullPointerException("addresses == null");
71 this.addresses = addresses;
76 return build(method, order, addresses);
119 * @param addresses {@code non-null;} address objects for each block
123 BlockAddresses addresses) {
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
simple.js 1 // PAC script which uses isInNet on both IP addresses and hosts, and calls
  /external/ipsec-tools/src/racoon/samples/
psk.txt.sample 1 # IPv4/v6 addresses
psk.txt.in 1 # IPv4/v6 addresses
  /libcore/luni/src/main/java/java/net/
AddressCache.java 50 // The addresses. May be the empty array for a negative cache entry.
51 InetAddress[] addresses; field in class:AddressCache.AddressCacheEntry
61 AddressCacheEntry(InetAddress[] addresses, long expiryNanos) {
62 this.addresses = addresses;
80 * Returns the cached addresses associated with 'hostname'. Returns null if nothing is known
90 return entry.addresses;
98 * Associates the given 'addresses' with 'hostname'. The association will expire after a
101 public void put(String hostname, InetAddress[] addresses) {
103 boolean isPositive = (addresses.length > 0)
    [all...]
NetworkInterface.java 45 private final List<InetAddress> addresses = new LinkedList<InetAddress>(); field in class:NetworkInterface
71 ni.addresses.add(ia.address);
88 * @param addresses
89 * the Internet addresses associated with the interface.
94 NetworkInterface(String name, String displayName, InetAddress[] addresses,
99 if (addresses != null) {
100 for (InetAddress address : addresses) {
101 this.addresses.add(address);
118 * natives when we need one of the addresses for the interface and any one
124 if (addresses.size() >= 1)
    [all...]
Inet4Address.java 48 * Valid IPv4 multicast addresses are prefixed with 1110 = 0xE.
77 * Loopback IPv4 addresses are prefixed with: 011111111 = 127.
92 * IPv4 auto-configuration addresses, prefix 169.254/16, IPv4 loopback
93 * addresses, prefix 127/8, are assigned link-local scope.
101 // addresses even though RFC 3484 says to do so
110 * IPv4 private addresses, prefixes 10/8, 172.16/12, and 192.168/16, are
126 * MCGlobal IPv4 addresses are 224.0.1.0 - 238.255.255.255.
165 * addresses.
167 * @return {@code false} for all IPv4 addresses.
176 * valid range for IPv4 link-local addresses is: 224.0.0.0 to 239.0.0.25
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PChargingFunctionAddresses.java 47 * <p>P-Charging-Function-Addresses SIP Private Header. </p>
51 * P-Charging-Addr = "P-Charging-Function-Addresses" HCOLON
61 * <p>P-Charging-Function-Addresses: ccf=192.1.1.1; ccf=192.1.1.2;
65 * eg: P-Charging-Function-Addresses: ccf=[5555.b99.c88.d77.e66]; ecf=[5555.6aa.7bb.8cc.9dd] </p>
114 + "P-Charging-Function-Addresses, setChargingCollectionFunctionAddress(), the ccfAddress parameter is null.");
132 + "P-Charging-Function-Addresses, setChargingCollectionFunctionAddress(), the ccfAddress parameter is null.");
149 + "P-Charging-Function-Addresses, setChargingCollectionFunctionAddress(), the ccfAddress parameter is null.");
160 * <p>Get all the Charging Collection Function (CCF) Addresses set in this header</p>
162 * @return ListIterator that constains all CCF addresses of this header
197 + "P-Charging-Function-Addresses, setEventChargingFunctionAddress(), the ecfAddress parameter is null.")
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
ebt_among.h 15 * In real-world ethernet addresses, values of the last byte are
21 * This pair of integers is compared with MAC addresses in the
26 * of 3 first bytes. So first we compare 4 last bytes of addresses and
  /external/bluetooth/glib/
MAINTAINERS 10 are technically maintained by others. The email addresses listed above are
  /external/chromium/base/
debug_util.cc 21 const void *const *StackTrace::Addresses(size_t* count) {
  /external/dhcpcd/dhcpcd-hooks/
20-dns.conf 2 # DNS server addresses given by the DHCP server.
  /external/kernel-headers/original/asm-arm/
scatterlist.h 16 * to get bus addresses of each of the SG entries and their lengths.

Completed in 522 milliseconds

1 2 3 4 5 6 7 8 91011>>