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

1 2 3 4 5 6 7 8 91011>>

  /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...]
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...]
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) {
  /libcore/luni/src/main/java/org/apache/harmony/luni/platform/
OSMemory.java 19 // address length was changed from long to int for performance reasons.
48 * @return the address of the start of the memory block.
58 * allocated. If <code>address</code> is zero the method does nothing.
64 * @param address
65 * the address of the memory block to deallocate.
67 public static native void free(int address);
71 * memory block starting at <code>address</code>.
74 * <code>(address ... address + length)</code> is not wholly within the
78 * @param address
    [all...]
  /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;
AddressImpl.java 29 package gov.nist.javax.sip.address;
31 import javax.sip.address.*;
37 * Address structure. Imbeds a URI and adds a display name.
48 implements javax.sip.address.Address {
71 /** address field
73 protected GenericURI address; field in class:AddressImpl
75 /** Match on the address only.
83 if (!(other instanceof Address))
92 return address.match(that.address)
    [all...]
SipURIExt.java 1 package gov.nist.javax.sip.address;
3 import javax.sip.address.SipURI;
  /external/nist-sip/java/javax/sip/header/
HeaderAddress.java 3 import javax.sip.address.Address;
6 Address getAddress();
7 void setAddress(Address 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);
  /frameworks/base/core/java/android/bluetooth/
IBluetooth.aidl 49 boolean createBond(in String address);
50 boolean createBondOutOfBand(in String address, in byte[] hash, in byte[] randomizer);
51 boolean cancelBondProcess(in String address);
52 boolean removeBond(in String address);
54 int getBondState(in String address);
55 boolean setDeviceOutOfBandData(in String address, in byte[] hash, in byte[] randomizer);
57 String getRemoteName(in String address);
58 int getRemoteClass(in String address);
59 ParcelUuid[] getRemoteUuids(in String address);
60 boolean fetchRemoteUuids(in String address, in ParcelUuid uuid, in IBluetoothCallback callback)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
ReplyTo.java 32 import gov.nist.javax.sip.address.*;
61 /** Default constructor given an address.
63 *@param address -- address of this header.
66 public ReplyTo(AddressImpl address) {
68 this.address = address;
85 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
88 retval += address.encode();
89 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC)
    [all...]
Route.java 31 import gov.nist.javax.sip.address.AddressImpl;
59 /** Default constructor given an address.
61 *@param address -- address of this header.
65 public Route(AddressImpl address) {
67 this.address = address;
73 *@return the hashcode of the encoded address.
76 return this.address.getHostPort().encode().toLowerCase().hashCode();
91 boolean addrFlag = address.getAddressType() == AddressImpl.NAME_ADDR
    [all...]
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.
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) {
  /libcore/luni/src/main/java/java/net/
InterfaceAddress.java 28 * The kernel's interface index for the network interface this address
40 * An IPv4 or IPv6 address.
42 final InetAddress address; field in class:InterfaceAddress
45 * The IPv4 broadcast address, or null for IPv6.
51 InterfaceAddress(int index, String name, InetAddress address, InetAddress mask) {
52 assert ((address instanceof Inet4Address) == (mask instanceof Inet4Address));
55 this.address = address;
56 this.broadcastAddress = makeBroadcastAddress(address, mask);
60 private static InetAddress makeBroadcastAddress(InetAddress address, InetAddress mask)
    [all...]
Proxy.java 20 * Proxy} stores a type and an address and is immutable. There are three types
31 * protocol handlers that there is no proxy to be used. The address is set
38 private SocketAddress address; field in class:Proxy
50 * the proxy address of this instance.
65 address = sa;
74 address = null;
87 * Gets the address of this {@code Proxy} instance.
89 * @return the stored proxy address or {@code null} if the proxy type is
92 public SocketAddress address() { method in class:Proxy
93 return address;
    [all...]
  /libcore/luni/src/main/java/com/ibm/icu4jni/text/
NativeCollation.java 55 * @param collatoraddress address of the c collator
77 * @param collatoraddress the address of the C collator
88 * @param collatoraddress the address of the C collator
97 * @param collatoraddress address of the C collator
106 * @param collatoraddress address of the C collator
114 * @param collatoraddress address of the C collator
124 * @param collatoraddress address of the C collator
134 * @param collatoraddress address of C collator to be cloned
135 * @return address of the new clone
145 * @param collatoraddress address of C collato
    [all...]
  /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;
  /packages/apps/Email/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;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
NativeLibraryMapInfo.java 20 * Memory address to library mapping for native libraries.
32 * @param startAddr The start address of the library.
33 * @param endAddr The end address of the library.
50 * Returns the start address of the library.
57 * Returns the end address of the library.
64 * Returns whether the specified address is inside the library.
65 * @param address The address to test.
66 * @return <code>true</code> if the address is between the start and end address of the library
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 22 import android.location.Address;
35 @TestTargetClass(Address.class)
40 method = "Address",
44 new Address(Locale.ENGLISH);
46 new Address(Locale.FRANCE);
48 new Address(null);
58 Address address = new Address(Locale.GERMAN); local
60 assertEquals(0, address.describeContents())
84 Address address = new Address(Locale.ITALY); local
109 Address address = new Address(Locale.JAPAN); local
134 Address address = new Address(Locale.KOREA); local
159 Address address = new Address(Locale.TAIWAN); local
190 Address address = new Address(Locale.SIMPLIFIED_CHINESE); local
227 Address address = new Address(Locale.CHINA); local
271 Address address = new Address(Locale.CHINA); local
305 Address address = new Address(Locale.CHINA); local
330 Address address = new Address(Locale.CHINA); local
355 Address address = new Address(Locale.CHINA); local
380 Address address = new Address(Locale.CHINA); local
405 Address address = new Address(Locale.CHINA); local
422 Address address = new Address(Locale.CHINA); local
454 Address address = new Address(Locale.CHINA); local
495 Address address = new Address(locale); local
521 Address address = new Address(Locale.PRC); local
539 Address address = new Address(locale); local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/util/
IPAddress.java 6 * Validate the given IPv4 or IPv6 address.
8 * @param address the IP address as a String.
10 * @return true if a valid address, false otherwise
13 String address)
15 return isValidIPv4(address) || isValidIPv6(address);
19 * Validate the given IPv4 or IPv6 address and netmask.
21 * @param address the IP address as a String
    [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(CstUtf8 sourceFile, int address, int line) {
57 if (address < -1) {
58 throw new IllegalArgumentException("address < -1");
66 this.address = address;
    [all...]
  /frameworks/base/voip/jni/rtp/
util.cpp 28 jniThrowNullPointerException(env, "address");
35 const char *address = env->GetStringUTFChars(jAddress, NULL); local
36 if (!address) {
43 if (inet_pton(AF_INET, address, &(sin->sin_addr)) > 0) {
46 env->ReleaseStringUTFChars(jAddress, address);
51 if (inet_pton(AF_INET6, address, &(sin6->sin6_addr)) > 0) {
54 env->ReleaseStringUTFChars(jAddress, address);
58 env->ReleaseStringUTFChars(jAddress, address);
59 jniThrowException(env, "java/lang/IllegalArgumentException", "address");

Completed in 1132 milliseconds

1 2 3 4 5 6 7 8 91011>>