Home
last modified time | relevance | path

Searched refs:remote_id (Results 1 – 12 of 12) sorted by relevance

/external/openssh/
Dnchan.c246 packet_put_int(c->remote_id); in chan_send_ieof1()
264 packet_put_int(c->remote_id); in chan_send_oclose1()
359 packet_put_int(c->remote_id); in chan_send_eof2()
381 packet_put_int(c->remote_id); in chan_send_close2()
398 packet_put_int(c->remote_id); in chan_send_eow2()
Dchannels.c316 c->remote_id = -1; in channel_new()
561 if (c == NULL || c->remote_id < 0) in channel_find_open()
635 c->type, c->remote_id, in channel_open_message()
681 packet_put_int(c->remote_id); in channel_request_start()
770 packet_put_int(c->remote_id); in channel_set_fds()
854 packet_put_int(c->remote_id); in channel_pre_input_draining()
959 packet_put_int(c->remote_id); in channel_pre_x11_open_13()
1548 packet_put_int(c->remote_id); in channel_post_connecting()
1554 packet_put_int(c->remote_id); in channel_post_connecting()
1573 packet_put_int(c->remote_id); in channel_post_connecting()
[all …]
Dclientloop.c1699 int remote_id, sock; in client_input_agent_open() local
1702 remote_id = packet_get_int(); in client_input_agent_open()
1720 c->remote_id = remote_id; in client_input_agent_open()
1725 packet_put_int(remote_id); in client_input_agent_open()
1730 packet_put_int(remote_id); in client_input_agent_open()
1897 c->remote_id = rchan; in client_input_channel_open()
1902 packet_put_int(c->remote_id); in client_input_channel_open()
1962 packet_put_int(c->remote_id); in client_input_channel_req()
Dmux.c204 cc->remote_id = -1; in mux_master_session_cleanup_cb()
220 if (c->remote_id != -1) { in mux_master_control_cleanup_cb()
221 if ((sc = channel_by_id(c->remote_id)) == NULL) in mux_master_control_cleanup_cb()
223 __func__, c->self, c->remote_id); in mux_master_control_cleanup_cb()
224 c->remote_id = -1; in mux_master_control_cleanup_cb()
401 if (c->remote_id != -1) { in process_mux_new_session()
457 c->remote_id = nc->self; /* link control -> session channel */ in process_mux_new_session()
870 if (c->remote_id != -1) { in process_mux_stdio_fwd()
905 c->remote_id = nc->self; /* link control -> session channel */ in process_mux_stdio_fwd()
Dchannels.h93 int remote_id; /* channel identifier for remote peer */ member
Dserverloop.c1072 c->remote_id = rchan; in server_input_channel_open()
1077 packet_put_int(c->remote_id); in server_input_channel_open()
1193 packet_put_int(c->remote_id); in server_input_channel_req()
/external/bluetooth/bluedroid/stack/l2cap/
Dl2c_csm.c436 p_ccb->p_rcb->psm, p_ccb->remote_id); in l2c_csm_term_w4_sec_comp()
477 … l2cu_send_peer_disc_rsp (p_ccb->p_lcb, p_ccb->remote_id, p_ccb->local_cid, p_ccb->remote_cid); in l2c_csm_term_w4_sec_comp()
687 p_ccb->remote_id); in l2c_csm_w4_l2ca_connect_rsp()
1109 … l2cu_send_peer_disc_rsp (p_ccb->p_lcb, p_ccb->remote_id, p_ccb->local_cid, p_ccb->remote_cid); in l2c_csm_w4_l2cap_disconnect_rsp()
1166 … l2cu_send_peer_disc_rsp (p_ccb->p_lcb, p_ccb->remote_id, p_ccb->local_cid, p_ccb->remote_cid); in l2c_csm_w4_l2ca_disconnect_rsp()
1174 … l2cu_send_peer_disc_rsp (p_ccb->p_lcb, p_ccb->remote_id, p_ccb->local_cid, p_ccb->remote_cid); in l2c_csm_w4_l2ca_disconnect_rsp()
Dl2c_main.c427 p_ccb->remote_id = id; in process_l2cap_cmd()
551 p_ccb->remote_id = id; in process_l2cap_cmd()
660 p_ccb->remote_id = id; in process_l2cap_cmd()
Dl2c_utils.c433 …l2cu_build_header(p_ccb->p_lcb, L2CAP_CONN_RSP_LEN, L2CAP_CMD_CONN_RSP, p_ccb->remote_id)) == NULL) in l2cu_send_peer_connect_rsp()
619 L2CAP_CMD_CONFIG_RSP, p_ccb->remote_id)) == NULL ) in l2cu_send_peer_config_rsp()
731 UINT8_TO_STREAM (p, p_ccb->remote_id); in l2cu_send_peer_config_rej()
847 void l2cu_send_peer_disc_rsp (tL2C_LCB *p_lcb, UINT8 remote_id, UINT16 local_cid, in l2cu_send_peer_disc_rsp() argument
853 if ((p_buf=l2cu_build_header(p_lcb, L2CAP_DISC_RSP_LEN, L2CAP_CMD_DISC_RSP, remote_id)) == NULL) in l2cu_send_peer_disc_rsp()
994 void l2cu_send_peer_info_rsp (tL2C_LCB *p_lcb, UINT8 remote_id, UINT16 info_type) in l2cu_send_peer_info_rsp() argument
1024 if ((p_buf = l2cu_build_header(p_lcb, len, L2CAP_CMD_INFO_RSP, remote_id)) == NULL) in l2cu_send_peer_info_rsp()
Dl2c_int.h303 UINT8 remote_id; /* Transaction ID for local */ member
609 extern void l2cu_send_peer_disc_rsp (tL2C_LCB *p_lcb, UINT8 remote_id, UINT16 local_cid, UINT16…
Dl2c_api.c377 if (p_ccb->remote_id != id) in L2CA_ErtmConnectRsp()
379 … L2CAP_TRACE_WARNING2 ("L2CAP - bad id in L2CA_conn_rsp. Exp: %d Got: %d", p_ccb->remote_id, id); in L2CA_ErtmConnectRsp()
/external/netperf/
Dnetlib.c2975 char *remote_id=""; in identify_remote() local
2996 remote_id); in identify_remote()