HomeSort by relevance Sort by last modified time
    Searched refs:address (Results 26 - 50 of 1981) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/address/
SipURIExt.java 1 package gov.nist.javax.sip.address;
3 import javax.sip.address.SipURI;
  /external/nist-sip/java/gov/nist/javax/sip/header/
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) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
PendingAttribute.java 28 public PendingAttribute(final int frequency, final int address) {
30 mAddress = address;
  /external/chromium/net/base/
ip_endpoint.h 16 // An IPEndPoint represents the address of a transport endpoint:
17 // * IP address (either v4 or v6)
23 IPEndPoint(const IPAddressNumber& address, int port);
26 const IPAddressNumber& address() const { return address_; } function in class:net::IPEndPoint
29 // Returns AF_INET or AF_INET6 depending on the type of the address.
33 // |address| is the sockaddr to copy into. Should be at least
36 // size of data in |address| available. On output, it is the size of
37 // the address that was copied into |address|.
39 bool ToSockAddr(struct sockaddr* address, size_t* address_length) const
    [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...]
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) {
  /external/chromium/net/udp/
datagram_server_socket.h 22 // Initialize this socket as a server socket listening at |address|.
24 virtual int Listen(const IPEndPoint& address) = 0;
26 // Read from a socket and receive sender address information.
29 // |address| is a buffer provided by the caller for receiving the sender
30 // address information about the received data. This buffer must be kept
32 // |address_length| is a ptr to the length of the |address| buffer. This
33 // is an input parameter containing the maximum size |address| can hold
34 // and also an output parameter for the size of |address| upon completion.
37 // If ERR_IO_PENDING is returned, the caller must keep |buf|, |address|,
41 IPEndPoint* address,
    [all...]
udp_server_socket.h 26 virtual int Listen(const IPEndPoint& address);
29 IPEndPoint* address,
33 const IPEndPoint& address,
36 virtual int GetPeerAddress(IPEndPoint* address) const;
37 virtual int GetLocalAddress(IPEndPoint* address) const;
  /frameworks/opt/telephony/src/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/Bluetooth/src/com/android/bluetooth/btservice/
JniCallbacks.java 47 void sspRequestCallback(byte[] address, byte[] name, int cod, int pairingVariant,
49 mRemoteDevices.sspRequestCallback(address, name, cod, pairingVariant,
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) {
61 mRemoteDevices.pinRequestCallback(address, name, cod);
64 void bondStateChangeCallback(int status, byte[] address, int newState) {
65 mBondStateMachine.bondStateChangeCallback(status, address, newState)
    [all...]
  /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;
  /external/bouncycastle/bcprov/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/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/chromium/chrome/common/
multi_process_lock_linux.cc 38 struct sockaddr_un address; local
44 COMPILE_ASSERT(sizeof(address.sun_path)
47 memset(&address, 0, sizeof(address));
48 int print_length = snprintf(&address.sun_path[1],
60 address.sun_path[0] = '@';
61 size_t length = SUN_LEN(&address);
65 address.sun_path[0] = 0;
66 address.sun_family = AF_LOCAL;
75 reinterpret_cast<sockaddr *>(&address),
    [all...]
  /external/dexmaker/src/dx/java/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...]
  /libcore/luni/src/main/java/java/net/
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/java/nio/
MemoryBlock.java 34 private MemoryMappedBlock(long address, long byteCount) {
35 super(address, byteCount);
39 if (address != 0) {
41 Libcore.os.munmap(address, size);
47 address = 0;
66 private NonMovableHeapBlock(byte[] array, long address, long byteCount) {
67 super(address, byteCount);
77 address = 0;
86 private UnmanagedBlock(long address, long byteCount) {
87 super(address, byteCount)
91 protected long address; field in class:MemoryBlock
116 long address = Libcore.os.mmap(0L, size, prot, flags, fd, offset); local
126 long address = runtime.addressOf(array); local
    [all...]
  /libcore/luni/src/main/java/libcore/io/
MemoryMappedFile.java 36 private long address; field in class:MemoryMappedFile
42 public MemoryMappedFile(long address, long size) {
43 this.address = address;
53 long address = Libcore.os.mmap(0L, size, PROT_READ, MAP_SHARED, fd, 0); local
55 return new MemoryMappedFile(address, size);
67 if (address != 0) {
68 Libcore.os.munmap(address, size);
69 address = 0;
77 return new NioBufferIterator(address, (int) size, ByteOrder.nativeOrder() != ByteOrder.BIG_ENDIAN)
    [all...]
  /frameworks/opt/net/voip/src/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");
  /libcore/luni/src/main/java/libcore/icu/
NativeBreakIterator.java 30 // The address of the native peer.
32 private final int address; field in class:NativeBreakIterator
38 private NativeBreakIterator(int address, int type) {
39 this.address = address;
46 int cloneAddr = cloneImpl(this.address);
74 closeImpl(this.address);
81 return currentImpl(this.address, this.string);
85 return firstImpl(this.address, this.string);
89 return followingImpl(this.address, this.string, offset)
    [all...]
  /external/valgrind/main/none/tests/s390x/
cu41.stdout.exp 11 dst address difference: 0 dst len: 1000
15 dst address difference: 0 dst len: 1000
19 dst address difference: 0 dst len: 1000
23 dst address difference: 0 dst len: 1000
27 dst address difference: 0 dst len: 1000
28 src address difference: 0 src len: 0
31 dst address difference: 0 dst len: 1000
32 src address difference: 0 src len: 1
35 dst address difference: 0 dst len: 1000
36 src address difference: 0 src len:
    [all...]

Completed in 409 milliseconds

12 3 4 5 6 7 8 91011>>