Searched refs:address (Results 276 - 300 of 2096) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/ui/surface/
H A Dtransport_dib_gtk.cc20 // The shmat system call uses this as it's invalid return address
55 void* address = shmat(shmkey, NULL /* desired address */, 0 /* flags */); local
60 if (address == kInvalidAddress)
66 dib->address_ = address;
114 void* address = shmat(key_.shmkey, NULL /* desired address */, 0 /* flags */); local
115 if (address == kInvalidAddress)
118 address_ = address;
/external/qemu/memcheck/
H A Dmemcheck_proc_management.h221 * matching given address range.
229 target_ulong address,
232 return allocmap_find(&proc->alloc_map, address, block_size);
236 * matching given address.
243 procdesc_find_malloc(ProcDesc* proc, target_ulong address) argument
245 return procdesc_find_malloc_for_range(proc, address, 1);
249 * the given process, matching given address.
256 procdesc_pull_malloc(ProcDesc* proc, target_ulong address, MallocDescEx* pulled) argument
258 return allocmap_pull(&proc->alloc_map, address, pulled);
273 /* Finds mmapping entry for the given address i
228 procdesc_find_malloc_for_range(ProcDesc* proc, target_ulong address, uint32_t block_size) argument
[all...]
/external/chromium_org/net/udp/
H A Dudp_socket_win.cc60 // The address storage passed to WSARecvFrom().
209 int UDPSocketWin::GetPeerAddress(IPEndPoint* address) const {
211 DCHECK(address);
220 scoped_ptr<IPEndPoint> address(new IPEndPoint());
221 if (!address->FromSockAddr(storage.addr, storage.addr_len))
223 remote_address_.reset(address.release());
226 *address = *remote_address_;
230 int UDPSocketWin::GetLocalAddress(IPEndPoint* address) const {
232 DCHECK(address);
241 scoped_ptr<IPEndPoint> address(ne
259 RecvFrom(IOBuffer* buf, int buf_len, IPEndPoint* address, const CompletionCallback& callback) argument
285 SendTo(IOBuffer* buf, int buf_len, const IPEndPoint& address, const CompletionCallback& callback) argument
292 SendToOrWrite(IOBuffer* buf, int buf_len, const IPEndPoint* address, const CompletionCallback& callback) argument
313 Connect(const IPEndPoint& address) argument
323 InternalConnect(const IPEndPoint& address) argument
363 Bind(const IPEndPoint& address) argument
466 IPEndPoint address; local
510 InternalRecvFrom(IOBuffer* buf, int buf_len, IPEndPoint* address) argument
550 InternalSendTo(IOBuffer* buf, int buf_len, const IPEndPoint* address) argument
637 in_addr address; local
663 DoBind(const IPEndPoint& address) argument
678 RandomBind(const IPAddressNumber& address) argument
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_tcp_server_socket_private.cc62 PP_NetAddress_Private* address) {
69 ASSERT_TRUE(socket.GetLocalAddress(address));
106 PP_NetAddress_Private* address) {
109 socket->ConnectWithNetAddress(address, callback.GetCallback()));
116 PP_NetAddress_Private* address) {
119 error_message = SyncConnect(socket, address);
125 PP_NetAddress_Private* address,
129 if (!NetAddressPrivate::ReplacePort(base_address, 0, address))
133 socket->Listen(address, backlog, callback.GetCallback()));
136 int32_t rv = socket->GetLocalAddress(address);
61 GetLocalAddress( PP_NetAddress_Private* address) argument
104 SyncConnect( TCPSocketPrivate* socket, PP_NetAddress_Private* address) argument
115 ForceConnect(TCPSocketPrivate* socket, PP_NetAddress_Private* address) argument
123 SyncListen( TCPServerSocketPrivate* socket, PP_NetAddress_Private* address, int32_t backlog) argument
146 PP_NetAddress_Private address; local
204 PP_NetAddress_Private address; local
[all...]
/external/chromium_org/remoting/client/plugin/
H A Dpepper_packet_socket_factory.cc47 const talk_base::SocketAddress& address,
60 const pp::NetAddress& address);
63 pp::NetAddress address; member in struct:remoting::__anon10419::UdpPacketSocket::PendingPacket
72 void OnReadCompleted(int result, pp::NetAddress address);
73 void HandleReadResult(int result, pp::NetAddress address);
103 const pp::NetAddress& address)
105 address(address) {
160 pp::NetAddress address = socket_.GetBoundAddress(); local
161 PpNetAddressToSocketAddress(address,
100 PendingPacket( const void* buffer, int buffer_size, const pp::NetAddress& address) argument
202 SendTo(const void* data, size_t data_size, const talk_base::SocketAddress& address, talk_base::DiffServCodePoint dscp) argument
320 OnReadCompleted(int result, pp::NetAddress address) argument
327 HandleReadResult(int result, pp::NetAddress address) argument
[all...]
/external/chromium_org/net/base/
H A Daddress_tracker_linux.cc20 // Retrieves address from NETLINK address message.
40 unsigned char* address = NULL; local
50 address = reinterpret_cast<unsigned char*>(RTA_DATA(attr));
61 address = local;
62 if (!address)
64 out->assign(address, address + address_length);
246 IPAddressNumber address; local
247 if (GetAddress(header, &address)) {
264 IPAddressNumber address; local
[all...]
/external/chromium_org/remoting/jingle_glue/
H A Dchromium_socket_factory.cc52 const talk_base::SocketAddress& address,
65 const net::IPEndPoint& address);
68 net::IPEndPoint address; member in struct:remoting::__anon10528::UdpPacketSocket::PendingPacket
87 // Receive buffer and address are populated by asynchronous reads.
101 const net::IPEndPoint& address)
103 address(address) {
129 net::IPEndPoint(local_endpoint.address(), port));
173 const talk_base::SocketAddress& address,
185 if (!jingle_glue::SocketAddressToIPEndPoint(address,
98 PendingPacket( const void* buffer, int buffer_size, const net::IPEndPoint& address) argument
172 SendTo(const void* data, size_t data_size, const talk_base::SocketAddress& address, talk_base::DiffServCodePoint dscp) argument
324 talk_base::SocketAddress address; local
[all...]
/external/smack/src/org/xbill/DNS/
H A DSimpleResolver.java29 private InetSocketAddress address; field in class:SimpleResolver
57 address = new InetSocketAddress(addr, DEFAULT_PORT);
72 * Gets the destination address associated with this SimpleResolver.
73 * Messages sent using this SimpleResolver will be sent to this address.
74 * @return The destination address associated with this SimpleResolver.
78 return address;
89 address = new InetSocketAddress(address.getAddress(), port);
93 * Sets the address of the server to communicate with.
94 * @param addr The address o
[all...]
/external/chromium/net/disk_cache/
H A Dblock_files.cc223 MappedFile* BlockFiles::GetFile(Addr address) { argument
226 DCHECK(address.is_block_file() || !address.is_initialized());
227 if (!address.is_initialized())
230 int file_index = address.FileNumber();
269 Addr address(block_type, block_count, header->this_file, index);
270 block_address->set_value(address.value());
271 Trace("CreateBlock 0x%x", address.value());
275 void BlockFiles::DeleteBlock(Addr address, bool deep) { argument
277 if (!address
340 IsValid(Addr address) argument
[all...]
/external/chromium_org/net/disk_cache/
H A Dblock_files.cc298 MappedFile* BlockFiles::GetFile(Addr address) { argument
302 DCHECK(address.is_block_file() || !address.is_initialized());
303 if (!address.is_initialized())
306 int file_index = address.FileNumber();
341 Addr address(block_type, block_count, file_header.FileId(), index);
342 block_address->set_value(address.value());
343 Trace("CreateBlock 0x%x", address.value());
347 void BlockFiles::DeleteBlock(Addr address, bool deep) { argument
349 if (!address
415 IsValid(Addr address) argument
[all...]
/external/v8/tools/
H A Dgrokdump.py138 ("address", ctypes.c_uint64),
422 def IsValidAddress(self, address):
423 return self.FindLocation(address) is not None
425 def ReadU8(self, address):
426 location = self.FindLocation(address)
429 def ReadU32(self, address):
430 location = self.FindLocation(address)
433 def ReadU64(self, address):
434 location = self.FindLocation(address)
437 def ReadUIntPtr(self, address)
[all...]
/external/apache-http/src/org/apache/http/conn/params/
H A DConnRouteParamBean.java58 public void setLocalAddress (final InetAddress address) { argument
59 params.setParameter(ConnRoutePNames.LOCAL_ADDRESS, address);
/external/chromium/net/base/
H A Daddress_list.h22 // Constructs an empty address list.
25 // Constructs an address list for a single IP literal. If
27 // canonicalized IP address.
28 AddressList(const IPAddressNumber& address, int port, bool canonicalize_name);
58 // Sets the address to match |src|, and have each sockaddr's port be |port|.
63 // Gets the canonical name for the address.
70 // Clears all data from this address list. This leaves the list in the same
77 // Constructs an address list for a single socket address.
78 // |address| th
[all...]
/external/chromium/net/socket/
H A Dclient_socket.h61 // Copies the peer address to |address| and returns a network error code.
64 virtual int GetPeerAddress(AddressList* address) const = 0;
66 // Copies the local address to |address| and returns a network error code.
68 virtual int GetLocalAddress(IPEndPoint* address) const = 0;
H A Dtcp_server_socket_libevent.h28 virtual int Listen(const net::IPEndPoint& address, int backlog);
29 virtual int GetLocalAddress(IPEndPoint* address) const;
H A Dtcp_server_socket_win.h30 virtual int Listen(const net::IPEndPoint& address, int backlog);
31 virtual int GetLocalAddress(IPEndPoint* address) const;
/external/chromium/net/tools/flip_server/
H A Dacceptor_thread.cc117 struct sockaddr address; local
118 socklen_t socklen = sizeof(address);
119 int fd = accept(acceptor_->listen_fd_, &address, &socklen);
129 HandleConnection(fd, (struct sockaddr_in *)&address);
133 struct sockaddr address; local
134 socklen_t socklen = sizeof(address);
135 int fd = accept(acceptor_->listen_fd_, &address, &socklen);
145 HandleConnection(fd, (struct sockaddr_in *)&address);
/external/chromium_org/base/debug/
H A Dprofiler.h40 // There's a class of profilers that use "return address swizzling" to get a
43 // time a function is invoked. The hook then switches the return address on the
44 // stack for the address of an exit hook function, and pushes the original
45 // return address to a shadow stack of some type. When in due course the CPU
47 // does on function exit, then arrange to return to the original return address.
49 // return address, as does e.g. V8. V8 uses the return address to certain
52 // A return address resolution function is used to fix this. It allows such
53 // programs to resolve a location on stack where a return address originally
72 typedef void (*AddDynamicSymbol)(const void* address,
[all...]
/external/chromium_org/base/process/
H A Dmemory_win.cc20 // address 0 for an attacker to utilize.
74 HMODULE GetModuleFromAddress(void* address) { argument
78 static_cast<char*>(address),
/external/chromium_org/chrome/browser/extensions/api/bluetooth/
H A Dbluetooth_api_utils.cc19 out->address = device.GetAddress();
31 out->address = adapter.GetAddress();
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dbrowser_options.js42 * address: string,
56 BrowserOptions.removeBluetoothDevice = function(address) {
/external/chromium_org/chromeos/network/
H A Dnetwork_ip_config.h32 const std::string& address, const std::string& netmask,
40 std::string address; member in struct:chromeos::NetworkIPConfig
48 // Used to return the list of IP configs and hardware address from an
49 // asynchronous call to Shill. The hardware address is usually a MAC address
51 // hardware address is found.
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dmock_wallet_client.h46 scoped_ptr<Address> address,
52 Address* address,
/external/chromium_org/content/public/renderer/
H A Dp2p_socket_client.h26 // the specified |address|. |address| matters only when |type| is set to
37 // Send the |data| to the |address|.
38 virtual void Send(const net::IPEndPoint& address,
41 // Send the |data| to the |address| using Differentiated Services Code Point
43 virtual void SendWithDscp(const net::IPEndPoint& address,
/external/chromium_org/content/renderer/p2p/
H A Dsocket_dispatcher.cc130 const net::IPAddressNumber& address) {
137 request->OnResponse(address);
141 int socket_id, const net::IPEndPoint& address) {
144 client->OnSocketCreated(address);
149 int socket_id, const net::IPEndPoint& address) {
152 client->OnIncomingTcpConnection(address);
171 int socket_id, const net::IPEndPoint& address,
176 client->OnDataReceived(address, data, timestamp);
128 OnGetHostAddressResult( int32 request_id, const net::IPAddressNumber& address) argument
140 OnSocketCreated( int socket_id, const net::IPEndPoint& address) argument
148 OnIncomingTcpConnection( int socket_id, const net::IPEndPoint& address) argument
170 OnDataReceived( int socket_id, const net::IPEndPoint& address, const std::vector<char>& data, const base::TimeTicks& timestamp) argument

Completed in 1861 milliseconds

<<11121314151617181920>>