HomeSort by relevance Sort by last modified time
    Searched refs:L2CAP_CMD_HDR_SIZE (Results 1 - 7 of 7) sorted by null

  /external/bluetooth/bluez/tools/
l2ping.c 87 send_buf = malloc(L2CAP_CMD_HDR_SIZE + size);
88 recv_buf = malloc(L2CAP_CMD_HDR_SIZE + size);
135 send_buf[L2CAP_CMD_HDR_SIZE + i] = (i % 40) + 'A';
156 if (send(sk, send_buf, L2CAP_CMD_HDR_SIZE + size, 0) <= 0) {
180 if ((err = recv(sk, recv_buf, L2CAP_CMD_HDR_SIZE + size, 0)) < 0) {
223 if (memcmp(&send_buf[L2CAP_CMD_HDR_SIZE],
224 &recv_buf[L2CAP_CMD_HDR_SIZE], size)) {
  /external/qemu/hw/
bt-l2cap.c 197 L2CAP_CMD_HDR_SIZE + L2CAP_CMD_REJ_SIZE + plen);
199 params = (void *) (pkt + L2CAP_CMD_HDR_SIZE);
206 memcpy(pkt + L2CAP_CMD_HDR_SIZE + L2CAP_CMD_REJ_SIZE, data, plen);
230 L2CAP_CMD_HDR_SIZE + L2CAP_CONN_RSP_SIZE);
232 params = (void *) (pkt + L2CAP_CMD_HDR_SIZE);
254 L2CAP_CMD_HDR_SIZE + L2CAP_CONF_REQ_SIZE(len));
256 params = (void *) (pkt + L2CAP_CMD_HDR_SIZE);
282 L2CAP_CMD_HDR_SIZE + L2CAP_CONF_RSP_SIZE(len));
284 params = (void *) (pkt + L2CAP_CMD_HDR_SIZE);
307 L2CAP_CMD_HDR_SIZE + L2CAP_DISCONN_RSP_SIZE)
    [all...]
bt.h     [all...]
  /external/bluetooth/bluez/test/
l2test.c 872 l2cap_info_req *req = (l2cap_info_req *) (buf + L2CAP_CMD_HDR_SIZE);
873 l2cap_info_rsp *rsp = (l2cap_info_rsp *) (buf + L2CAP_CMD_HDR_SIZE);
909 if (send(sk, buf, L2CAP_CMD_HDR_SIZE + L2CAP_INFO_REQ_SIZE, 0) < 0) {
914 err = recv(sk, buf, L2CAP_CMD_HDR_SIZE + L2CAP_INFO_RSP_SIZE + 2, 0);
936 if (send(sk, buf, L2CAP_CMD_HDR_SIZE + L2CAP_INFO_REQ_SIZE, 0) < 0) {
941 err = recv(sk, buf, L2CAP_CMD_HDR_SIZE + L2CAP_INFO_RSP_SIZE + 4, 0);
986 if (send(sk, buf, L2CAP_CMD_HDR_SIZE + L2CAP_INFO_REQ_SIZE, 0) < 0) {
991 err = recv(sk, buf, L2CAP_CMD_HDR_SIZE + L2CAP_INFO_RSP_SIZE + 8, 0);
  /external/bluetooth/bluez/lib/bluetooth/
l2cap.h 98 #define L2CAP_CMD_HDR_SIZE 4
  /system/bluetooth/bluez-clean-headers/bluetooth/
l2cap.h 89 #define L2CAP_CMD_HDR_SIZE 4
  /external/bluetooth/hcidump/parser/
l2cap.c 723 while (frm->len >= L2CAP_CMD_HDR_SIZE) {
726 frm->ptr += L2CAP_CMD_HDR_SIZE;
727 frm->len -= L2CAP_CMD_HDR_SIZE;

Completed in 23 milliseconds