Searched refs:address (Results 126 - 150 of 2096) sorted by relevance

1234567891011>>

/external/chromium/sdch/open-vcdiff/src/
H A Daddrcache.cc105 // This method will be called whenever an address is calculated for an
114 // address: This must be a valid address between 0 and
118 void VCDiffAddressCache::UpdateCache(VCDAddress address) { argument
120 near_addresses_[next_slot_] = address;
124 same_addresses_[address % (same_cache_size_ * 256)] = address;
128 // Determines the address mode that yields the most compact encoding
129 // of the given address value, writes the encoded address int
154 EncodeAddress(VCDAddress address, VCDAddress here_address, VCDAddress* encoded_addr) argument
[all...]
/external/chromium_org/chromeos/network/
H A Dnetwork_ip_config.cc32 const std::string& address, const std::string& netmask,
36 address(address),
47 + " address: " + address
30 NetworkIPConfig( const std::string& device_path, IPConfigType type, const std::string& address, const std::string& netmask, const std::string& gateway, const std::string& name_servers) argument
/external/chromium_org/device/bluetooth/
H A Dbluetooth_adapter.cc41 BluetoothDevice* BluetoothAdapter::GetDevice(const std::string& address) { argument
43 const_cast<const BluetoothAdapter *>(this)->GetDevice(address));
47 const std::string& address) const {
48 DevicesMap::const_iterator iter = devices_.find(address);
/external/chromium_org/net/udp/
H A Ddatagram_client_socket.h20 // Initialize this socket as a client socket to server at |address|.
22 virtual int Connect(const IPEndPoint& address) = 0;
H A Dudp_client_socket.cc21 int UDPClientSocket::Connect(const IPEndPoint& address) { argument
22 return socket_.Connect(address);
41 int UDPClientSocket::GetPeerAddress(IPEndPoint* address) const {
42 return socket_.GetPeerAddress(address);
45 int UDPClientSocket::GetLocalAddress(IPEndPoint* address) const {
46 return socket_.GetLocalAddress(address);
/external/chromium_org/sandbox/win/src/
H A Dresolver.cc45 const void** address) {
46 DCHECK_NT(address);
54 *address = pe.GetProcAddress(interceptor_name);
56 if (!(*address))
43 ResolveInterceptor(const void* interceptor_module, const char* interceptor_name, const void** address) argument
/external/chromium_org/sdch/open-vcdiff/src/
H A Daddrcache.cc105 // This method will be called whenever an address is calculated for an
114 // address: This must be a valid address between 0 and
118 void VCDiffAddressCache::UpdateCache(VCDAddress address) { argument
120 near_addresses_[next_slot_] = address;
124 same_addresses_[address % (same_cache_size_ * 256)] = address;
128 // Determines the address mode that yields the most compact encoding
129 // of the given address value, writes the encoded address int
154 EncodeAddress(VCDAddress address, VCDAddress here_address, VCDAddress* encoded_addr) argument
[all...]
/external/kernel-headers/original/asm-generic/
H A D4level-fixup.h13 #define pmd_alloc(mm, pud, address) \
14 ((unlikely(pgd_none(*(pud))) && __pmd_alloc(mm, pud, address))? \
15 NULL: pmd_offset(pud, address))
17 #define pud_alloc(mm, pgd, address) (pgd)
/external/nist-sip/java/gov/nist/core/net/
H A DAddressResolver.java31 import javax.sip.address.Hop;
34 * An interface that allows you to customize address lookup.
37 * The default implementation of the address resolver does nothing more than just return back
53 * Do a name lookup and resolve the given IP address.
57 * @param hop - an incoming Hop containing a potenitally unresolved address.
58 * @return a new hop ( if the address is recomputed ) or the original hop
/external/nist-sip/java/javax/sip/address/
H A DURI.java1 package javax.sip.address;
/external/nist-sip/java/javax/sip/header/
H A DAlertInfoHeader.java3 import javax.sip.address.URI;
H A DWWWAuthenticateHeader.java3 import javax.sip.address.URI;
/external/open-vcdiff/src/
H A Daddrcache.cc105 // This method will be called whenever an address is calculated for an
114 // address: This must be a valid address between 0 and
118 void VCDiffAddressCache::UpdateCache(VCDAddress address) { argument
120 near_addresses_[next_slot_] = address;
124 same_addresses_[address % (same_cache_size_ * 256)] = address;
128 // Determines the address mode that yields the most compact encoding
129 // of the given address value, writes the encoded address int
154 EncodeAddress(VCDAddress address, VCDAddress here_address, VCDAddress* encoded_addr) argument
[all...]
/external/chromium/net/base/
H A Dip_endpoint.cc21 IPEndPoint::IPEndPoint(const IPAddressNumber& address, int port) argument
22 : address_(address),
39 NOTREACHED() << "Bad IP address";
45 bool IPEndPoint::ToSockAddr(struct sockaddr* address, argument
47 DCHECK(address);
54 struct sockaddr_in* addr = reinterpret_cast<struct sockaddr_in*>(address);
66 reinterpret_cast<struct sockaddr_in6*>(address);
74 NOTREACHED() << "Bad IP address";
81 bool IPEndPoint::FromSockAddr(const struct sockaddr* address, argument
83 DCHECK(address);
[all...]
/external/chromium/net/udp/
H A Dudp_socket_win.h30 // Connect the socket to connect with a certain |address|.
32 int Connect(const IPEndPoint& address);
34 // Bind the address/port for this socket to |address|. This is generally
37 int Bind(const IPEndPoint& address);
42 // Copy the remote udp address into |address| and return a network error code.
43 int GetPeerAddress(IPEndPoint* address) const;
45 // Copy the local udp address into |address| an
[all...]
/external/nist-sip/java/gov/nist/core/
H A DHost.java58 * Determines whether or not we should tolerate and strip address scope
76 /** address field
92 /** Constructor given host name or IP address.
164 * Convenience function to get the raw IP destination address
195 *@param address is the address string to set.
197 public void setHostAddress(String address) { argument
198 setHost(address, IPV4ADDRESS);
202 * Sets the host address or name of this object.
204 * @param host that host address/nam
241 setAddress(String address) argument
282 isIPv6Address(String address) argument
290 isIPv6Reference(String address) argument
[all...]
/external/chromium/net/socket/
H A Dserver_socket.h23 virtual int Listen(const net::IPEndPoint& address, int backlog) = 0;
25 // Gets current address the socket is bound to.
26 virtual int GetLocalAddress(IPEndPoint* address) const = 0;
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dmock_wallet_client.cc19 scoped_ptr<Address> address,
23 address.get(),
17 SaveToWallet( scoped_ptr<Instrument> instrument, scoped_ptr<Address> address, const WalletItems::MaskedInstrument* reference_instrument, const Address* reference_address) argument
/external/chromium_org/content/renderer/p2p/
H A Dsocket_client_impl.h34 // specified |address|. |address| matters only when |type| is set to
41 // Send the |data| to the |address|.
42 virtual void Send(const net::IPEndPoint& address,
45 // Send the |data| to the |address| using Differentiated Services Code Point
47 virtual void SendWithDscp(const net::IPEndPoint& address,
73 void OnSocketCreated(const net::IPEndPoint& address);
74 void OnIncomingTcpConnection(const net::IPEndPoint& address);
78 void OnDataReceived(const net::IPEndPoint& address,
83 void DeliverOnSocketCreated(const net::IPEndPoint& address);
[all...]
/external/chromium_org/net/socket/
H A Dserver_socket.h24 virtual int Listen(const net::IPEndPoint& address, int backlog) = 0;
26 // Gets current address the socket is bound to.
27 virtual int GetLocalAddress(IPEndPoint* address) const = 0;
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAddressParameters.java6 import javax.sip.address.Address;
19 * @param address Address to set
21 public abstract void setAddress(Address address); argument
/external/qemu/telephony/
H A Dsms.h51 extern int sms_address_from_str( SmsAddress address, const char* src, int srclen );
52 extern int sms_address_to_str( SmsAddress address, char* src, int srclen );
54 extern int sms_address_from_bytes( SmsAddress address, const unsigned char* buf, int buflen );
55 extern int sms_address_to_bytes ( SmsAddress address, unsigned char* buf, int bufsize );
56 extern int sms_address_from_hex ( SmsAddress address, const char* hex, int hexlen );
57 extern int sms_address_to_hex ( SmsAddress address, char* hex, int hexsize );
87 /* retrieve the sender address of a SMS-DELIVER pdu, returns -1 otherwise */
88 extern int smspdu_get_sender_address( SmsPDU pdu, SmsAddress address );
93 /* retrieve the receiver address of a SMS-SUBMIT pdu, return -1 otherwise */
94 extern int smspdu_get_receiver_address( SmsPDU pdu, SmsAddress address );
[all...]
/external/v8/src/
H A Dic-inl.h41 Address IC::address() const { function in class:v8::internal::IC
42 // Get the address of the call.
47 // First check if any break points are active if not just return the address
54 // If the call site is a call to debug break then return the address in
55 // the original code instead of the address in the running code. This will
60 // No break point here just return the address of the call.
69 Code* IC::GetTargetAtAddress(Address address) { argument
70 // Get the target address of the IC.
71 Address target = Assembler::target_address_at(address);
72 // Convert target address t
80 SetTargetAtAddress(Address address, Code* target) argument
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_udp_socket_private.h23 std::string GetLocalAddress(PP_NetAddress_Private* address);
26 PP_NetAddress_Private *address);
28 PP_NetAddress_Private* address);
30 PP_NetAddress_Private *address);
32 PP_NetAddress_Private* address,
37 PP_NetAddress_Private* address,
/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);

Completed in 613 milliseconds

1234567891011>>