HomeSort by relevance Sort by last modified time
    Searched refs:peer (Results 76 - 100 of 238) sorted by null

1 2 34 5 6 7 8 910

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
yp.x 88 peername peer;
134 peername peer;
  /external/chromium_org/device/nfc/
nfc_adapter_chromeos.cc 185 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...]
  /external/chromium_org/net/spdy/
hpack_encoder_test.cc 404 test::HpackEncoderPeer peer(NULL);
411 peer.CookieToCrumbs(" foo=1;bar=2 ; bar=3; bing=4; ", &out);
414 peer.CookieToCrumbs(";;foo = bar ;; ;baz =bing", &out);
417 peer.CookieToCrumbs("baz=bing; foo=bar; baz=bing", &out);
420 peer.CookieToCrumbs("baz=bing", &out);
423 peer.CookieToCrumbs("", &out);
426 peer.CookieToCrumbs("foo;bar; baz;baz;bing;", &out);
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
peer_channel.cc 39 // Set to the peer id of the originator when messages are being
40 // exchanged between peers, but set to the id of the receiving peer
45 // next, we don't use a custom name for our peer-id header (originally it was
46 // "X-Peer-Id: "). Instead, we use a "simple header", "Pragma" which should
110 void ChannelMember::ForwardRequestToPeer(DataSocket* ds, ChannelMember* peer) {
111 assert(peer);
116 if (peer == this) {
121 name_.c_str(), peer->name().c_str());
122 peer->QueueResponse("200 OK", ds->content_type(), extra_headers,
261 // Let the newly connected peer know about other members of the channel
    [all...]
peer_channel.h 40 // Represents a single peer connected to the server.
61 void ForwardRequestToPeer(DataSocket* ds, ChannelMember* peer);
102 // Finds a connected peer that's associated with the |ds| socket.
106 // peer for which the request is targeted at.
117 // Called when a socket was determined to be closing by the peer (or if the
  /external/wpa_supplicant_8/src/ap/
peerkey_auth.c 51 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,
102 /* Initiator = sm->addr; Peer = kde.mac_addr */
202 const u8 *smk, const u8 *peer)
223 /* Peer RSN IE */
227 /* Peer MAC Address */
228 pos = wpa_add_kde(pos, RSN_KEY_DATA_MAC_ADDR, peer, ETH_ALEN, NULL, 0);
276 /* Peer = sm->addr; Initiator = kde.mac_addr;
277 * Peer Nonce = key->key_nonce; Initiator Nonce = kde.nonce *
    [all...]
  /libcore/luni/src/main/java/java/net/
DatagramSocket.java 500 * Connects this datagram socket to the address and port specified by {@code peer}.
506 public void connect(SocketAddress peer) throws SocketException {
507 if (peer == null) {
508 throw new IllegalArgumentException("peer == null");
511 if (!(peer instanceof InetSocketAddress)) {
512 throw new IllegalArgumentException("peer not an InetSocketAddress: " + peer.getClass());
515 InetSocketAddress isa = (InetSocketAddress) peer;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnserver.cc 125 const talk_base::SocketAddress& peer);
148 Permission(talk_base::Thread* thread, const talk_base::IPAddress& peer);
151 const talk_base::IPAddress& peer() const { return peer_; } function in class:cricket::TurnServer::Permission
169 const talk_base::SocketAddress& peer);
173 const talk_base::SocketAddress& peer() const { return peer_; } function in class:cricket::TurnServer::Channel
743 // If a permission exists, send the data on to the peer.
749 << "peer=" << peer_attr->GetAddress();
766 LOG_J(LS_INFO, this) << "Created permission, peer="
816 << ", peer=" << peer_attr->GetAddress();
829 // Send the data to the peer address
    [all...]
  /developers/samples/android/wearable/wear/DataLayer/Application/src/main/java/com/example/android/datalayer/
MainActivity.java 250 public void onPeerConnected(final Node peer) {
251 LOGD(TAG, "onPeerConnected: " + peer);
255 mDataItemListAdapter.add(new Event("Connected", peer.toString()));
262 public void onPeerDisconnected(final Node peer) {
263 LOGD(TAG, "onPeerDisconnected: " + peer);
267 mDataItemListAdapter.add(new Event("Disconnected", peer.toString()));
  /development/samples/wearable/DataLayer/Application/src/main/java/com/example/android/wearable/datalayer/
MainActivity.java 250 public void onPeerConnected(final Node peer) {
251 LOGD(TAG, "onPeerConnected: " + peer);
255 mDataItemListAdapter.add(new Event("Connected", peer.toString()));
262 public void onPeerDisconnected(final Node peer) {
263 LOGD(TAG, "onPeerDisconnected: " + peer);
267 mDataItemListAdapter.add(new Event("Disconnected", peer.toString()));
  /external/wpa_supplicant_8/src/p2p/
p2p_build.c 148 struct p2p_device *peer)
163 if (peer && peer->wps_method != WPS_NOT_READY) {
164 if (peer->wps_method == WPS_PBC)
166 else if (peer->wps_method == WPS_PIN_DISPLAY ||
167 peer->wps_method == WPS_PIN_KEYPAD)
  /prebuilts/python/darwin-x86/2.7.5/bin/
smtpd.py 130 print >> DEBUGSTREAM, 'Peer:', repr(self.__peer)
305 def process_message(self, peer, mailfrom, rcpttos, data):
308 peer is a tuple containing (ipaddr, port) of the client that made the
332 def process_message(self, peer, mailfrom, rcpttos, data):
339 print 'X-Peer:', peer[0]
346 def process_message(self, peer, mailfrom, rcpttos, data):
354 lines.insert(i, 'X-Peer: %s' % peer[0])
386 def process_message(self, peer, mailfrom, rcpttos, data)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtpd.py 130 print >> DEBUGSTREAM, 'Peer:', repr(self.__peer)
305 def process_message(self, peer, mailfrom, rcpttos, data):
308 peer is a tuple containing (ipaddr, port) of the client that made the
332 def process_message(self, peer, mailfrom, rcpttos, data):
339 print 'X-Peer:', peer[0]
346 def process_message(self, peer, mailfrom, rcpttos, data):
354 lines.insert(i, 'X-Peer: %s' % peer[0])
386 def process_message(self, peer, mailfrom, rcpttos, data)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/bin/
smtpd.py 130 print >> DEBUGSTREAM, 'Peer:', repr(self.__peer)
305 def process_message(self, peer, mailfrom, rcpttos, data):
308 peer is a tuple containing (ipaddr, port) of the client that made the
332 def process_message(self, peer, mailfrom, rcpttos, data):
339 print 'X-Peer:', peer[0]
346 def process_message(self, peer, mailfrom, rcpttos, data):
354 lines.insert(i, 'X-Peer: %s' % peer[0])
386 def process_message(self, peer, mailfrom, rcpttos, data)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtpd.py 130 print >> DEBUGSTREAM, 'Peer:', repr(self.__peer)
305 def process_message(self, peer, mailfrom, rcpttos, data):
308 peer is a tuple containing (ipaddr, port) of the client that made the
332 def process_message(self, peer, mailfrom, rcpttos, data):
339 print 'X-Peer:', peer[0]
346 def process_message(self, peer, mailfrom, rcpttos, data):
354 lines.insert(i, 'X-Peer: %s' % peer[0])
386 def process_message(self, peer, mailfrom, rcpttos, data)
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorPeer.java 53 public void setPeer(IParcelFileDescriptorPeer peer) throws RemoteException {
54 mPeer = peer;
  /external/bluetooth/bluedroid/btif/src/
btif_pan.c 264 (const bt_bdaddr_t*)conn->peer, btpan_conn_local_role, btpan_remote_role);
496 if(memcmp(btpan_cb.conns[i].peer, addr, sizeof(BD_ADDR)) == 0)
507 memset(&conn->peer, 0, sizeof(conn->peer));
524 bdcpy(btpan_cb.conns[i].peer, addr);
540 memset(&p->peer, 0, 6);
561 || memcmp(btpan_cb.conns[i].peer, eth_hdr->h_dest, sizeof(BD_ADDR)) == 0)) {
656 callback.connection_state_cb(BTPAN_STATE_DISCONNECTED, 0, (const bt_bdaddr_t*)conn->peer,
  /external/chromium_org/chrome/browser/resources/chromeos/
nfc_debug.css 41 #nfc-peer-info {
  /external/chromium_org/content/child/
resource_dispatcher.h 110 PendingRequestInfo(RequestPeer* peer,
119 RequestPeer* peer; member in struct:content::ResourceDispatcher::PendingRequestInfo
  /external/chromium_org/third_party/openssl/openssl/ssl/
ssl_asn1.c 300 if (in->peer != NULL)
301 M_ASN1_I2D_len_EXP_opt(in->peer,i2d_X509,3,v3);
346 if (in->peer != NULL)
347 M_ASN1_I2D_put_EXP_opt(in->peer,i2d_X509,3,v3);
508 if (ret->peer != NULL)
510 X509_free(ret->peer);
511 ret->peer=NULL;
513 M_ASN1_D2I_get_EXP_opt(ret->peer,d2i_X509,3);
  /external/chromium_org/tools/android/forwarder2/
forwarder.cc 36 // disconnects. To work around this, its peer will call its Close() method
80 void SetPeer(BufferedCopier* peer) {
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/mtpd/
pptp.c 119 uint16_t peer; member in struct:packet::__anon31796::__anon31797::__anon31799::__anon31802
309 if (state == OCRQ && incoming.ocrp.peer == local) {
367 outgoing.icrp.peer = incoming.icrq.call;
376 outgoing.ocrp.peer = incoming.ocrq.call;
  /external/wpa_supplicant_8/src/eap_common/
eap_sake_common.h 2 * EAP server/peer: EAP-SAKE shared routines
91 int peer, const u8 *eap, size_t eap_len,
  /art/runtime/native/
java_lang_Thread.cc 117 static void Thread_nativeSetName(JNIEnv* env, jobject peer, jstring java_name) {
122 if (soa.Decode<mirror::Object*>(peer) == soa.Self()->GetPeer()) {
137 thread = thread_list->SuspendThreadByPeer(peer, true, false, &timed_out);
  /external/wpa_supplicant_8/src/wps/
wps_upnp_web.c 419 struct upnp_wps_peer *peer; local
429 peer = &iface->peer;
439 if (peer->wps)
440 wps_deinit(peer->wps);
446 peer->wps = wps_init(&cfg);
447 if (peer->wps) {
449 *reply = wps_get_msg(peer->wps, &op_code);
451 wps_deinit(peer->wps);
452 peer->wps = NULL
    [all...]

Completed in 1592 milliseconds

1 2 34 5 6 7 8 910