Searched refs:address (Results 151 - 175 of 2795) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dtype_profiler_map.cc87 void InsertType(void* address, size_t size, const std::type_info& type) { argument
91 g_type_profiler_map->Insert(address, ObjectInfo(size, &type));
94 void EraseType(void* address) { argument
99 g_type_profiler_map->FindAndRemove(address, &obj);
102 const std::type_info* LookupType(const void* address) { argument
106 const ObjectInfo* found = g_type_profiler_map->Find(address);
/external/qemu/include/hw/
H A Dpcmcia.h28 uint8_t (*attr_read)(void *state, uint32_t address);
29 void (*attr_write)(void *state, uint32_t address, uint8_t value);
30 uint16_t (*common_read)(void *state, uint32_t address);
31 void (*common_write)(void *state, uint32_t address, uint16_t value);
32 uint16_t (*io_read)(void *state, uint32_t address);
33 void (*io_write)(void *state, uint32_t address, uint16_t value);
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DRouteSelectorTest.java87 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
89 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
94 assertConnection(routeSelector.next("GET"), address, NO_PROXY, dns.inetAddresses[0], uriPort,
107 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator, null,
109 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
117 routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns, routeDatabase);
118 assertConnection(routeSelector.next("GET"), address, NO_PROXY, dns.inetAddresses[0], uriPort,
129 Address address = new Address(uriHost, uriPort, socketFactory, null, null, authenticator,
131 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
136 assertConnection(routeSelector.next("GET"), address, proxy
422 assertConnection(Connection connection, Address address, Proxy proxy, InetAddress socketAddress, int socketPort, boolean modernTls) argument
[all...]
/external/chromium_org/net/socket/
H A Dtcp_server_socket_unittest.cc34 IPEndPoint address; local
35 ParseAddress("127.0.0.1", 0, &address);
36 ASSERT_EQ(OK, socket_.Listen(address, kListenBacklog));
42 IPEndPoint address; local
43 ParseAddress("::1", 0, &address);
44 if (socket_.Listen(address, kListenBacklog) != 0) {
53 void ParseAddress(std::string ip_str, int port, IPEndPoint* address) { argument
58 *address = IPEndPoint(ip_number, port);
62 IPEndPoint address; local
63 EXPECT_EQ(OK, socket->GetPeerAddress(&address));
[all...]
H A Dunix_domain_client_socket_posix.cc37 SockaddrStorage* address) {
39 reinterpret_cast<struct sockaddr_un*>(address->addr);
40 size_t path_max = address->addr_len - offsetof(struct sockaddr_un, sun_path);
48 memset(socket_addr, 0, address->addr_len);
50 address->addr_len = path_size + offsetof(struct sockaddr_un, sun_path);
75 SockaddrStorage address;
76 if (!FillAddress(socket_path_, use_abstract_namespace_, &address))
85 return socket_->Connect(address, callback);
100 int UnixDomainClientSocket::GetPeerAddress(IPEndPoint* address) const {
105 int UnixDomainClientSocket::GetLocalAddress(IPEndPoint* address) cons
35 FillAddress(const std::string& socket_path, bool use_abstract_namespace, SockaddrStorage* address) argument
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Dblock_files_unittest.cc40 Addr address[kMaxSize]; local
44 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[i]));
51 files.DeleteBlock(address[target], false);
52 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[target]));
66 Addr address[kMaxSize]; local
70 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[i]));
75 files.DeleteBlock(address[i], false);
94 Addr address(0);
96 EXPECT_TRUE(files.CreateBlock(RANKINGS, size, &address));
97 entries[i] = address
185 Addr address; local
312 Addr address[kSize]; local
[all...]
H A Dblock_bitmaps_v3_unittest.cc32 disk_cache::Addr address[kSize]; local
37 &address[i]));
38 EXPECT_EQ(disk_cache::BLOCK_1K, address[i].file_type());
39 EXPECT_EQ(block_size, address[i].num_blocks());
40 int start = address[i].start_block();
48 EXPECT_TRUE(block_bitmaps.IsValid(address[i]));
62 block_bitmaps.DeleteBlock(address[i]);
/external/chromium_org/net/base/
H A Dip_endpoint.cc28 IPEndPoint::IPEndPoint(const IPAddressNumber& address, int port) argument
29 : address_(address),
48 NOTREACHED() << "Bad IP address";
53 bool IPEndPoint::ToSockAddr(struct sockaddr* address, argument
55 DCHECK(address);
62 struct sockaddr_in* addr = reinterpret_cast<struct sockaddr_in*>(address);
74 reinterpret_cast<struct sockaddr_in6*>(address);
91 const uint8* address; local
94 if (!GetIPAddressFromSockAddr(sock_addr, sock_addr_len, &address,
99 address_.assign(address, addres
[all...]
/external/opencv/cv/src/
H A Dcvoptflowhs.cpp98 int i, j, k, address; local
237 address = 0;
260 II[address].xx = GradX * GradX;
261 II[address].xy = GradX * GradY;
262 II[address].yy = GradY * GradY;
263 II[address].xt = GradX * GradT;
264 II[address].yt = GradY * GradT;
266 II[address].alpha = 1 / (Ilambda + II[address].xx + II[address]
[all...]
/external/chromium_org/net/udp/
H A Dudp_socket_win.h33 // Connect the socket to connect with a certain |address|.
35 int Connect(const IPEndPoint& address);
37 // Bind the address/port for this socket to |address|. This is generally
40 int Bind(const IPEndPoint& address);
45 // Copy the remote udp address into |address| and return a network error code.
46 int GetPeerAddress(IPEndPoint* address) const;
48 // Copy the local udp address into |address| an
[all...]
H A Dudp_socket_libevent.h31 // Connect the socket to connect with a certain |address|.
33 int Connect(const IPEndPoint& address);
35 // Bind the address/port for this socket to |address|. This is generally
38 int Bind(const IPEndPoint& address);
43 // Copy the remote udp address into |address| and return a network error code.
44 int GetPeerAddress(IPEndPoint* address) const;
46 // Copy the local udp address into |address| an
[all...]
H A Dudp_server_socket.h25 virtual int Listen(const IPEndPoint& address) OVERRIDE;
28 IPEndPoint* address,
32 const IPEndPoint& address,
37 virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE;
38 virtual int GetLocalAddress(IPEndPoint* address) const OVERRIDE;
/external/llvm/test/MC/Mips/
H A Dmicromips-bad-branches.s3 # CHECK: error: branch to misaligned address
7 # CHECK: error: branch to misaligned address
12 # CHECK: error: branch to misaligned address
16 # CHECK: error: branch to misaligned address
21 # CHECK: error: branch to misaligned address
25 # CHECK: error: branch to misaligned address
30 # CHECK: error: branch to misaligned address
34 # CHECK: error: branch to misaligned address
39 # CHECK: error: branch to misaligned address
43 # CHECK: error: branch to misaligned address
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DContact.java38 import gov.nist.javax.sip.address.AddressImpl;
109 if (address.getAddressType() == AddressImpl.NAME_ADDR) {
110 address.encode(buffer);
112 // Encoding in canonical form must have <> around address.
114 address.encode(buffer);
140 /** get the address field.
143 public javax.sip.address.Address getAddress() {
144 // JAIN-SIP stores the wild card as an address!
145 return address;
191 this.address
200 setAddress(javax.sip.address.Address address) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/packet/
H A DMultipleAddresses.java47 * Adds a new address to which the packet is going to be sent or was sent.
50 * @param jid the JID address of the recipient.
53 * @param desc used to specify human-readable information for this address.
54 * @param delivered true when the packet was already delivered to this address.
55 * @param uri used to specify an external system address, such as a sip:, sips:, or im: URI.
59 // Create a new address with the specificed configuration
60 Address address = new Address(type);
61 address.setJid(jid);
62 address.setNode(node);
63 address
[all...]
/external/chromium_org/chrome/browser/install_verification/win/
H A Dimported_module_verification.cc28 bool AddressBeyondRange(const ModuleInfo& module, uintptr_t address) { argument
29 return module.base_address + module.size < address;
39 // To find the Import Address Table address, we start from the DOS header.
40 // The module handle is actually the base address where the header is.
48 // For modules that have an import address table, its offset from the
58 uintptr_t* address = reinterpret_cast<uintptr_t*>( local
61 while (*address) {
63 loaded_modules.begin(), loaded_modules.end(), *address,
66 lower_bound->ContainsAddress(*address)) {
69 ++address;
[all...]
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Daddress_normalizer.cc41 void AddressNormalizer::Normalize(AddressData* address) const {
42 assert(address != NULL);
43 assert(supplier_->IsLoaded(address->region_code));
46 region_address.region_code = address->region_code;
55 if (address->IsFieldEmpty(field)) {
58 const std::string& field_value = address->GetFieldValue(field);
73 address->SetFieldValue(
/external/chromium_org/content/renderer/p2p/
H A Dipc_network_manager.cc81 if (it->address.size() == net::kIPv4AddressSize) {
82 uint32 address; local
83 memcpy(&address, &it->address[0], sizeof(uint32));
84 address = rtc::NetworkToHost32(address);
86 rtc::TruncateIP(rtc::IPAddress(address), it->network_prefix);
93 network->AddIP(rtc::IPAddress(address));
96 } else if (it->address.size() == net::kIPv6AddressSize) {
97 in6_addr address; local
[all...]
/external/nist-sip/java/gov/nist/core/net/
H A DSslNetworkLayer.java93 public Socket createSocket(InetAddress address, int port) argument
95 return new Socket(address, port);
115 public SSLSocket createSSLSocket(InetAddress address, int port) argument
117 return (SSLSocket) sslSocketFactory.createSocket(address, port);
121 public SSLSocket createSSLSocket(InetAddress address, int port, argument
123 return (SSLSocket) sslSocketFactory.createSocket(address, port,
127 public Socket createSocket(InetAddress address, int port, argument
130 return new Socket(address, port, myAddress, 0);
132 return new Socket(address, port);
137 * address
151 createSocket(InetAddress address, int port, InetAddress myAddress, int myPort) argument
[all...]
H A DNetworkLayer.java49 * Creates a server with the specified port, listen backlog, and local IP address to bind to.
61 * Creates an SSL server with the specified port, listen backlog, and local IP address to bind to.
73 * Creates a stream socket and connects it to the specified port number at the specified IP address.
74 * comparable to "new java.net.Socket(address, port);"
76 * @param address
80 public Socket createSocket(InetAddress address, int port) throws IOException; argument
83 * Creates a stream socket and connects it to the specified port number at the specified IP address.
84 * comparable to "new java.net.Socket(address, port,localaddress);"
86 * @param address
91 public Socket createSocket(InetAddress address, in argument
109 createSocket(InetAddress address, int port, InetAddress myAddress, int myPort) argument
121 createSSLSocket(InetAddress address, int port) argument
132 createSSLSocket(InetAddress address, int port, InetAddress localAddress) argument
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
H A DJDWPUnitDebuggeeWrapper.java67 String address = settings.getTransportAddress();
70 logWriter.println("Start listening on: " + address);
72 address = transport.startListening(address);
76 logWriter.println("Listening on: " + address);
78 logWriter.println("Attach to: " + address);
84 + settings.getDebuggeeAgentOptions(address, isListenConnection)
129 String address = settings.getTransportAddress();
131 transport.attach(address, settings.getTimeout(), settings.getTimeout());
/external/chromium_org/net/dns/
H A Dmock_mdns_socket_factory.cc24 const IPEndPoint& address,
26 return SendToInternal(std::string(buf->data(), buf_len), address.ToString(),
30 int MockMDnsDatagramServerSocket::GetLocalAddress(IPEndPoint* address) const {
31 *address = local_address_;
41 IOBuffer* buffer, int size, IPEndPoint* address,
50 IOBuffer* buffer, int size, IPEndPoint* address,
52 int rv = HandleRecvNow(buffer, size, address, callback);
101 IPEndPoint* address,
110 const std::string& packet, const std::string& address,
23 SendTo(IOBuffer* buf, int buf_len, const IPEndPoint& address, const CompletionCallback& callback) argument
40 HandleRecvNow( IOBuffer* buffer, int size, IPEndPoint* address, const CompletionCallback& callback) argument
49 HandleRecvLater( IOBuffer* buffer, int size, IPEndPoint* address, const CompletionCallback& callback) argument
99 RecvFromInternal( IOBuffer* buffer, int size, IPEndPoint* address, const CompletionCallback& callback) argument
109 SendToInternal( const std::string& packet, const std::string& address, const CompletionCallback& callback) argument
/external/chromium_org/third_party/npapi/npspy/
H A Danalyze_streams.py33 self.address = split[2].split(' ')[0]
36 self.address = ''
63 address = split[1]
68 if stream.address == address:
80 address = split[1]
84 if stream.address == address:
86 stream.address = '' # address ca
[all...]
/external/chromium_org/ppapi/proxy/
H A Dfile_mapping_resource.h36 void** address,
39 const void* address,
45 MapResult() : result(PP_ERROR_FAILED), address(NULL) {
48 void* address; member in struct:ppapi::proxy::FileMappingResource::MapResult
66 static int32_t DoUnmapBlocking(const void* address, int64_t length);
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dstacktrace.py34 def __init__(self, address):
37 address: the absolute (virtual) address of the stack frame in the
38 original process virtual address space.
40 assert(isinstance(address, (long, int)))
41 self.address = address
46 # self.address - mapping_address_of_the_so + mapping_offset_of_the_exec.
79 return '0x%x' % self.address

Completed in 586 milliseconds

1234567891011>>