Searched defs:address (Results 226 - 250 of 877) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/local_discovery/
H A Dservice_discovery_client.h36 // The address (in host/port format) for the service (from SRV record).
37 net::HostPortPair address; member in struct:local_discovery::ServiceDescription
40 // IP address of the service, if available from cache. May be empty.
77 // address and metadata. See |ServiceDiscoveryClient::CreateServiceResolver|.
/external/chromium_org/chromeos/dbus/
H A Dbluetooth_device_client.h27 // The Bluetooth device address of the device. Read-only.
28 dbus::Property<std::string> address; member in struct:chromeos::BluetoothDeviceClient::Properties
/external/chromium_org/chromeos/network/
H A Dhost_resolver_impl_chromeos.cc78 std::string method, address; variable
80 ip_config->GetString(shill::kAddressProperty, &address)) {
82 ipv4_address = address;
84 ipv6_address = address;
170 // Use IPConfig data for localhost address lookup.
H A Dhost_resolver_impl_chromeos_unittest.cc66 // the ip address values.
134 const std::string& address) {
138 base::StringValue(address),
132 SetIPConfig(const std::string& path, const std::string& method, const std::string& address) argument
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dinstrument.h40 // Convert the info in |card| to an Instrument using |profile| for address.
50 scoped_ptr<Address> address);
66 const Address* address() const { return address_.get(); } function in class:autofill::wallet::Instrument
89 // The billing address of the instrument.
/external/chromium_org/components/proximity_auth/
H A Dbluetooth_connection.cc118 const std::string address = remote_device().bluetooth_address; local
119 device::BluetoothDevice* bluetooth_device = adapter->GetDevice(address);
121 VLOG(1) << "[BC] Device with address " << address
H A Dbluetooth_util_chromeos.cc54 "Given address is not a valid Bluetooth device.";
70 // Writes |address| into the |result|. Return true on success, false if the
71 // |address| is not a valid Bluetooth address.
72 bool BluetoothAddressToBdaddr(const std::string& address, bdaddr_t* result) { argument
73 std::string canonical_address = BluetoothDevice::CanonicalizeAddress(address);
/external/chromium_org/content/browser/renderer_host/p2p/
H A Dsocket_host_udp.cc104 net::IPEndPoint address; local
105 result = socket_->GetLocalAddress(&address);
107 LOG(ERROR) << "P2PSocketHostUdp::Init(): unable to get local address: "
112 VLOG(1) << "Local address: " << address.ToString();
116 // NOTE: Remote address will be same as what renderer provided.
118 id_, address, remote_address.ip_address));
H A Dsocket_host_udp_unittest.cc52 virtual int GetPeerAddress(net::IPEndPoint* address) const OVERRIDE {
57 virtual int GetLocalAddress(net::IPEndPoint* address) const OVERRIDE {
58 *address = address_;
62 virtual int Listen(const net::IPEndPoint& address) OVERRIDE {
63 address_ = address;
68 net::IPEndPoint* address,
76 *address = incoming_packets_.front().first;
83 recv_address_ = address;
89 const net::IPEndPoint& address,
93 sent_packets_->push_back(UDPPacket(address, data_vecto
105 ReceivePacket(const net::IPEndPoint& address, std::vector<char> data) argument
[all...]
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_host_resolver_message_filter.cc68 PP_NetAddress_Private address; local
71 list[i].address(), list[i].port(), &address)) {
75 net_address_list->push_back(address);
H A Dpepper_tcp_server_socket_message_filter.cc165 net::IPAddressNumber address; local
168 !NetAddressPrivateImpl::NetAddressToIPEndPoint(addr, &address, &port)) {
179 net::IPEndPoint ip_end_point(address, port);
223 end_point.address(), end_point.port(), &addr)) {
262 ip_end_point_local.address(),
266 accepted_address_.address(),
/external/chromium_org/content/common/android/
H A Daddress_parser.cc13 // Minimum number of words in an address after the house number
18 // Maximum number of words allowed in an address between the house number
22 // Maximum number of lines allowed in an address between the house number
26 // Maximum length allowed for any address word between the house number
51 bool FindAddress(const base::string16& text, base::string16* address) { argument
55 address->assign(text.substr(start, len));
102 // Check the number of address lines.
116 // the next house number as no address can hold this word.
150 // anything that starts with a number before a legitimate address.
204 // Avoid skipping too many words because of a non-address numbe
[all...]
/external/chromium_org/device/bluetooth/
H A Dbluetooth_adapter.cc71 BluetoothDevice* BluetoothAdapter::GetDevice(const std::string& address) { argument
73 const_cast<const BluetoothAdapter *>(this)->GetDevice(address));
77 const std::string& address) const {
79 BluetoothDevice::CanonicalizeAddress(address);
H A Dbluetooth_service_record_win.cc100 BTH_ADDR ConvertToBthAddr(const std::string& address) { argument
104 numbers_only += address.substr(i * 3, 2);
H A Dbluetooth_task_manager_win.h42 std::string address; member in struct:device::BluetoothTaskManagerWin::AdapterState
64 std::string address; // This uniquely identifies the device. member in struct:device::BluetoothTaskManagerWin::DeviceState
86 // to an active discovery session. Note that for a given device (address),
/external/chromium_org/extensions/browser/api/socket/
H A Dsocket.cc92 int Socket::Listen(const std::string& address, argument
129 void Socket::IPEndPointToStringAndPort(const net::IPEndPoint& address, argument
134 *ip_address_str = address.ToStringWithoutPort();
138 *port = address.port();
/external/chromium_org/extensions/browser/api/sockets_udp/
H A Dudp_socket_event_dispatcher.cc102 const std::string& address,
115 receive_info.remote_address = address;
98 ReceiveCallback( const ReceiveParams& params, int bytes_read, scoped_refptr<net::IOBuffer> io_buffer, const std::string& address, int port) argument
/external/chromium_org/gpu/command_buffer/client/
H A Dbuffer_tracker.h31 void* address)
36 address_(address),
58 void* address() const { function in class:gpu::gles2::BufferTracker::Buffer
27 Buffer(GLuint id, unsigned int size, int32 shm_id, uint32 shm_offset, void* address) argument
H A Dtransfer_buffer.h118 // address of result area
162 void* address() const { function in class:gpu::ScopedTransferBufferPtr
189 return static_cast<T*>(address());
/external/chromium_org/jingle/glue/
H A Dchrome_async_socket.cc87 bool ChromeAsyncSocket::Connect(const rtc::SocketAddress& address) { argument
93 if (address.hostname().empty() || address.port() == 0) {
107 net::HostPortPair dest_host_port_pair(address.hostname(), address.port());
/external/chromium_org/mojo/spy/
H A Dwebsocket_server.cc49 net::IPEndPoint address; local
50 int error = web_server_->GetLocalAddress(&address);
51 port_ = address.port();
/external/chromium_org/native_client_sdk/src/examples/api/network_monitor/
H A Dnetwork_monitor.cc40 static std::string GetNetAddressAsString(pp::NetAddress address);
138 pp::NetAddress address) {
140 return address.DescribeAsString(include_port).AsString();
137 GetNetAddressAsString( pp::NetAddress address) argument
/external/chromium_org/net/disk_cache/blockfile/
H A Dblock_bitmaps_v3.cc48 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) { argument
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
88 IsValid(Addr address) argument
106 GetHeaderNumber(Addr address) argument
[all...]
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 Dstorage_block-inl.h17 Addr address)
18 : data_(NULL), file_(file), address_(address), modified_(false),
20 if (address.num_blocks() > 1)
22 DCHECK(!address.is_initialized() || sizeof(*data_) == address.BlockSize());
46 Addr address) {
52 address_.set_value(address.value());
53 if (address.num_blocks() > 1)
56 DCHECK(sizeof(*data_) == address.BlockSize());
114 template<typename T> const Addr StorageBlock<T>::address() cons function in class:disk_cache::StorageBlock
16 StorageBlock(MappedFile* file, Addr address) argument
45 LazyInit(MappedFile* file, Addr address) argument
[all...]

Completed in 3358 milliseconds

1234567891011>>