Searched refs:address (Results 176 - 200 of 2795) sorted by relevance

1234567891011>>

/external/smack/src/org/xbill/DNS/
H A DARecord.java9 * Address Record - maps a domain name to an Internet address
47 * @param address The address that the name refers to
50 ARecord(Name name, int dclass, long ttl, InetAddress address) { argument
52 if (Address.familyOf(address) != Address.IPv4)
53 throw new IllegalArgumentException("invalid IPv4 address");
54 addr = fromArray(address.getAddress());
64 InetAddress address = st.getAddress(Address.IPv4);
65 addr = fromArray(address.getAddress());
74 /** Returns the Internet address */
[all...]
/external/chromium_org/net/udp/
H A Dudp_socket_libevent.cc41 // Returns IPv4 address in network order.
42 int GetIPv4AddressFromIndex(int socket, uint32 index, uint32* address){ argument
44 *address = htonl(INADDR_ANY);
54 *address = reinterpret_cast<sockaddr_in*>(&ifr.ifr_addr)->sin_addr.s_addr;
119 int UDPSocketLibevent::GetPeerAddress(IPEndPoint* address) const {
121 DCHECK(address);
129 scoped_ptr<IPEndPoint> address(new IPEndPoint());
130 if (!address->FromSockAddr(storage.addr, storage.addr_len))
132 remote_address_.reset(address.release());
135 *address
167 RecvFrom(IOBuffer* buf, int buf_len, IPEndPoint* address, const CompletionCallback& callback) argument
204 SendTo(IOBuffer* buf, int buf_len, const IPEndPoint& address, const CompletionCallback& callback) argument
211 SendToOrWrite(IOBuffer* buf, int buf_len, const IPEndPoint* address, const CompletionCallback& callback) argument
244 Connect(const IPEndPoint& address) argument
254 InternalConnect(const IPEndPoint& address) argument
297 Bind(const IPEndPoint& address) argument
406 IPEndPoint address; local
463 InternalRecvFrom(IOBuffer* buf, int buf_len, IPEndPoint* address) argument
490 InternalSendTo(IOBuffer* buf, int buf_len, const IPEndPoint* address) argument
608 DoBind(const IPEndPoint& address) argument
627 RandomBind(const IPAddressNumber& address) argument
[all...]
H A Ddatagram_server_socket.h22 // Initialize this socket as a server socket listening at |address|.
24 virtual int Listen(const IPEndPoint& address) = 0;
26 // Read from a socket and receive sender address information.
29 // |address| is a buffer provided by the caller for receiving the sender
30 // address information about the received data. This buffer must be kept
32 // |address_length| is a ptr to the length of the |address| buffer. This
33 // is an input parameter containing the maximum size |address| can hold
34 // and also an output parameter for the size of |address| upon completion.
37 // If ERR_IO_PENDING is returned, the caller must keep |buf|, |address|,
41 IPEndPoint* address,
[all...]
H A Dudp_client_socket.h27 virtual int Connect(const IPEndPoint& address) OVERRIDE;
33 virtual int GetPeerAddress(IPEndPoint* address) const OVERRIDE;
34 virtual int GetLocalAddress(IPEndPoint* address) const OVERRIDE;
/external/chromium_org/ppapi/shared_impl/private/
H A Dnet_address_private_impl.cc45 // The net address interface doesn't have a normal C -> C++ thunk since it
76 // This structure is a platform-independent representation of a network address.
88 uint8_t address[kIPv6AddressSize]; member in struct:ppapi::__anon10176::NetAddress
149 void* address,
158 memcpy(address, net_addr->address, net_addr_size);
183 if (net_addr1->address[i] != net_addr2->address[i])
207 net_addr->address[0], net_addr->address[
148 GetAddress(const PP_NetAddress_Private* addr, void* address, uint16_t address_size) argument
452 IPEndPointToNetAddress( const std::vector<unsigned char>& address, int port, PP_NetAddress_Private* addr) argument
484 NetAddressToIPEndPoint( const PP_NetAddress_Private& addr, std::vector<unsigned char>* address, int* port) argument
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DSocketTransportWrapper.java54 * Starts listening for connection on given or default address.
56 * @param address address to listen or null for default address
57 * @return string representation of listening address
59 public String startListening(String address) throws IOException { argument
63 if (address != null) {
65 int i = address.indexOf(':');
67 portName = address;
69 hostName = address
135 attach(String address, long attachTimeout, long handshakeTimeout) argument
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dautodetectproxy.cc48 Url<char> url(proxy_.address.HostAsURIString());
51 proxy_.address.SetIP(url.host());
53 LOG(LS_INFO) << "AutoDetectProxy found proxy at " << proxy_.address;
94 proxy().address.hostname(),
97 IPAddress address_ip = proxy().address.ipaddr();
99 uint16 address_port = proxy().address.port();
131 LOG(LS_VERBOSE) << "Resolved " << proxy_.address << " to "
132 << resolver_->address();
133 proxy_.address = resolver_->address();
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/mappy/
H A Dbackground.js11 chrome.tabs.sendRequest(tabId, {}, function(address) {
12 addresses[tabId] = address;
13 if (!address) {
/external/chromium_org/net/disk_cache/blockfile/
H A Dstorage_block.h22 // StorageBlock<TypeA> a(file, address);
23 // StorageBlock<TypeB> b(file, address);
33 StorageBlock(MappedFile* file, Addr address);
42 bool LazyInit(MappedFile* file, Addr address);
72 const Addr address() const;
/external/chromium_org/ppapi/proxy/
H A Dhost_resolver_private_resource.cc44 PP_NetAddress_Private* address) {
45 if (!address)
52 *address = addr_resource->GetNetAddressPrivate();
42 GetNetAddress( uint32_t index, PP_NetAddress_Private* address) argument
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Daddress_data.cc132 const i18n::addressinput::AddressData& address) {
133 o << "region_code: \"" << address.region_code << "\"\n"
134 "administrative_area: \"" << address.administrative_area << "\"\n"
135 "locality: \"" << address.locality << "\"\n"
136 "dependent_locality: \"" << address.dependent_locality << "\"\n"
137 "postal_code: \"" << address.postal_code << "\"\n"
138 "sorting_code: \"" << address.sorting_code << "\"\n";
143 address.address_line.begin();
144 it != address.address_line.end(); ++it) {
148 o << "language_code: \"" << address
131 operator <<(std::ostream& o, const i18n::addressinput::AddressData& address) argument
[all...]
/external/chromium_org/v8/src/arm64/
H A Dcpu-arm64.cc43 void CpuFeatures::FlushICache(void* address, size_t length) { argument
47 // TODO(all): consider doing some cache simulation to ensure every address
49 USE(address);
56 uintptr_t start = reinterpret_cast<uintptr_t>(address);
96 // va : by address
/external/lldb/include/lldb/Expression/
H A DClangUtilityFunction.h86 ContainsAddress (lldb::addr_t address) argument
90 return (address >= m_jit_start_addr && address < m_jit_end_addr);
/external/chromium_org/content/renderer/p2p/
H A Dsocket_client_impl.h35 // specified |address|. |address| matters only when |type| is set to
42 // Send the |data| to the |address|.
43 virtual void Send(const net::IPEndPoint& address,
46 // Send the |data| to the |address| using Differentiated Services Code Point
48 virtual void SendWithDscp(const net::IPEndPoint& address,
79 void OnIncomingTcpConnection(const net::IPEndPoint& address);
83 void OnDataReceived(const net::IPEndPoint& address,
91 const net::IPEndPoint& address,
95 void DeliverOnDataReceived(const net::IPEndPoint& address,
[all...]
H A Dsocket_client_delegate.h22 // Called after the socket has been opened with the local endpoint address
24 // you should not rely on the local endpoint address if possible.
30 virtual void OnIncomingTcpConnection(const net::IPEndPoint& address,
40 virtual void OnDataReceived(const net::IPEndPoint& address,
/external/chromium_org/extensions/browser/api/dns/
H A Ddns_apitest.cc63 std::string address; local
64 EXPECT_TRUE(dict->GetString("address", &address));
65 EXPECT_EQ("127.0.0.1", address);
87 std::string address; local
88 EXPECT_TRUE(dict->GetString("address", &address));
89 EXPECT_EQ(MockHostResolverCreator::kAddress, address);
/external/chromium_org/remoting/client/plugin/
H A Dpepper_network_manager.cc77 rtc::SocketAddress address; local
78 PpNetAddressToSocketAddress(addresses[i], &address);
80 if (address.family() == AF_INET6 && IPIsSiteLocal(address.ipaddr())) {
88 list.GetName(i), list.GetDisplayName(i), address.ipaddr(), 0);
89 network->AddIP(address.ipaddr());
/external/deqp/executor/
H A DxeLocalTcpIpLink.cpp70 de::SocketAddress address; local
71 address.setFamily (DE_SOCKETFAMILY_INET4);
72 address.setProtocol (DE_SOCKETPROTOCOL_TCP);
73 address.setHost ("127.0.0.1");
74 address.setPort (port);
85 m_link.connect(address);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DPositionList.java149 /** {@code >= 0;} address of this entry */
150 private final int address; field in class:PositionList.Entry
158 * @param address {@code >= 0;} address of this entry
161 public Entry (int address, SourcePosition position) { argument
162 if (address < 0) {
163 throw new IllegalArgumentException("address < 0");
170 this.address = address;
175 * Gets the address
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DGeocoderTest.java39 Address address = geocoder.getFromLocationName("731 Market St, San Francisco, CA 94103", 1).get(0);
40 assertTrue(address.hasLatitude());
41 assertTrue(address.hasLongitude());
43 address = geocoder.getFromLocationName("731 Market St, San Francisco, CA 94103", 1).get(0);
44 assertFalse(address.hasLatitude());
45 assertFalse(address.hasLongitude());
/external/chromium_org/chrome/browser/chromeos/power/
H A Dperipheral_battery_observer.cc46 // Here the bluetooth address is showed in reverse order and its true
47 // address "FF:EE:DD:CC:BB:AA".
67 std::string address = JoinString(result, ':'); local
68 return address;
119 std::string address; local
121 // For HID bluetooth device, device address is used as key to index
123 address = ExtractBluetoothAddress(path);
129 if (address.empty()) {
130 LOG(ERROR) << "No valid battery address at path " << path;
141 CancelNotification(address);
188 RemoveBattery(const std::string& address) argument
200 PostNotification(const std::string& address, const BatteryInfo& battery) argument
241 CancelNotification(const std::string& address) argument
[all...]
/external/chromium_org/extensions/browser/api/socket/
H A Dudp_socket.h21 virtual void Connect(const std::string& address,
25 virtual int Bind(const std::string& address, int port) OVERRIDE;
31 const std::string& address,
37 virtual bool GetPeerAddress(net::IPEndPoint* address) OVERRIDE;
38 virtual bool GetLocalAddress(net::IPEndPoint* address) OVERRIDE;
43 int JoinGroup(const std::string& address);
44 int LeaveGroup(const std::string& address);
62 scoped_refptr<IPEndPoint> address,
/external/chromium_org/net/socket/
H A Dserver_socket.h26 virtual int Listen(const IPEndPoint& address, int backlog) = 0;
28 // Binds the socket with address and port, and starts listening. It expects
29 // a valid IPv4 or IPv6 address. Otherwise, it returns ERR_ADDRESS_INVALID.
36 // Gets current address the socket is bound to.
37 virtual int GetLocalAddress(IPEndPoint* address) const = 0;
H A Dtcp_socket_libevent.h33 int Bind(const IPEndPoint& address);
37 IPEndPoint* address,
40 int Connect(const IPEndPoint& address, const CompletionCallback& callback);
49 int GetLocalAddress(IPEndPoint* address) const;
50 int GetPeerAddress(IPEndPoint* address) const;
140 IPEndPoint* address,
144 IPEndPoint* address,
147 IPEndPoint* address);
/external/chromium_org/ppapi/c/
H A Dppb_file_mapping.h34 /** Requests read access to the mapped address. */
36 /** Requests write access to the mapped address. */
60 * Forces Map() to map the file contents at the provided |address|. If Map()
97 * @param[inout] address The value of <code>*address</code>, if non-NULL,
100 * <code>address</code>. Upon Map() completing, <code>*address</code> will
102 * plugin provides a non-NULL <code>*address</code>, it must be a multiple of
115 void** address,
118 * Unmap() deletes the mapping of the specified address
[all...]

Completed in 928 milliseconds

1234567891011>>