/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...] |
InetSocketAddress.java | 24 * This class represents a socket endpoint described by a IP address and a port 48 * no specified address. The range for valid port numbers is between 0 and 60 * {@code address}. The range for valid port numbers is between 0 and 65535 61 * inclusive. If {@code address} is {@code null} this socket is bound to the 62 * IPv4 wildcard address. 66 * @param address 67 * the specified address to which this socket is bound. 69 public InetSocketAddress(InetAddress address, int port) { 73 this.addr = (address == null) ? Inet4Address.ANY : address; [all...] |
/libcore/luni/src/main/native/ |
libcore_icu_NativeConverter.cpp | 66 static UConverter* toUConverter(jlong address) { 67 return reinterpret_cast<UConverter*>(static_cast<uintptr_t>(address)); 81 static void NativeConverter_closeConverter(JNIEnv*, jclass, jlong address) { 82 ucnv_close(toUConverter(address)); 85 static jint NativeConverter_encode(JNIEnv* env, jclass, jlong address, 89 UConverter* cnv = toUConverter(address); 131 static jint NativeConverter_decode(JNIEnv* env, jclass, jlong address, 135 UConverter* cnv = toUConverter(address); 178 static void NativeConverter_resetByteToChar(JNIEnv*, jclass, jlong address) { 179 UConverter* cnv = toUConverter(address); [all...] |
/external/chromium/base/third_party/dynamic_annotations/ |
dynamic_annotations.h | 36 instruction and/or to a particular object (address) in the program. 127 /* Report that wait on the condition variable at address "cv" has succeeded 128 and the lock at address "lock" is held. */ 137 /* Report that we are about to signal on the condition variable at address 142 /* Report that we are about to signal_all on the condition variable at address 194 /* Report that a new memory at "address" of size "size" has been allocated. 198 #define ANNOTATE_NEW_MEMORY(address, size) \ 199 DYNAMIC_ANNOTATIONS_NAME(AnnotateNewMemory)(__FILE__, __LINE__, address, \ 207 address "pcq" has been created. The ANNOTATE_PCQ_* annotations 213 /* Report that the queue at address "pcq" is about to be destroyed. * [all...] |
/external/valgrind/dynamic_annotations/ |
dynamic_annotations.h | 33 instruction and/or to a particular object (address) in the program. 124 /* Report that wait on the condition variable at address "cv" has succeeded 125 and the lock at address "lock" is held. */ 134 /* Report that we are about to signal on the condition variable at address 139 /* Report that we are about to signal_all on the condition variable at address 193 /* Report that a new memory at "address" of size "size" has been allocated. 197 #define ANNOTATE_NEW_MEMORY(address, size) \ 198 DYNAMIC_ANNOTATIONS_NAME(AnnotateNewMemory)(__FILE__, __LINE__, address, \ 206 address "pcq" has been created. The ANNOTATE_PCQ_* annotations 212 /* Report that the queue at address "pcq" is about to be destroyed. * [all...] |
/bionic/libc/kernel/arch-sh/asm/ |
pgtable_64.h | 25 #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1)) 26 #define __pgd_offset(address) pgd_index(address) 27 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address)) 28 #define pgd_offset_k(address) pgd_offset(&init_mm, address) 36 #define pte_index(address) ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1) [all...] |
/external/v8/src/ |
frames-inl.h | 51 inline Address StackHandler::address() const { function in class:v8::internal::StackHandler 52 return reinterpret_cast<Address>(const_cast<StackHandler*>(this)); 58 return FromAddress(Memory::Address_at(address() + offset)); 62 inline bool StackHandler::includes(Address address) const { 63 Address start = this->address(); 64 Address end = start + StackHandlerConstants::kSize; 65 return start <= address && address <= end [all...] |
/frameworks/base/voip/java/android/net/sip/ |
SimpleSessionDescription.java | 62 * unicast address. The address is used in the origin field ("o=") and the 66 public SimpleSessionDescription(long sessionId, String address) { 67 address = (address.indexOf(':') < 0 ? "IN IP4 " : "IN IP6 ") + address; 70 System.currentTimeMillis(), address)); 73 mFields.parse("c=" + address); 146 * Returns the connection address or {@code null} if it is not present. 153 * Sets the connection address. The field will be removed if the addres 401 String address = get("c", '='); local [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
autodetectproxy.cc | 55 Url<char> url(proxy_.address.IPAsString()); 58 proxy_.address.SetIP(url.host()); 60 LOG(LS_INFO) << "AutoDetectProxy found proxy at " << proxy_.address; 89 << proxy_.address.ToString(); 102 socket_->Connect(proxy_.address); 114 LOG_V(sev) << "AutoDetectProxy detected " << proxy_.address.ToString()
|
basicpacketsocketfactory.cc | 54 const SocketAddress& address, int min_port, int max_port) { 61 if (BindSocket(socket, address, min_port, max_port) < 0) { 113 socket, proxy_info.address, proxy_info.username, proxy_info.password); 116 socket, user_agent, proxy_info.address,
|
nethelpers.h | 52 const SocketAddress& address() const { return addr_; } function in class:talk_base::AsyncResolver
|
/external/nist-sip/java/gov/nist/javax/sip/ |
ListeningPointImpl.java | 33 import javax.sip.address.SipURI; 40 import gov.nist.javax.sip.address.AddressImpl; 41 import gov.nist.javax.sip.address.SipUri; 234 AddressImpl address = new AddressImpl(); local 235 address.setURI(sipURI); 236 contact.setAddress(address);
|
/external/qemu/proxy/ |
proxy_http.c | 34 SockAddress* address ) 41 if (sock_address_equal( address, &service->server_addr )) 45 __FUNCTION__, sock_address_to_string(address)); 47 if (sock_address_get_port(address) == 80) { 50 return http_rewriter_connect(service, address); 53 return http_connector_connect(service, address); 79 /* resolve server address */
|
proxy_int.h | 70 SockAddress address; /* for debugging */ member in struct:ProxyConnection 98 SockAddress* address, 186 * handle this address */ 189 const SockAddress* address );
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/ |
NativeHeapDataImporter.java | 110 * Note that in the above stack trace, the last two lines are examples where the address 160 long address = sc.nextLong(16); local 161 info.addStackCallAddress(address); 168 if (!isUnresolved(method, address)) { 172 stackInfo.add(new NativeStackCallInfo(address, library, method, filename)); 203 private boolean isUnresolved(String method, long address) { 204 // a method is unresolved if it is just the hex representation of the address 205 return Long.toString(address, 16).equals(method);
|
/external/webkit/Source/JavaScriptCore/wtf/ |
PageAllocationAligned.cpp | 49 vm_address_t address = 0; local 50 vm_map(current_task(), &address, size, alignmentMask, flags, MEMORY_OBJECT_NULL, 0, FALSE, protection, PROT_READ | PROT_WRITE | PROT_EXEC, VM_INHERIT_DEFAULT); local 51 return PageAllocationAligned(reinterpret_cast<void*>(address), size);
|
/external/webkit/Tools/Scripts/ |
run-leaks | 120 # Returns a list of hash references with the keys { address, size, type, callStack, leaksOutput } 156 my ($address) = ($line =~ /Leak: ([[:xdigit:]x]+)/); 157 if (!defined($address)) { 158 reportError("Could not parse Leak address."); 174 "address" => $address,
|
/packages/apps/Email/src/com/android/email/activity/ |
NfcHandler.java | 32 * This class implements sharing the e-mail address of the 71 private static NdefMessage buildMailtoNdef(String address) { 72 if (TextUtils.isEmpty(address)) { 77 accountBytes = URLEncoder.encode(address, "UTF-8")
|
/dalvik/libdex/ |
DexDebugInfo.cpp | 157 u4 address = 0; local 206 localInReg[reg].startAddress = address; 220 address += readUnsignedLeb128(&stream); 236 emitLocalCbIfLive(cnxt, reg, address, 247 localInReg[reg].startAddress = address; 258 emitLocalCbIfLive (cnxt, reg, address, localInReg, localCb); 277 * and we don't want to mess with the existing start address. 280 localInReg[reg].startAddress = address; 293 address += adjopcode / DBG_LINE_RANGE; 298 done = posCb(cnxt, address, line) [all...] |
/development/tools/axl/ |
udpEater.py | 40 data, address = svrsocket.recvfrom(8192)
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
InetSocketAddressTest.java | 33 InetSocketAddress address = new InetSocketAddress("127.0.0.1", 0); local 34 assertEquals("/127.0.0.1:0", address.toString()); 35 String localhostName = address.getHostName(); 37 assertEquals(localhostName+"/127.0.0.1:0", address.toString()); 102 assertEquals("Address", init.getAddress(), desr.getAddress());
|
/external/bluetooth/bluez/src/ |
textfile.h | 30 const char *address, const char *name);
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
StackAddrEscapeChecker.cpp | 10 // This file defines stack address leak checker, which checks if an invalid 11 // stack address is stored into a global or heap location. See CERT DCL30-C. 49 os << "Address of "; 100 new BuiltinBug("Return of address to stack-allocated memory")); 197 new BuiltinBug("Stack address stored into global variable", 198 "Stack address was saved into a global variable. " 199 "This is dangerous because the address will become "
|
/external/dbus/dbus/ |
dbus-address.h | 2 /* dbus-address.h Server address parser. 40 /** Opaque type representing one of the semicolon-separated items in an address */ 44 dbus_bool_t dbus_parse_address (const char *address,
|
dbus-server-socket.h | 34 const DBusString *address,
|