HomeSort by relevance Sort by last modified time
    Searched defs:sdu (Results 1 - 3 of 3) sorted by null

  /system/bt/vendor_libs/test_vendor_lib/src/
l2cap_packet.cc 45 LOG_DEBUG(LOG_TAG, "%s: No SDU received.", __func__);
49 LOG_DEBUG(LOG_TAG, "%s: Unsegmented SDU has incorrect SAR bits.", __func__);
68 LOG_DEBUG(LOG_TAG, "%s: SDU payload length incorrect.", __func__);
75 LOG_DEBUG(LOG_TAG, "%s: SDU fcs is incorrect.", __func__);
82 LOG_DEBUG(LOG_TAG, "%s: SDU CID does not match expected.", __func__);
89 // If there is only a single SDU, the first two bits of the control must be
90 // set to 00b, representing an unsegmented SDU. If the SDU is segmented,
99 LOG_DEBUG(LOG_TAG, "%s: First segmented SDU has incorrect SAR bits.",
105 "%s: SAR bits set to first segmented SDU on
186 std::vector<L2capSdu> sdu; local
    [all...]
  /system/bt/vendor_libs/test_vendor_lib/test/
l2cap_test.cc 43 L2capSdu update_fcs(vector<uint8_t> sdu) {
44 sdu.resize(sdu.size() - 2);
46 return L2capSdu::L2capSduBuilder(sdu);
211 // Test 6: Pass a SDU with all the control bytes set to as the starting bytes.
290 // Test 10: Pass SDUs with an incorrect total SDU length
323 std::vector<L2capSdu> sdu; local
327 sdu.push_back(L2capSdu(good_sdu[0]));
328 sdu.push_back(L2capSdu(good_sdu[1]));
329 sdu.push_back(L2capSdu(good_sdu[2]))
357 std::vector<L2capSdu> sdu; local
397 std::vector<L2capSdu> sdu; local
431 std::vector<L2capSdu> sdu; local
464 std::vector<L2capSdu> sdu; local
498 std::vector<L2capSdu> sdu; local
    [all...]
  /external/toybox/toys/pending/
syslogd.c 43 struct sockaddr_un sdu; member in struct:unsocks
441 tsd->sdu.sun_family = AF_UNIX;
442 strcpy(tsd->sdu.sun_path, tsd->path);
448 unlink(tsd->sdu.sun_path);
449 if (bind(tsd->sd, (struct sockaddr *) &tsd->sdu, sizeof(tsd->sdu))) {
450 perror_msg("BIND SOCKS : failed sock : %s", tsd->sdu.sun_path);

Completed in 402 milliseconds