Home
last modified time | relevance | path

Searched refs:forward (Results 1 – 14 of 14) sorted by relevance

/system/bt/btif/co/
Dbta_pan_co.c166 BOOLEAN forward; in bta_pan_co_tx_path() local
187 &ext, &forward))) in bta_pan_co_tx_path()
203 (char*)(p_buf + 1) + p_buf->offset, p_buf->len, ext, forward); in bta_pan_co_tx_path()
245 UINT16 len, BOOLEAN ext, BOOLEAN forward) in bta_pan_co_tx_write() argument
255 UNUSED(forward); in bta_pan_co_tx_write()
275 BOOLEAN ext, BOOLEAN forward) in bta_pan_co_tx_writebuf() argument
284 UNUSED(forward); in bta_pan_co_tx_writebuf()
/system/core/adb/
DSERVICES.TXT39 emulator will forward automatically to the adbd daemon running
99 <host-prefix>:forward:<local>;<remote>
100 Asks the ADB server to forward local connections from <local>
120 <host-prefix>:forward:norebind:<local>;<remote>
121 Same as <host-prefix>:forward:<local>;<remote> except that it will
122 fail it there is already a forward connection from <local>.
124 Used to implement 'adb forward --no-rebind <local> <remote>'
127 Remove any existing forward local connection from <local>.
128 This is used to implement 'adb forward --remove <local>'
131 Remove all forward network connections.
[all …]
Dprotocol.txt4 When it comes down to it, aproto's primary purpose is to forward
180 starts accepting messages to forward to the remote side
/system/bt/stack/pan/
Dpan_main.c443 BOOLEAN forward; in pan_data_ind_cb() local
507 forward = TRUE; in pan_data_ind_cb()
509 forward = FALSE; in pan_data_ind_cb()
513 (*pan_cb.pan_data_ind_cb) (pcb->handle, src, dst, protocol, p_data, len, ext, forward); in pan_data_ind_cb()
549 BOOLEAN forward = FALSE; in pan_data_buf_ind_cb() local
575 forward = TRUE; in pan_data_buf_ind_cb()
577 forward = FALSE; in pan_data_buf_ind_cb()
597 … (*pan_cb.pan_data_buf_ind_cb) (pcb->handle, src, dst, protocol, p_buf, ext, forward); in pan_data_buf_ind_cb()
600 … (*pan_cb.pan_data_ind_cb) (pcb->handle, src, dst, protocol, p_data, len, ext, forward); in pan_data_buf_ind_cb()
624 (*pan_cb.pan_data_buf_ind_cb) (pcb->handle, src, dst, protocol, p_buf, ext, forward); in pan_data_buf_ind_cb()
[all …]
/system/bt/bta/include/
Dbta_pan_co.h140 UINT16 len, BOOLEAN ext, BOOLEAN forward);
156 BOOLEAN ext, BOOLEAN forward);
/system/bt/stack/include/
Dpan_api.h127 BOOLEAN forward);
146 BOOLEAN forward);
/system/bt/doc/
Dbtsnoop_net.md13 $ adb forward tcp:8872 tcp:8872
/system/bt/btif/include/
Dbtif_pan_internal.h105 const char* buff, UINT16 size, BOOLEAN ext, BOOLEAN forward);
/system/bt/bta/pan/
Dbta_pan_act.c201 BOOLEAN ext, BOOLEAN forward) in bta_pan_data_buf_ind_cback() argument
234 ((tBTA_PAN_DATA_PARAMS *)p_new_buf)->forward = forward; in bta_pan_data_buf_ind_cback()
688 ((tBTA_PAN_DATA_PARAMS *)p_buf)->forward); in bta_pan_tx_path()
Dbta_pan_int.h176 BOOLEAN forward; member
Dbta_pan_ci.c216 *p_forward = ((tBTA_PAN_DATA_PARAMS *)p_buf)->forward; in bta_pan_ci_readbuf()
/system/core/base/
Dlogging.cpp125 SetLogger(std::forward<LogFunction>(logger)); in InitLogging()
/system/bt/btif/src/
Dbtif_pan.c434 UINT16 len, BOOLEAN ext, BOOLEAN forward) in btpan_tap_send() argument
437 UNUSED(forward); in btpan_tap_send()
/system/core/adb/tests/
Dtest_adb.py178 def forward(self, local, remote): member in AdbWrapper