/external/valgrind/main/none/tests/s390x/ |
cu24_1.stdout.exp | 11 dst address difference: 0 dst len: 4000 15 dst address difference: 0 dst len: 4000 16 src address difference: 0 src len: 1 19 dst address difference: 0 dst len: 4000 20 src address difference: 0 src len: 1 23 dst address difference: 0 dst len: 4000 24 src address difference: 0 src len: 2 27 dst address difference: 0 dst len: 4000 28 src address difference: 0 src len: 3 33 dst address difference: 4 dst len: 399 [all...] |
/external/chromium/net/socket/ |
tcp_server_socket_unittest.cc | 30 IPEndPoint address; variable 31 ParseAddress("127.0.0.1", 0, &address); 32 ASSERT_EQ(OK, socket_.Listen(address, kListenBacklog)); 36 void ParseAddress(std::string ip_str, int port, IPEndPoint* address) { 41 *address = IPEndPoint(ip_number, port); 45 AddressList address; local 46 EXPECT_EQ(OK, socket->GetPeerAddress(&address)); 49 address.head()->ai_addr, address.head()->ai_addrlen)); 59 TCPClientSocket connecting_socket(AddressList(local_address_.address(), [all...] |
server_socket.h | 23 virtual int Listen(const net::IPEndPoint& address, int backlog) = 0; 25 // Gets current address the socket is bound to. 26 virtual int GetLocalAddress(IPEndPoint* address) const = 0;
|
/external/chromium_org/net/disk_cache/v3/ |
block_bitmaps.cc | 48 Addr address(block_type, block_count, bitmaps_[header_num].FileId(), index); 49 block_address->set_value(address.value()); 50 Trace("CreateBlock 0x%x", address.value()); 54 void BlockBitmaps::DeleteBlock(Addr address) { 55 if (!address.is_initialized() || address.is_separate_file()) 58 int header_num = GetHeaderNumber(address); 62 Trace("DeleteBlock 0x%x", address.value()); 63 bitmaps_[header_num].DeleteMapBlock(address.start_block(), 64 address.num_blocks()) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/address/ |
AddressFactoryImpl.java | 26 package gov.nist.javax.sip.address; 31 import javax.sip.address.*; 34 * Implementation of the JAIN-SIP address factory. 46 public class AddressFactoryImpl implements javax.sip.address.AddressFactory { 56 *Create an empty address object. 61 public javax.sip.address.Address createAddress() { 65 * Creates an Address with the new display name and URI attribute 69 * address. A <code>null</code> value does not set the display name. 70 * @param uri - the new URI value of the address [all...] |
/external/chromium_org/chrome_frame/crash_reporting/ |
vectored_handler.h | 16 // 2. If the address of the exception is in our module - create dump. 45 // bool IsOurModule(const void* address) { 68 // Maintains start and end address of a single module of interest. If we want 73 inline bool IsOurModule(const void* address) { 74 return (start_ <= address && address < end_); 98 inline bool IsOurModule(const void* address) { 99 return (start_ <= address && address < end_) && 100 (address < special_region_start_ || special_region_end_ <= address) [all...] |
/external/chromium_org/net/socket/ |
server_socket.h | 24 virtual int Listen(const net::IPEndPoint& address, int backlog) = 0; 26 // Gets current address the socket is bound to. 27 virtual int GetLocalAddress(IPEndPoint* address) const = 0;
|
/external/llvm/include/llvm/Support/ |
MemoryObject.h | 21 /// access to 64-bit address spaces. 27 /// getBase - Returns the lowest valid address in the region. 29 /// @result - The lowest valid address. 33 /// contiguous, so the highest valid address of the region 41 /// @param address - The address of the byte, in the same space as getBase(). 45 virtual int readByte(uint64_t address, uint8_t *ptr) const = 0; 52 /// @param address - The address of the first byte, in the same space as 59 virtual int readBytes(uint64_t address, uint64_t size, uint8_t *buf) const [all...] |
StreamableMemoryObject.h | 38 /// getBase - Returns the lowest valid address in the region. 40 /// @result - The lowest valid address. 44 /// contiguous, so the highest valid address of the region 52 /// May block until (address - base) bytes have been read 53 /// @param address - The address of the byte, in the same space as getBase(). 57 virtual int readByte(uint64_t address, uint8_t *ptr) const LLVM_OVERRIDE = 0; 61 /// May block until (address - base + size) bytes have 66 /// @param address - The address of the first byte, in the same space a [all...] |
/external/qemu/android/ |
async-console.h | 28 SockAddress address; member in struct:__anon24623 34 /* Initialize the console connector. This attempts to connect to the address 39 const SockAddress* address,
|
/external/qemu/proxy/ |
proxy_http_int.h | 21 SockAddress server_addr; /* server address and port */ 30 SockAddress* address ); 35 SockAddress* address );
|
/frameworks/opt/net/voip/src/java/android/net/rtp/ |
RtpStream.java | 63 * Creates a RtpStream on the given local address. Note that the local 66 * @param address The network address of the local host to bind to. 67 * @throws SocketException if the address cannot be bound or a problem 70 RtpStream(InetAddress address) throws SocketException { 71 mLocalPort = create(address.getHostAddress()); 72 mLocalAddress = address; 75 private native int create(String address) throws SocketException; 78 * Returns the network address of the local host. 92 * Returns the network address of the remote host or {@code null} if th [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/ |
address.pass.cpp | 13 // pointer address(reference x) const; 14 // const_pointer address(const_reference x) const; 25 assert(a.address(*tp) == tp); 26 assert(a.address(*ctp) == tp);
|
/external/chromium_org/net/udp/ |
udp_socket_win.h | 32 // Connect the socket to connect with a certain |address|. 34 int Connect(const IPEndPoint& address); 36 // Bind the address/port for this socket to |address|. This is generally 39 int Bind(const IPEndPoint& address); 44 // Copy the remote udp address into |address| and return a network error code. 45 int GetPeerAddress(IPEndPoint* address) const; 47 // Copy the local udp address into |address| and return a network error code [all...] |
udp_server_socket.cc | 22 int UDPServerSocket::Listen(const IPEndPoint& address) { 23 return socket_.Bind(address); 28 IPEndPoint* address, 30 return socket_.RecvFrom(buf, buf_len, address, callback); 35 const IPEndPoint& address, 37 return socket_.SendTo(buf, buf_len, address, callback); 52 int UDPServerSocket::GetPeerAddress(IPEndPoint* address) const { 53 return socket_.GetPeerAddress(address); 56 int UDPServerSocket::GetLocalAddress(IPEndPoint* address) const { 57 return socket_.GetLocalAddress(address); [all...] |
/cts/tests/tests/text/src/android/text/util/cts/ |
Rfc822TokenTest.java | 29 final String address = "jdoe@example.net"; local 31 Rfc822Token rfc822Token1 = new Rfc822Token(name, address, comment); 33 assertEquals(address, rfc822Token1.getAddress()); 36 Rfc822Token rfc822Token2 = new Rfc822Token(null, address, comment); 38 assertEquals(address, rfc822Token2.getAddress()); 46 Rfc822Token rfc822Token4 = new Rfc822Token(name, address, null); 48 assertEquals(address, rfc822Token4.getAddress()); 54 final String address = "jdoe@example.net"; local 56 Rfc822Token rfc822Token = new Rfc822Token(name, address, comment); 86 final String address = "jdoe@example.net" local 105 String address = "jdoe@example.net"; local [all...] |
/external/chromium_org/third_party/WebKit/Source/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* nextEntryInHardenedLinkedList(T** address, uintptr_t entropy) const;
|
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/ |
ReferredBy.java | 13 import gov.nist.javax.sip.address.*; 53 if (address == null) 56 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 59 retval += address.encode(); 60 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) { 91 * CVS: address here. If this is your work then delete this line. 127 * CVS: address here. If this is your work then delete this line.
|
/external/chromium_org/net/dns/ |
address_sorter_posix.cc | 33 // Address sorting is performed according to RFC3484 with revisions. 53 // Search |table| for matching prefix of |address|. |table| must be sorted by 56 const IPAddressNumber& address) { 57 if (address.size() == kIPv4AddressSize) 58 return GetPolicyValue(table, ConvertIPv4NumberToIPv6Number(address)); 62 if (IPNumberMatchesPrefix(address, prefix, entry.prefix_length)) 70 bool IsIPv6Multicast(const IPAddressNumber& address) { 71 DCHECK_EQ(kIPv6AddressSize, address.size()); 72 return address[0] == 0xFF; 76 const IPAddressNumber& address) { 178 IPAddressNumber address; member in struct:net::__anon9029::DestinationInfo 329 const IPAddressNumber& address = it->first; local [all...] |
/dalvik/vm/native/ |
sun_misc_Unsafe.cpp | 70 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); local 73 int result = android_atomic_release_cas(expectedValue, newValue, address); 90 volatile int64_t* address = (volatile int64_t*) (((u1*) obj) + offset); local 94 dvmQuasiAtomicCas64(expectedValue, newValue, address); 111 int32_t* address = (int32_t*) (((u1*) obj) + offset); local 115 (int32_t) newValue, address); 116 dvmWriteBarrierField(obj, address); 129 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); local 131 int32_t value = android_atomic_acquire_load(address); 145 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset) local 160 volatile int64_t* address = (volatile int64_t*) (((u1*) obj) + offset); local 176 volatile int64_t* address = (volatile int64_t*) (((u1*) obj) + offset); local 192 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); local 208 volatile int32_t* address = (volatile int32_t*) (((u1*) obj) + offset); local 223 s4* address = (s4*) (((u1*) obj) + offset); local 237 s4* address = (s4*) (((u1*) obj) + offset); local 253 s4* address = (s4*) (((u1*) obj) + offset); local 268 s8* address = (s8*) (((u1*) obj) + offset); local 282 s8* address = (s8*) (((u1*) obj) + offset); local 298 s8* address = (s8*) (((u1*) obj) + offset); local 313 Object** address = (Object**) (((u1*) obj) + offset); local 327 Object** address = (Object**) (((u1*) obj) + offset); local 345 Object** address = (Object**) (((u1*) obj) + offset); local [all...] |
/libcore/luni/src/main/native/ |
libcore_icu_NativeBreakIterator.cpp | 30 static BreakIterator* toBreakIterator(jlong address) { 31 return reinterpret_cast<BreakIterator*>(static_cast<uintptr_t>(address)); 42 BreakIteratorAccessor(JNIEnv* env, jlong address, jstring javaInput, bool reset) { 43 init(env, address); 67 BreakIteratorAccessor(JNIEnv* env, jlong address) { 68 init(env, address); 88 void init(JNIEnv* env, jlong address) { 91 mBreakIterator = toBreakIterator(address); 122 static jint NativeBreakIterator_cloneImpl(JNIEnv* env, jclass, jlong address) { 123 BreakIteratorAccessor it(env, address); [all...] |
/external/smack/src/org/jivesoftware/smackx/muc/ |
RoomListenerMultiplexor.java | 99 public void addRoom(String address, PacketMultiplexListener roomListener) { 100 filter.addRoom(address); 101 listener.addRoom(address, roomListener); 135 public void removeRoom(String address) { 136 filter.removeRoom(address); 137 listener.removeRoom(address); 152 * <code>Connection</code> the address for that chat room 168 public void addRoom(String address) { 169 if (address == null) { 172 roomAddressTable.put(address.toLowerCase(), address) local [all...] |
/external/nist-sip/java/gov/nist/core/net/ |
DefaultNetworkLayer.java | 74 public Socket createSocket(InetAddress address, int port) 76 return new Socket(address, port); 105 public SSLSocket createSSLSocket(InetAddress address, int port) 107 return (SSLSocket) sslSocketFactory.createSocket(address, port); 111 public SSLSocket createSSLSocket(InetAddress address, int port, 113 return (SSLSocket) sslSocketFactory.createSocket(address, port, 117 public Socket createSocket(InetAddress address, int port, 120 return new Socket(address, port, myAddress, 0); 122 return new Socket(address, port); 127 * address:port [all...] |
/external/chromium_org/tools/find_runtime_symbols/ |
find_runtime_symbols.py | 122 for address in addresses: 123 if isinstance(address, basestring): 124 address = int(address, 16) 125 found = symbols_in_process.find_procedure(address) 127 result[address] = found.name 129 result[address] = '0x%016x' % address 135 for address in addresses: 136 if isinstance(address, basestring) [all...] |
reduce_debugline.py | 45 for address in sorted(starting_dict): 46 curr_filename = starting_dict[address] 48 starting_list.append((address, starting_dict[address])) 60 for address, filename in starting_list: 62 print '%016x %s' % (address, filename) 64 print '%08x %s' % (address, filename)
|