Searched defs:peer (Results 1 - 25 of 137) sorted by relevance

123456

/external/chromium_org/net/server/
H A Dhttp_server_request_info.h34 // Request peer address.
35 IPEndPoint peer; member in class:net::HttpServerRequestInfo
/external/iptables/include/libipq/
H A Dlibipq.h53 struct sockaddr_nl peer; member in struct:ipq_handle
/external/chromium_org/device/nfc/
H A Dnfc_peer.h21 // - NDEF. Specifically, reading NDEF records found on the peer device and
35 // Interface for observing changes from NFC peer devices.
40 // This method will be called when an NDEF record |record| from the peer
41 // device |peer| is received. Users can use this method to be notified of
43 // received from it, if any. All records received from |peer| can be
44 // accessed by calling |peer->GetNdefMessage()|.
45 virtual void RecordReceived(NfcPeer* peer, const NfcNdefRecord* record) {} argument
53 // Adds and removes observers for events on this NFC peer. If monitoring
54 // multiple peers, check the |peer| parameter of observer methods to
55 // determine which peer i
[all...]
H A Dnfc_adapter.cc59 void NfcAdapter::SetPeer(const std::string& identifier, NfcPeer* peer) { argument
61 VLOG(1) << "Peer object for peer \"" << identifier << "\" already exists.";
64 peers_[identifier] = peer;
81 VLOG(1) << "Peer object for peer \"" << identifier << "\" not found.";
84 NfcPeer* peer = iter->second; local
86 return peer;
H A Dnfc_adapter.h56 // was never started or because a connection with a tag or peer has been
74 // Called when a remote NFC adapter |peer| has been detected, which is
75 // available for peer-to-peer communication over NFC. The observer can use
76 // this method to take further action on |peer| such as reading its records
77 // or pushing NDEFs to it. While |peer| will be valid within the context of
79 // the object may get destroyed if the connection with the peer is lost.
81 // peer's assigned unique identifier instead, which can be used to obtain a
82 // pointer to the peer, as long as it exists.
83 virtual void PeerFound(NfcAdapter* adaper, NfcPeer* peer) {} argument
87 PeerLost(NfcAdapter* adapter, NfcPeer* peer) argument
[all...]
H A Dnfc_adapter_chromeos.cc185 VLOG(1) << "Found peer device does not belong to the current adapter.";
189 // Create the peer object.
198 device::NfcPeer* peer = RemovePeer(object_path.value()); local
199 if (!peer) {
200 VLOG(1) << "Removed peer device does not belong to the current adapter.";
203 FOR_EACH_OBSERVER(NfcAdapter::Observer, observers_, PeerLost(this, peer));
204 delete peer;
265 // Create peer objects for peers that were added before the adapter was set.
319 device::NfcPeer* peer = *iter; local
321 PeerLost(this, peer));
[all...]
H A Dnfc_chromeos_unittest.cc83 virtual void PeerFound(NfcAdapter* adapter, NfcPeer* peer) OVERRIDE {
86 peer_identifier_ = peer->GetIdentifier();
90 virtual void PeerLost(NfcAdapter* adapter, NfcPeer* peer) OVERRIDE {
92 EXPECT_EQ(peer_identifier_, peer->GetIdentifier());
114 NfcPeer* peer, const NfcNdefRecord* record) OVERRIDE {
115 EXPECT_EQ(peer, adapter_->GetPeer(peer_identifier_));
116 EXPECT_EQ(peer_identifier_, peer->GetIdentifier());
321 // Tests that peer and record objects are created for all peers and records
365 NfcPeer* peer = peers[0]; local
366 const NfcNdefMessage& message = peer
540 NfcPeer* peer = adapter_->GetPeer(observer.peer_identifier_); local
[all...]
/external/chromium_org/v8/tools/testrunner/server/
H A Dpresence_handler.py38 from ..objects import peer namespace
41 STARTUP_REQUEST = "V8 test peer starting up"
43 EXIT_REQUEST = "V8 testing peer going down"
69 p = peer.Peer(self.client_address[0], jobs, relative_perf,
78 p = peer.Peer(self.client_address[0], jobs, perf, pubkey_fingerprint)
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWorkerThreadableWebSocketChannel.h92 static void initialize(ExecutionContext* executionContext, Peer* peer, const String& sourceURLAtConnection, unsigned lineNumberAtConnection) argument
94 peer->initializeInternal(executionContext, sourceURLAtConnection, lineNumberAtConnection);
/external/chromium_org/ui/views/controls/button/
H A Dradio_button.cc84 RadioButton* peer = static_cast<RadioButton*>(*i); local
85 peer->SetChecked(false);
/external/chromium_org/v8/tools/testrunner/network/
H A Dnetwork_execution.py38 from ..objects import peer namespace
49 return [ peer.Peer.Unpack(p) for p in data ]
143 # Spawn one thread for each peer.
170 def _TalkToPeer(self, peer):
173 code = sock.connect_ex((peer.address, constants.PEER_PORT))
176 peer.runtime = None
178 packet = workpacket.WorkPacket(peer=peer, context=self.context,
191 # The peer is reporting an error.
193 print("\nPeer %s reports error: %s" % (peer
[all...]
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_pan_internal.h69 BD_ADDR peer; member in struct:__anon1044
/external/chromium_org/chrome/renderer/extensions/
H A Dextension_localization_peer.cc18 content::RequestPeer* peer,
21 : original_peer_(peer),
32 content::RequestPeer* peer,
40 new ExtensionLocalizationPeer(peer, message_sender, request_url) : NULL;
17 ExtensionLocalizationPeer( content::RequestPeer* peer, IPC::Sender* message_sender, const GURL& request_url) argument
31 CreateExtensionLocalizationPeer( content::RequestPeer* peer, IPC::Sender* message_sender, const std::string& mime_type, const GURL& request_url) argument
/external/chromium_org/chrome/renderer/
H A Dsecurity_filter_peer.cc14 SecurityFilterPeer::SecurityFilterPeer(content::RequestPeer* peer) argument
15 : original_peer_(peer) {
25 content::RequestPeer* peer,
44 return CreateSecurityFilterPeerForFrame(peer, os_error);
46 return new ReplaceContentPeer(peer, std::string(), std::string());
55 content::RequestPeer* peer,
64 return new ReplaceContentPeer(peer, "text/html", html);
130 BufferedPeer::BufferedPeer(content::RequestPeer* peer, argument
132 : SecurityFilterPeer(peer), mime_type_(mime_type) {}
181 ReplaceContentPeer::ReplaceContentPeer(content::RequestPeer* peer, argument
23 CreateSecurityFilterPeerForDeniedRequest( content::ResourceType resource_type, content::RequestPeer* peer, int os_error) argument
54 CreateSecurityFilterPeerForFrame( content::RequestPeer* peer, int os_error) argument
[all...]
/external/chromium_org/content/child/
H A Dresource_dispatcher.h111 PendingRequestInfo(RequestPeer* peer,
120 RequestPeer* peer; member in struct:content::ResourceDispatcher::PendingRequestInfo
/external/chromium_org/remoting/signaling/
H A Dfake_signal_strategy.cc43 void FakeSignalStrategy::ConnectTo(FakeSignalStrategy* peer) { argument
48 if (peer->main_thread_->BelongsToCurrentThread()) {
49 peer->SetPeerCallback(peer_callback);
51 peer->main_thread_->PostTask(
54 base::Unretained(peer),
/external/chromium_org/tools/android/forwarder2/
H A Dforwarder.cc36 // disconnects. To work around this, its peer will call its Close() method
80 void SetPeer(BufferedCopier* peer) { argument
82 peer_ = peer;
87 // Gently asks to close a buffer. Called either by the peer or the forwarder.
196 // Internal method used to close the buffer and notify the peer, if any.
/external/iproute2/include/
H A Dlibnetlink.h16 struct sockaddr_nl peer; member in struct:rtnl_handle
42 extern int rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n, pid_t peer,
/external/openssl/apps/
H A Dsess_id.c93 X509 *peer = NULL; local
167 peer = SSL_SESSION_get0_peer(x);
236 if (peer == NULL)
239 X509_print(out,peer);
258 else if (!noout && (peer != NULL)) /* just print the certificate */
261 i=(int)i2d_X509_bio(out,peer);
263 i=PEM_write_bio_X509(out,peer);
/external/openssl/crypto/evp/
H A Dpmeth_fn.c285 int EVP_PKEY_derive_set_peer(EVP_PKEY_CTX *ctx, EVP_PKEY *peer) argument
301 ret = ctx->pmeth->ctrl(ctx, EVP_PKEY_CTRL_PEER_KEY, 0, peer);
315 if (ctx->pkey->type != peer->type)
322 /* ran@cryptocom.ru: For clarity. The error is if parameters in peer are
327 if (!EVP_PKEY_missing_parameters(peer) &&
328 !EVP_PKEY_cmp_parameters(ctx->pkey, peer))
337 ctx->peerkey = peer;
339 ret = ctx->pmeth->ctrl(ctx, EVP_PKEY_CTRL_PEER_KEY, 1, peer);
347 CRYPTO_add(&peer->references,1,CRYPTO_LOCK_EVP_PKEY);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dpeerkey_auth.c51 struct wpa_state_machine *sm, const u8 *peer,
64 if (peer) {
65 pos = wpa_add_kde(pos, RSN_KEY_DATA_MAC_ADDR, peer, ETH_ALEN,
202 const u8 *smk, const u8 *peer)
228 pos = wpa_add_kde(pos, RSN_KEY_DATA_MAC_ADDR, peer, ETH_ALEN, NULL, 0);
50 wpa_smk_send_error(struct wpa_authenticator *wpa_auth, struct wpa_state_machine *sm, const u8 *peer, u16 mui, u16 error_type) argument
198 wpa_send_smk_m5(struct wpa_authenticator *wpa_auth, struct wpa_state_machine *sm, struct wpa_eapol_key *key, struct wpa_eapol_ie_parse *kde, const u8 *smk, const u8 *peer) argument
/external/wpa_supplicant_8/src/ap/
H A Dpeerkey_auth.c51 struct wpa_state_machine *sm, const u8 *peer,
64 if (peer) {
65 pos = wpa_add_kde(pos, RSN_KEY_DATA_MAC_ADDR, peer, ETH_ALEN,
202 const u8 *smk, const u8 *peer)
228 pos = wpa_add_kde(pos, RSN_KEY_DATA_MAC_ADDR, peer, ETH_ALEN, NULL, 0);
50 wpa_smk_send_error(struct wpa_authenticator *wpa_auth, struct wpa_state_machine *sm, const u8 *peer, u16 mui, u16 error_type) argument
198 wpa_send_smk_m5(struct wpa_authenticator *wpa_auth, struct wpa_state_machine *sm, struct wpa_eapol_key *key, struct wpa_eapol_ie_parse *kde, const u8 *smk, const u8 *peer) argument
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dpeerkey_auth.c51 struct wpa_state_machine *sm, const u8 *peer,
64 if (peer) {
65 pos = wpa_add_kde(pos, RSN_KEY_DATA_MAC_ADDR, peer, ETH_ALEN,
202 const u8 *smk, const u8 *peer)
228 pos = wpa_add_kde(pos, RSN_KEY_DATA_MAC_ADDR, peer, ETH_ALEN, NULL, 0);
50 wpa_smk_send_error(struct wpa_authenticator *wpa_auth, struct wpa_state_machine *sm, const u8 *peer, u16 mui, u16 error_type) argument
198 wpa_send_smk_m5(struct wpa_authenticator *wpa_auth, struct wpa_state_machine *sm, struct wpa_eapol_key *key, struct wpa_eapol_ie_parse *kde, const u8 *smk, const u8 *peer) argument
/external/chromium_org/ipc/mojo/
H A Dipc_channel_mojo_readers.cc213 mojo::ScopedMessagePipeHandle peer; local
215 mojo::CreateMessagePipe(NULL, &message_pipe_, &peer);
221 MojoHandle peer_to_send = peer.get().value();
235 // |peer| is sent and no longer owned by |this|.
236 (void)peer.release();
/external/chromium_org/net/base/
H A Daddress_tracker_linux.cc161 struct sockaddr_nl peer = {}; local
162 peer.nl_family = AF_NETLINK;
176 0, reinterpret_cast<struct sockaddr*>(&peer),
177 sizeof(peer)));
195 reinterpret_cast<struct sockaddr*>(&peer),
196 sizeof(peer)));

Completed in 8243 milliseconds

123456