/system/core/libcutils/ |
mq.c | 63 /** Request for a connection to another peer. */ 66 /** A connection to another peer. */ 88 // TODO: Use custom headers for master->peer, peer->master, peer->peer. 100 /** A packet which will be sent to a peer. */ 107 /** Connection to peer. Used with CONNECTION. */ 124 /** Represents a remote peer. */ 127 /** Local peer state. You typically have one peer per process. * 191 Peer* peer; member in struct:PeerProxy 304 Peer* peer = peerProxy->peer; local 315 Peer* peer = peerProxy->peer; local 783 Peer* peer = masterProxy->peer; local 895 Peer* peer = masterProxy->peer; local 1094 Peer* peer = calloc(1, sizeof(Peer)); local 1134 Peer* peer = localPeer; local 1202 Peer* peer = localPeer; local [all...] |
/external/webkit/WebCore/websockets/ |
WorkerThreadableWebSocketChannel.cpp | 97 WorkerThreadableWebSocketChannel::Peer::Peer(RefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, WorkerLoaderProxy& loaderProxy, ScriptExecutionContext* context, const String& taskMode, const KURL& url, const String& protocol) 106 WorkerThreadableWebSocketChannel::Peer::~Peer() 113 void WorkerThreadableWebSocketChannel::Peer::connect() 127 void WorkerThreadableWebSocketChannel::Peer::send(const String& message) 142 void WorkerThreadableWebSocketChannel::Peer::bufferedAmount() 151 void WorkerThreadableWebSocketChannel::Peer::close() 160 void WorkerThreadableWebSocketChannel::Peer::disconnect() 175 void WorkerThreadableWebSocketChannel::Peer::didConnect( 218 Peer* peer = Peer::create(clientWrapper, thisPtr->m_loaderProxy, context, taskMode, url, protocol); local 329 Peer* peer = m_peer; local [all...] |
WorkerThreadableWebSocketChannel.h | 76 // Generated by the bridge. The Peer and its bridge should have identical 78 class Peer : public WebSocketChannelClient, public Noncopyable { 80 static Peer* create(RefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, WorkerLoaderProxy& loaderProxy, ScriptExecutionContext* context, const String& taskMode, const KURL& url, const String& protocol) 82 return new Peer(clientWrapper, loaderProxy, context, taskMode, url, protocol); 84 ~Peer(); 97 Peer(RefPtr<ThreadableWebSocketChannelClientWrapper>, WorkerLoaderProxy&, ScriptExecutionContext*, const String& taskMode, const KURL&, const String& protocol); 105 // Bridge for Peer. Running on the worker thread. 120 static void setWebSocketChannel(ScriptExecutionContext*, Bridge* thisPtr, Peer*, RefPtr<ThreadableWebSocketChannelClientWrapper>); 122 // Executed on the main thread to create a Peer for this bridge. 135 Peer* m_peer [all...] |
/external/bluetooth/bluez/network/ |
connection.c | 76 struct network_peer *peer; member in struct:network_conn 93 struct network_peer *peer = l->data; local 95 if (!strcmp(peer->path, path)) 96 return peer; 156 emit_property_changed(connection, nc->peer->path, 159 emit_property_changed(connection, nc->peer->path, 162 emit_property_changed(connection, nc->peer->path, 165 device_remove_disconnect_watch(nc->peer->device, nc->dc_id); 210 bnep_kill_connection(&nc->peer->dst); 220 info("Network: disconnect %s", nc->peer->path) 391 struct network_peer *peer = data; local 453 struct network_peer *peer = data; local 471 struct network_peer *peer = data; local 540 struct network_peer *peer = data; local 564 struct network_peer *peer; local 587 struct network_peer *peer; local 615 struct network_peer *peer; local [all...] |
/external/bluetooth/bluez/src/ |
storage.h | 37 int write_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t class); 38 int read_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t *class); 39 int write_device_name(bdaddr_t *local, bdaddr_t *peer, char *name); 41 int write_remote_eir(bdaddr_t *local, bdaddr_t *peer, uint8_t *data); 42 int read_remote_eir(bdaddr_t *local, bdaddr_t *peer, uint8_t *data); 43 int write_l2cap_info(bdaddr_t *local, bdaddr_t *peer, 46 int read_l2cap_info(bdaddr_t *local, bdaddr_t *peer, 49 int write_version_info(bdaddr_t *local, bdaddr_t *peer, uint16_t manufacturer, uint8_t lmp_ver, uint16_t lmp_subver); 50 int write_features_info(bdaddr_t *local, bdaddr_t *peer, unsigned char *features); 51 int write_lastseen_info(bdaddr_t *local, bdaddr_t *peer, struct tm *tm) [all...] |
dbus-hci.h | 26 void hcid_dbus_inquiry_result(bdaddr_t *local, bdaddr_t *peer, uint32_t class, int8_t rssi, uint8_t *data); 27 void hcid_dbus_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t class); 28 void hcid_dbus_remote_name(bdaddr_t *local, bdaddr_t *peer, uint8_t status, char *name); 29 void hcid_dbus_conn_complete(bdaddr_t *local, uint8_t status, uint16_t handle, bdaddr_t *peer); 31 void hcid_dbus_bonding_process_complete(bdaddr_t *local, bdaddr_t *peer, uint8_t status); 32 void hcid_dbus_simple_pairing_complete(bdaddr_t *local, bdaddr_t *peer, uint8_t status); 43 int hcid_dbus_link_key_notify(bdaddr_t *local, bdaddr_t *peer,
|
storage.c | 281 int write_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t class) 289 ba2str(peer, addr); 295 int read_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t *class) 301 ba2str(peer, addr); 317 int write_device_name(bdaddr_t *local, bdaddr_t *peer, char *name) 333 ba2str(peer, addr); 358 int write_remote_eir(bdaddr_t *local, bdaddr_t *peer, uint8_t *data) 371 ba2str(peer, addr); 375 int read_remote_eir(bdaddr_t *local, bdaddr_t *peer, uint8_t *data) 382 ba2str(peer, addr) [all...] |
/dalvik/libcore/x-net/src/main/java/javax/net/ssl/ |
HandshakeCompletedEvent.java | 74 * certificates were sent to the peer. 85 * Return the list of certificates identifying the peer during the 88 * @return the list of certificates identifying the peer with the peer's 91 * if the identity of the peer has not been verified. 98 * Returns the list of certificates identifying the peer. The peer's 104 * @return the list of certificates identifying the peer 106 * if the identity of the peer has not been verified. 113 * Returns the {@code Principal} identifying the peer [all...] |
SSLSession.java | 69 * side to the peer during the handshake. 77 * Returns the principal used to identify the local side to the peer during 92 * Returns the list of certificates the peer used to identify itself during 101 * if the identity of the peer is not verified. 106 * Returns the list of certificates the peer used to identify itself during 112 * if the identity of the peer is not verified. 117 * Returns the host name of the peer of this session. The host name is not 120 * @return the host name of the peer of this session, or {@code null} if no 126 * Returns the port number of the peer of this session. The port number is 129 * @return the port number of the peer, of {@code -1} is no port number i [all...] |
HttpsURLConnection.java | 118 * certificates were sent to the peer. 129 * Return the list of certificates identifying the peer during the 132 * @return the list of certificates identifying the peer with the peer's 135 * if the identity of the peer has not been verified.. 142 * Returns the {@code Principal} identifying the peer. 144 * @return the {@code Principal} identifying the peer. 146 * if the identity of the peer has not been verified.
|
/frameworks/base/awt/org/apache/harmony/awt/gl/font/ |
FontPeerImpl.java | 31 import java.awt.peer.FontPeer; 43 * Abstract class for platform dependent peer implementation of the Font class. 47 // ascent of this font peer (in pixels) 50 // descent of this font peer (in pixels) 53 // leading of this font peer (in pixels) 56 // logical maximum advance of this font peer (in pixels) 59 // the height of this font peer 62 // the style of this font peer 65 // the point size of this font peer (in pixels) 68 // the logical hight of this font peer (in pixels [all...] |
/external/qemu/ |
charpipe.c | 75 struct CharPipeHalf* peer; /* NULL if closed */ member in struct:CharPipeHalf 91 ph->peer = NULL; 99 CharPipeHalf* peer = ph->peer; local 106 if (bip == NULL && peer != NULL && peer->cs->chr_read != NULL) { 107 /* no buffered data, try to write directly to the peer */ 111 if (peer->cs->chr_can_read) { 112 size = qemu_chr_can_read( peer->cs ); 121 qemu_chr_read( peer->cs, (uint8_t*)buf, size ) 158 CharPipeHalf* peer = ph->peer; local 297 CharDriverState* peer = cbuf->endpoint; local 348 CharDriverState* peer = cbuf->endpoint; local [all...] |
/system/core/adb/ |
sockets.c | 54 ** these have no peer anymore, but still packets to 119 if(s->transport == t || (s->peer && s->peer->transport == t)) { 218 if(s->peer) { 219 s->peer->peer = 0; 221 if (s->peer->close == local_socket_close) 222 local_socket_close_locked(s->peer); 224 s->peer->close(s->peer); 469 asocket* peer = s->peer; local [all...] |
jdwp_service.c | 533 asocket* peer = s->peer; local 537 if (peer) { 538 peer->peer = NULL; 539 peer->close(peer); 549 s->peer->close(s->peer); 558 asocket* peer = jdwp->socket.peer local 620 asocket* peer = t->socket.peer; local 631 asocket* peer = s->peer; local [all...] |
/frameworks/base/core/java/com/android/internal/os/ |
ZygoteConnection.java | 61 * mSocket is retained in the child process in "peer wait" mode, so 63 * it is closed in the peer. 68 private final Credentials peer; field in class:ZygoteConnection 72 * this peer. If "peer wait" mode is specified, the process that requested 78 * "peer-wait" mode was not requested. 100 peer = mSocket.getPeerCredentials(); 102 Log.e(TAG, "Cannot read peer credentials", ex); 201 applyUidSecurityPolicy(parsedArgs, peer); 203 applyRlimitSecurityPolicy(parsedArgs, peer); [all...] |
/external/iptables/libipq/ |
libipq.c | 75 { IPQ_ERR_ADDRLEN, "Invalid peer address length" }, 105 (struct sockaddr *)&h->peer, sizeof(h->peer)); 133 addrlen = sizeof(h->peer); 166 (struct sockaddr *)&h->peer, &addrlen); 171 if (addrlen != sizeof(h->peer)) { 175 if (h->peer.nl_pid != 0) { 247 memset(&h->peer, 0, sizeof(struct sockaddr_nl)); 248 h->peer.nl_family = AF_NETLINK; 249 h->peer.nl_pid = 0 [all...] |
/external/ppp/pppd/ |
ipcp.h | 71 bool req_addr; /* Ask peer to send IP address? */ 73 bool proxy_arp; /* Make proxy ARP entry for peer? */ 76 bool accept_local; /* accept peer's value for ouraddr */ 77 bool accept_remote; /* accept peer's value for hisaddr */ 78 bool req_dns1; /* Ask peer to send primary DNS address? */ 79 bool req_dns2; /* Ask peer to send secondary DNS address? */
|
pppd.8 | 39 peer and/or supply authentication information to the peer. PPP can be 46 peer. The string "/dev/" is prepended to \fIttyname\fR to form the 69 Pppd will ask the peer to send these characters as a 2-byte 73 so pppd will ask the peer not to escape any control characters. 77 Require the peer to authenticate itself before allowing network 80 \fInoauth\fR option is specified, pppd will only allow the peer to use 118 Add a default route to the system routing tables, using the peer as 134 (regardless of whether the peer requests them to be escaped with its 159 will ask the peer to send packets of no more than \fIn\fR bytes [all...] |
ipxcp.h | 62 bool req_node; /* Ask peer to send IPX node number? */ 65 bool req_nn; /* Ask peer to send IPX network number */ 71 bool accept_local; /* accept peer's value for ournode */ 72 bool accept_remote; /* accept peer's value for hisnode */ 82 u_char his_node[6]; /* peer's node number */
|
/external/qemu/slirp/ |
socket.h | 58 * Socket state bits. (peer means the host on the Internet, 63 #define SS_ISFCONNECTING 0x002 /* Socket is connecting to peer (non-blocking connect()'s) */ 64 #define SS_ISFCONNECTED 0x004 /* Socket is connected to peer */ 65 #define SS_FCANTRCVMORE 0x008 /* Socket can't receive more from peer (for half-closes) */ 66 #define SS_FCANTSENDMORE 0x010 /* Socket can't send more to peer (for half-closes) */ 67 /* #define SS_ISFDISCONNECTED 0x020*/ /* Socket has disconnected from peer, in 2MSL state */
|
/external/qemu/slirp-android/ |
socket.h | 59 * Socket state bits. (peer means the host on the Internet, 64 #define SS_ISFCONNECTING 0x002 /* Socket is connecting to peer (non-blocking connect()'s) */ 65 #define SS_ISFCONNECTED 0x004 /* Socket is connected to peer */ 66 #define SS_FCANTRCVMORE 0x008 /* Socket can't receive more from peer (for half-closes) */ 67 #define SS_FCANTSENDMORE 0x010 /* Socket can't send more to peer (for half-closes) */ 68 /* #define SS_ISFDISCONNECTED 0x020*/ /* Socket has disconnected from peer, in 2MSL state */
|
/external/iproute2/ip/ |
ifcfg | 36 echo "Usage: ifcfg DEV [[add|del [ADDR[/LEN]] [PEER] | stop]" 1>&2 81 peer=$1 82 if [ "$peer" != "" ]; then 84 echo "Peer address with non-trivial netmask." 1>&2 87 pfx="$ipaddr peer $peer" 141 elif [ "$peer" != "" ]; then 142 if ping -q -c 2 -w 4 $peer ; then 143 ip ro append default via $peer dev $dev metric 30001
|
link_veth.c | 23 "[peer <options>]\nTo get <options> type " 34 if (strcmp(argv[0], "peer") != 0) {
|
/external/openssl/crypto/bio/ |
bss_bio.c | 57 * of this kind, handled by the same thread (i.e. the "peer" is actually 127 BIO *peer; /* NULL if buf == NULL. member in struct:bio_bio_st 128 * If peer != NULL, then peer->ptr is also a bio_bio_st, 129 * and its "peer" member points back to us. 130 * peer != NULL iff init != 0 in the BIO. */ 132 /* This is for what we write (i.e. reading uses peer's struct): */ 133 int closed; /* valid iff peer != NULL */ 134 size_t len; /* valid iff buf != NULL; 0 if peer == NULL */ 139 size_t request; /* valid iff peer != NULL; 0 if len != 0 [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
wps_upnp.h | 29 void *priv, struct upnp_wps_peer *peer); 31 void *priv, struct upnp_wps_peer *peer,
|