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

12 3 4 5 6 7 8 91011>>

  /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...]
  /external/chromium/net/udp/
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;
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);
datagram_client_socket.h 20 // Initialize this socket as a client socket to server at |address|.
22 virtual int Connect(const IPEndPoint& address) = 0;
  /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.
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) {
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...]
From.java 32 import gov.nist.javax.sip.address.AddressImpl;
67 address = to.address;
81 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
84 address.encode(buffer);
85 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
96 * Conveniance accessor function to get the hostPort field from the address.
102 return address.getHostPort();
106 * Get the display name from the address.
110 return address.getDisplayName()
    [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...]
  /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...]
  /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(int 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, int address, long byteCount) {
67 super(address, byteCount);
77 address = 0;
86 private UnmanagedBlock(int address, long byteCount) {
87 super(address, byteCount)
92 protected int address; field in class:MemoryBlock
117 int address = (int) Libcore.os.mmap(0L, size, prot, flags, fd, offset); local
127 int address = (int) runtime.addressOf(array); local
    [all...]
NIOAccess.java 29 * address."
36 int address = b.effectiveDirectAddress; local
37 if (address == 0) {
40 return address + (b.position << b._elementSizeShift);
  /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((int) address, (int) size, ByteOrder.nativeOrder() != ByteOrder.BIG_ENDIAN)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
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) {
  /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");
  /libcore/luni/src/main/java/libcore/icu/
NativeBreakIterator.java 30 private final int address; field in class:NativeBreakIterator
34 private NativeBreakIterator(int address, int type) {
35 this.address = address;
42 int cloneAddr = cloneImpl(this.address);
69 closeBreakIteratorImpl(this.address);
76 return currentImpl(this.address);
80 return firstImpl(this.address);
84 return followingImpl(this.address, offset);
88 int newLoc = currentImpl(this.address);
    [all...]
RuleBasedCollatorICU.java 44 // The address of the ICU4C native peer.
45 private int address; field in class:RuleBasedCollatorICU
51 address = NativeCollation.openCollatorFromRules(rules, VALUE_OFF, VALUE_DEFAULT_STRENGTH);
55 address = NativeCollation.openCollator(locale.toString());
58 private RuleBasedCollatorICU(int address) {
59 this.address = address;
63 return new RuleBasedCollatorICU(NativeCollation.safeClone(address));
67 return NativeCollation.compare(address, source, target);
71 return NativeCollation.getAttribute(address, DECOMPOSITION_MODE)
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerARM.cpp 71 void MacroAssemblerARM::load32WithUnalignedHalfWords(BaseIndex address, RegisterID dest)
75 ASSERT(address.scale >= 0 && address.scale <= 3);
76 op2 = m_assembler.lsl(address.index, static_cast<int>(address.scale));
78 if (address.offset >= 0 && address.offset + 0x2 <= 0xff) {
79 m_assembler.add_r(ARMRegisters::S0, address.base, op2);
80 m_assembler.ldrh_u(dest, ARMRegisters::S0, ARMAssembler::getOp2Byte(address.offset));
81 m_assembler.ldrh_u(ARMRegisters::S0, ARMRegisters::S0, ARMAssembler::getOp2Byte(address.offset + 0x2))
    [all...]
  /frameworks/base/core/java/android/server/
BluetoothDeviceProperties.java 38 Map<String, String> addProperties(String address, String[] properties) {
45 propertyValues = mPropertiesMap.get(address);
75 mPropertiesMap.put(address, propertyValues);
80 mService.updateDeviceServiceChannelCache(address);
84 void setProperty(String address, String name, String value) {
86 Map <String, String> propVal = mPropertiesMap.get(address);
89 mPropertiesMap.put(address, propVal);
91 Log.e(TAG, "setRemoteDeviceProperty for a device not in cache:" + address);
96 boolean isInCache(String address) {
98 return (mPropertiesMap.get(address) != null)
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
MallocZoneSupport.h 46 void* operator()(vm_address_t address, size_t size) const
49 kern_return_t err = (*m_reader)(m_task, address, size, static_cast<void**>(&output));
56 T* operator()(T* address, size_t size=sizeof(T)) const
58 return static_cast<T*>((*this)(reinterpret_cast<vm_address_t>(address), size));
62 T* nextEntryInLinkedList(T** address) const
64 T** output = (*this)(address);
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
fixChangeLogPatch.pl 42 # 2009-12-22 Alice <alice@email.address>
51 # 2009-12-21 Alice <alice@email.address>
67 2010-12-22 Bob <bob@email.address>
79 2010-12-22 Bob <bob@email.address>
94 -2010-12-22 Bob <bob@email.address>
102 2010-12-22 Alice <alice@email.address>
111 -2010-12-22 Bob <bob@email.address>
119 2010-12-22 Alice <alice@email.address>
134 -2010-12-22 Bob <bob@email.address>
138 2010-12-22 Alice <alice@email.address>
    [all...]

Completed in 531 milliseconds

12 3 4 5 6 7 8 91011>>