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

  /external/bluetooth/bluez/include/bluetooth/
hci_lib.h 34 uint16_t ogf; member in struct:hci_request
53 int hci_send_cmd(int dd, uint16_t ogf, uint16_t ocf, uint8_t plen, void *param);
  /external/bluetooth/bluez/src/
security.c 68 uint16_t ogf; member in struct:hci_req_data
85 uint16_t ogf, uint16_t ocf, int event,
99 data->ogf = ogf;
137 ret_val = hci_send_cmd(dd, data->ogf, data->ocf, data->clen, data->cparam);
  /external/bluetooth/bluez/test/
hciemu.c 258 static void command_status(uint16_t ogf, uint16_t ocf, uint8_t status)
277 cs->opcode = htobs(cmd_opcode_pack(ogf, ocf));
286 static void command_complete(uint16_t ogf, uint16_t ocf, int plen, void *data)
304 cc->opcode = htobs(cmd_opcode_pack(ogf, ocf));
611 const uint16_t ogf = OGF_LINK_CTL; local
615 command_status(ogf, ocf, 0x00);
620 command_status(ogf, ocf, 0x00);
625 command_status(ogf, ocf, 0x00);
631 command_complete(ogf, ocf, 1, &status);
640 const uint16_t ogf = OGF_INFO_PARAM local
658 const uint16_t ogf = OGF_HOST_CTL; local
758 const uint16_t ogf = OGF_INFO_PARAM; local
817 uint16_t ogf, ocf; local
    [all...]
  /external/bluetooth/bluez/tools/
hcitool.c 1002 rq.ogf = OGF_LINK_CTL;
1065 "\tcmd <ogf> <ocf> [parameters]\n"
1076 uint8_t ogf; local
1097 ogf = strtol(argv[0], NULL, 16);
1099 if (errno == ERANGE || (ogf > 0x3f) || (ocf > 0x3ff)) {
1122 printf("< HCI Command: ogf 0x%02x, ocf 0x%04x, plen %d\n", ogf, ocf, len);
1125 if (hci_send_cmd(dd, ogf, ocf, len, buf) < 0) {
    [all...]
  /external/bluetooth/hcidump/parser/
hci.c 409 uint16_t ogf = cmd_opcode_ogf(opcode); local
413 switch (ogf) {
1351 uint16_t ogf = cmd_opcode_ogf(opcode); local
1357 if (ogf == OGF_VENDOR_CMD && (parser.flags & DUMP_NOVENDOR))
1362 opcode2str(opcode), ogf, ocf, hdr->plen);
1367 if (ogf == OGF_VENDOR_CMD) {
1379 switch (ogf) {
2223 uint16_t ogf = cmd_opcode_ogf(opcode); local
2456 uint16_t ogf = cmd_opcode_ogf(opcode); local
    [all...]

Completed in 89 milliseconds