Searched refs:address (Results 201 - 225 of 2196) sorted by relevance

1234567891011>>

/external/chromium_org/net/disk_cache/v3/
H A Dentry_impl_v3.cc240 EntryImpl::EntryImpl(BackendImpl* backend, Addr address, bool read_only) argument
244 entry_.LazyInit(backend->File(address), address);
255 memset(entry_store, 0, sizeof(EntryStore) * entry_.address().num_blocks());
261 node->contents = entry_.address().value();
267 Addr address(0);
268 if (!CreateBlock(entry_store->key_len + 1, &address))
271 entry_store->long_key = address.value();
272 File* key_file = GetBackingFile(address, kKeyFileIndex);
276 if (address
964 CreateBlock(int size, Addr* address) argument
990 DeleteData(Addr address, int index) argument
1322 GetData(int index, char** buffer, Addr* address) argument
[all...]
/external/qemu/target-mips/
H A Dhelper.c39 target_ulong address, int rw, int access_type)
41 *physical = address;
48 target_ulong address, int rw, int access_type)
50 if (address <= (int32_t)0x7FFFFFFFUL) {
52 *physical = address + 0x40000000UL;
54 *physical = address;
55 } else if (address <= (int32_t)0xBFFFFFFFUL)
56 *physical = address & 0x1FFFFFFF;
58 *physical = address;
66 target_ulong address, in
38 no_mmu_map_address(CPUState *env, target_phys_addr_t *physical, int *prot, target_ulong address, int rw, int access_type) argument
47 fixed_mmu_map_address(CPUState *env, target_phys_addr_t *physical, int *prot, target_ulong address, int rw, int access_type) argument
65 r4k_map_address(CPUState *env, target_phys_addr_t *physical, int *prot, target_ulong address, int rw, int access_type) argument
108 get_physical_address(CPUState *env, target_phys_addr_t *physical, int *prot, target_ulong address, int rw, int access_type) argument
210 raise_mmu_exception(CPUState *env, target_ulong address, int rw, int tlb_error) argument
277 uint32_t address; local
343 cpu_mips_tlb_refill(CPUState *env, target_ulong address, int rw , int mmu_idx, int is_softmmu) argument
438 cpu_mips_handle_mmu_fault(CPUState *env, target_ulong address, int rw, int mmu_idx, int is_softmmu) argument
486 cpu_mips_translate_address(CPUState *env, target_ulong address, int rw) argument
[all...]
/external/chromium/net/socket/
H A Dtcp_server_socket_libevent.cc56 int TCPServerSocketLibevent::Listen(const IPEndPoint& address, int backlog) { argument
76 if (!address.ToSockAddr(addr, &addr_len))
98 int TCPServerSocketLibevent::GetLocalAddress(IPEndPoint* address) const {
100 DCHECK(address);
107 if (!address->FromSockAddr(addr, addr_len))
153 IPEndPoint address; local
154 if (!address.FromSockAddr(addr, addr_len)) {
162 AddressList(address.address(), address
[all...]
H A Dtcp_server_socket_win.cc37 int TCPServerSocketWin::Listen(const IPEndPoint& address, int backlog) { argument
64 if (!address.ToSockAddr(addr, &addr_len))
86 int TCPServerSocketWin::GetLocalAddress(IPEndPoint* address) const {
88 DCHECK(address);
95 if (!address->FromSockAddr(addr, addr_len))
137 IPEndPoint address; local
138 if (!address.FromSockAddr(addr, addr_len)) {
146 AddressList(address.address(), address
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DProxyTest.java26 private SocketAddress address = new InetSocketAddress("127.0.0.1", 1234); field in class:ProxyTest
33 Proxy proxy = new Proxy(Proxy.Type.HTTP, address);
35 assertEquals(address, proxy.address());
38 proxy = new Proxy(Proxy.Type.SOCKS, address);
40 assertEquals(address, proxy.address());
45 assertNull(proxy.address());
74 // test DIRECT type proxy, any address is illegal
76 proxy = new Proxy(Proxy.Type.DIRECT, address);
[all...]
/external/chromium/net/disk_cache/
H A Drankings.cc236 Trace("Insert 0x%x l %d", node->address().value(), list);
240 Transaction lock(control_data_, node->address(), INSERT, list);
247 head.Data()->prev != node->address().value()) { // FinishInsert().
252 head.Data()->prev = node->address().value();
259 node->Data()->prev = node->address().value();
260 my_head.set_value(node->address().value());
262 if (!my_tail.is_initialized() || my_tail.value() == node->address().value()) {
263 my_tail.set_value(node->address().value());
306 Trace("Remove 0x%x (0x%x 0x%x) l %d", node->address().value(),
330 Transaction lock(control_data_, node->address(), REMOV
535 SetContents(CacheRankingsBlock* node, CacheAddr address) argument
849 CacheAddr address = node->address().value(); local
860 CacheAddr address = node->address().value(); local
867 LOG(WARNING) << "Invalidating iterator at 0x" << std::hex << address; local
[all...]
H A Daddr.h5 // This is an internal class that handles the address of a cache record.
29 // Defines a storage address for a cache record
53 explicit Addr(CacheAddr address) : value_(address) {} argument
62 void set_value(CacheAddr address) { argument
63 value_ = address;
122 // Returns true if this address looks like a valid one.
/external/chromium_org/third_party/cld/base/
H A Ddynamic_annotations.h11 // instruction and/or to a particular object (address) in the program.
71 // Report that wait on the condition variable at address "cv" has succeeded
72 // and the lock at address "lock" is held.
81 // Report that we are about to signal on the condition variable at address
112 // Report that a new memory at "address" of size "size" has been allocated.
116 #define ANNOTATE_NEW_MEMORY(address, size) \
117 AnnotateNewMemory(__FILE__, __LINE__, address, size)
124 // address "pcq" has been created. The ANNOTATE_PCQ_* annotations
130 // Report that the queue at address "pcq" is about to be destroyed.
134 // Report that we are about to put an element into a FIFO queue at address
[all...]
/external/chromium_org/url/
H A Durl_canon_ip.cc72 // Invalid character for an IPv4 address.
163 unsigned char address[4],
198 // Use that sequence of numbers to fill out the 4-component IP address.
205 address[i] = static_cast<unsigned char>(component_values[i]);
211 address[i] = static_cast<unsigned char>(last_value);
234 spec, host, host_info->address, &host_info->num_ipv4_components);
238 // Definitely an IPv4 address.
240 AppendIPv4Address(host_info->address, output);
324 // The index for start and end of address range (no brackets).
388 // a component to be an IPv4 address i
161 DoIPv4AddressToNumber(const CHAR* spec, const url_parse::Component& host, unsigned char address[4], int* num_ipv4_components) argument
461 DoIPv6AddressToNumber(const CHAR* spec, const url_parse::Component& host, unsigned char address[16]) argument
524 ChooseIPv6ContractionRange(const unsigned char address[16], url_parse::Component* contraction_range) argument
593 AppendIPv4Address(const unsigned char address[4], CanonOutput* output) argument
606 AppendIPv6Address(const unsigned char address[16], CanonOutput* output) argument
679 IPv4AddressToNumber(const char* spec, const url_parse::Component& host, unsigned char address[4], int* num_ipv4_components) argument
686 IPv4AddressToNumber(const base::char16* spec, const url_parse::Component& host, unsigned char address[4], int* num_ipv4_components) argument
694 IPv6AddressToNumber(const char* spec, const url_parse::Component& host, unsigned char address[16]) argument
700 IPv6AddressToNumber(const base::char16* spec, const url_parse::Component& host, unsigned char address[16]) argument
[all...]
/external/chromium_org/v8/src/
H A Dserialize.cc82 Address address; local
86 address = ref.address();
91 address = ref.address();
96 address = ref.address();
102 address = ref.address();
109 Add(address, typ
113 Add(Address address, TypeCode type, uint16_t id, const char* name) argument
589 Address address = Deoptimizer::GetDeoptimizationEntry( local
687 Lookup(Address address) argument
912 Address address = Allocate(space_number, size); local
1422 SerializeReferenceToPreviousObject( int space, int address, HowToCode how_to_code, WhereToPoint where_to_point, int skip) argument
1458 int address = address_mapper_.MappedTo(heap_object); local
1567 int address = address_mapper_.MappedTo(heap_object); local
[all...]
/external/chromium_org/third_party/tlslite/scripts/
H A Dtls.py39 def clientTest(address, dir):
41 #Split address into hostname/port tuple
42 address = address.split(":")
43 if len(address)==1:
44 address.append("4443")
45 address = ( address[0], int(address[1]) )
51 sock.connect(address)
670 address = address[0], address[1]+1 variable in class:serverTest.MyHTTPServer
815 address = args.get(2) variable
821 address = args.get(2) variable
824 address = address.split(":") variable
827 address = ( address[0], int(address[1]) ) variable
929 address = args.get(2) variable
932 address = address.split(":") variable
935 address = ( address[0], int(address[1]) ) variable
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Ddynamic_annotations.h40 instruction and/or to a particular object (address) in the program.
104 /* Report that wait on the condition variable at address "cv" has succeeded
105 and the lock at address "lock" is held. */
114 /* Report that we are about to signal on the condition variable at address
166 /* Report that a new memory at "address" of size "size" has been allocated.
170 #define ANNOTATE_NEW_MEMORY(address, size) \
171 AnnotateNewMemory(__FILE__, __LINE__, address, size)
178 address "pcq" has been created. The ANNOTATE_PCQ_* annotations
184 /* Report that the queue at address "pcq" is about to be destroyed. */
188 /* Report that we are about to put an element into a FIFO queue at address
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Ddynamic_annotations.h40 instruction and/or to a particular object (address) in the program.
104 /* Report that wait on the condition variable at address "cv" has succeeded
105 and the lock at address "lock" is held. */
114 /* Report that we are about to signal on the condition variable at address
166 /* Report that a new memory at "address" of size "size" has been allocated.
170 #define ANNOTATE_NEW_MEMORY(address, size) \
171 AnnotateNewMemory(__FILE__, __LINE__, address, size)
178 address "pcq" has been created. The ANNOTATE_PCQ_* annotations
184 /* Report that the queue at address "pcq" is about to be destroyed. */
188 /* Report that we are about to put an element into a FIFO queue at address
[all...]
/external/chromium/net/base/
H A Dnet_util_posix.cc72 IPEndPoint address; local
74 if (address.FromSockAddr(ifa->ifa_addr,
77 networks->push_back(NetworkInterface(name, address.address()));
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Dbluetooth_options_browsertest.js46 * Selects a bluetooth device from the list with the matching address.
48 * @param {{address: string,
92 address: '00:11:22:33:44:55',
100 address: '28:CF:DA:00:00:00',
108 address: '28:37:37:00:00:00',
117 var index = pairedDeviceList.find(fakePairedDevice.address);
120 index = pairedDeviceList.find(fakePairedDevice.address);
135 index = unpairedDeviceList.find(fakeUnpairedDevice.address);
144 index = unpairedDeviceList.find(fakeUnpairedDevice2.address);
162 [fakeUnpairedDevice2.address, 'connec
[all...]
/external/chromium_org/content/common/android/
H A Daddress_parser.h13 // Provides methods to find a geographical address (currently US only)
17 // Find the first address in some chunk of text. If an address is found in
18 // |text| true is returned and the address is copied into |address|.
20 bool FindAddress(const string16& text, string16* address);
22 // Find the first address in some chunk of test. |begin| is the starting
24 // and |end_pos| are set to the starting and ending position of the address,
/external/chromium_org/content/renderer/p2p/
H A Dsocket_client.cc51 void P2PSocketClient::Send(const net::IPEndPoint& address, argument
55 FROM_HERE, base::Bind(&P2PSocketClient::Send, this, address, data));
62 dispatcher_->SendP2PMessage(new P2PHostMsg_Send(socket_id_, address, data));
93 void P2PSocketClient::OnSocketCreated(const net::IPEndPoint& address) { argument
100 base::Bind(&P2PSocketClient::DeliverOnSocketCreated, this, address));
103 void P2PSocketClient::DeliverOnSocketCreated(const net::IPEndPoint& address) { argument
106 delegate_->OnOpen(address);
109 void P2PSocketClient::OnIncomingTcpConnection(const net::IPEndPoint& address) { argument
119 socket_id_, address, new_client->socket_id_));
123 this, address, new_clien
126 DeliverOnIncomingTcpConnection( const net::IPEndPoint& address, scoped_refptr<P2PSocketClient> new_client) argument
164 OnDataReceived(const net::IPEndPoint& address, const std::vector<char>& data) argument
173 DeliverOnDataReceived(const net::IPEndPoint& address, const std::vector<char>& data) argument
[all...]
/external/chromium_org/device/bluetooth/
H A Dbluetooth_service_record_win.h19 const std::string& address,
/external/chromium_org/net/socket/
H A Dsocket_net_log_params.cc33 base::Value* NetLogIPEndPointCallback(const IPEndPoint* address, argument
36 dict->SetString("address", address->ToString());
62 const IPEndPoint* address) {
63 return base::Bind(&NetLogIPEndPointCallback, address);
61 CreateNetLogIPEndPointCallback( const IPEndPoint* address) argument
H A Dsocket_net_log_params.h26 // |address| must remain valid for the lifetime of the returned callback.
28 const IPEndPoint* address);
/external/chromium_org/ppapi/tests/
H A Dtest_tcp_server_socket_private.h32 std::string GetLocalAddress(PP_NetAddress_Private* address);
40 PP_NetAddress_Private* address);
42 PP_NetAddress_Private* address);
44 PP_NetAddress_Private* address,
H A Dtest_udp_socket.h27 std::string GetLocalAddress(pp::NetAddress* address);
30 const pp::NetAddress& address);
32 pp::NetAddress* address);
34 pp::NetAddress* address,
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dtestclient_unittest.cc44 SocketAddress addr = client.address(), from;
58 socket, loopback, server.address());
62 SocketAddress addr = client.address(), from;
66 EXPECT_EQ(from, server.address());
/external/chromium_org/tools/deep_memory_profiler/tests/
H A Ddmprof_test.py31 for address in self._addresses:
32 yield address
40 for address in address_list:
41 result[address] = self._mapping[address]
84 for address in self._TEST_FUNCTION_ADDRESS_LIST1:
85 self.assertEqual(self._TEST_FUNCTION_DICT[address],
86 symbol_mapping_cache.lookup(FUNCTION_SYMBOLS, address))
94 for address in self._TEST_FUNCTION_ADDRESS_LIST2:
95 self.assertEqual(self._TEST_FUNCTION_DICT[address],
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DNetworkClient.java57 * @param address The hosts internet address.
65 public void connectToServer( InetAddress address, int port, int remoteUdpPort ) throws IOException; argument

Completed in 1080 milliseconds

1234567891011>>