OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:txseq
(Results
1 - 6
of
6
) sorted by null
/system/bt/vendor_libs/test_vendor_lib/src/
l2cap_packet.cc
97
uint8_t
txseq
= controls & kSduTxSeqBits;
local
111
if (
txseq
!= (txseq_start + (static_cast<uint8_t>(i) << 1))) {
112
LOG_DEBUG(LOG_TAG, "%s:
TxSeq
incorrect.", __func__);
164
uint16_t maximum_sdu_size, uint8_t
txseq
, uint8_t reqseq) {
184
set_sdu_control_bytes(current_sdu,
txseq
, reqseq);
203
set_sdu_control_bytes(current_sdu,
txseq
, 0x00);
244
set_sdu_control_bytes(current_sdu,
txseq
, reqseq);
245
txseq
+= 2;
247
//
Txseq
has a maximum of 0x3F. If it exceeds that, it restarts at 0x00.
248
if (
txseq
> 0x3F) txseq = 0x00
[
all
...]
/system/bt/vendor_libs/test_vendor_lib/include/
l2cap_packet.h
42
uint8_t
txseq
,
67
static void set_sdu_control_bytes(std::vector<uint8_t>& sdu, uint8_t
txseq
,
l2cap_sdu.h
82
// Reassembly bits, and the
TxSeq
/ReqSeq numbers.
/system/bt/vendor_libs/test_vendor_lib/test/
l2cap_test.cc
275
// Test 9: Pass SDUs with incorrect
TxSeq
.
404
// Test3: Non-zero starting
TxSeq
410
<< "Test3: Non-zero starting
TxSeq
" << std::endl
/hardware/qcom/wlan/qcwcn/wifi_hal/
wifilogger_diag.cpp
[
all
...]
/system/bt/stack/l2cap/
l2c_fcr.cc
474
"L2CAP eRTM ReTx I-frame CID: 0x%04x Len: %u SAR: %s
TxSeq
: %u "
483
"L2CAP eRTM Tx I-frame CID: 0x%04x Len: %u SAR: %-12s
TxSeq
: %u "
653
"L2CAP eRTM Rx I-frame: cid: 0x%04x Len: %u SAR: %-12s
TxSeq
: %u "
767
"
TxSeq
: %u Expected_Seq: %u",
[
all
...]
Completed in 352 milliseconds