OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dlcb
(Results
1 - 5
of
5
) sorted by null
/external/libnfc-nci/src/nfc/llcp/
llcp_link.c
405
if (llcp_cb.
dlcb
[idx].state != LLCP_DLC_STATE_IDLE)
407
p_dlcb = &(llcp_cb.
dlcb
[idx]);
643
if ( (llcp_cb.
dlcb
[idx].state == LLCP_DLC_STATE_CONNECTED)
644
&&(llcp_cb.
dlcb
[idx].remote_busy == FALSE)
645
&&(llcp_cb.
dlcb
[idx].is_tx_congested == FALSE) )
647
llcp_cb.
dlcb
[idx].is_tx_congested = TRUE;
650
llcp_cb.
dlcb
[idx].local_sap, llcp_cb.
dlcb
[idx].remote_sap,
651
llcp_cb.
dlcb
[idx].i_xmit_q.count);
653
data.congest.local_sap = llcp_cb.
dlcb
[idx].local_sap
[
all
...]
llcp_util.c
174
if (llcp_cb.
dlcb
[idx].state == LLCP_DLC_STATE_CONNECTED)
176
if (rx_congest_start > llcp_cb.
dlcb
[idx].local_rw)
182
if (llcp_cb.
dlcb
[idx].local_rw + 1 > LLCP_DL_MIN_RX_CONGEST)
183
llcp_cb.
dlcb
[idx].rx_congest_threshold = llcp_cb.
dlcb
[idx].local_rw + 1;
185
llcp_cb.
dlcb
[idx].rx_congest_threshold = LLCP_DL_MIN_RX_CONGEST;
189
llcp_cb.
dlcb
[idx].rx_congest_threshold = LLCP_DL_MIN_RX_CONGEST;
194
llcp_cb.
dlcb
[idx].local_rw,
195
llcp_cb.
dlcb
[idx].rx_congest_threshold);
229
if ( (llcp_cb.
dlcb
[idx].state == LLCP_DLC_STATE_CONNECTED
[
all
...]
llcp_dlc.c
552
** if remote_sap is LLCP_INVALID_SAP, it will return a
DLCB
which
564
if ( (llcp_cb.
dlcb
[i].state != LLCP_DLC_STATE_IDLE)
565
&&(llcp_cb.
dlcb
[i].local_sap == local_sap) )
567
if ((remote_sap == LLCP_INVALID_SAP) && (llcp_cb.
dlcb
[i].state == LLCP_DLC_STATE_W4_REMOTE_RESP))
570
return (&llcp_cb.
dlcb
[i]);
572
else if (llcp_cb.
dlcb
[i].remote_sap == remote_sap)
574
return (&llcp_cb.
dlcb
[i]);
783
/* find a
DLCB
waiting for CC on this local SAP */
840
/* find a
DLCB
waiting for CC on this local SAP */
[
all
...]
llcp_api.c
591
if ( (llcp_cb.
dlcb
[idx].state != LLCP_DLC_STATE_IDLE)
592
&&(llcp_cb.
dlcb
[idx].local_sap == local_sap) )
594
llcp_util_deallocate_data_link (&llcp_cb.
dlcb
[idx]);
[
all
...]
/external/libnfc-nci/src/nfc/int/
llcp_int.h
230
tLLCP_DLCB
dlcb
[LLCP_MAX_DATA_LINK]; /* Data link connection control block */
member in struct:__anon20904
Completed in 27 milliseconds