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

  /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));
607 static void hci_link_control(uint16_t ocf, int plen, uint8_t *data)
613 switch (ocf) {
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)
817 uint16_t ogf, ocf; local
    [all...]
lmptest.c 60 rq.ocf = OCF_ERICSSON_SEND_LMP;
93 rq.ocf = OCF_ERICSSON_WRITE_EVENTS;
bdaddr.c 71 rq.ocf = OCF_ERICSSON_WRITE_BD_ADDR;
104 rq.ocf = OCF_ERICSSON_STORE_IN_FLASH;
143 rq.ocf = 0x00;
184 rq.ocf = 0x00;
213 rq.ocf = OCF_TI_WRITE_BD_ADDR;
241 rq.ocf = OCF_BCM_WRITE_BD_ADDR;
269 rq.ocf = OCF_ZEEVO_WRITE_BD_ADDR;
  /external/bluetooth/bluez/lib/
hci.c 959 int hci_send_cmd(int dd, uint16_t ogf, uint16_t ocf, uint8_t plen, void *param)
966 hc.opcode = htobs(cmd_opcode_pack(ogf, ocf));
992 uint16_t opcode = htobs(cmd_opcode_pack(r->ogf, r->ocf));
1011 if (hci_send_cmd(dd, r->ogf, r->ocf, r->clen, r->cparam) < 0)
1136 rq.ocf = OCF_CREATE_CONN;
1167 rq.ocf = OCF_DISCONNECT;
1191 rq.ocf = OCF_READ_LOCAL_NAME;
1218 rq.ocf = OCF_CHANGE_LOCAL_NAME;
1241 rq.ocf = OCF_REMOTE_NAME_REQ;
1276 rq.ocf = OCF_REMOTE_NAME_REQ_CANCEL
    [all...]
  /external/bluetooth/bluez/common/
glib-helper.c 63 uint16_t ocf; member in struct:hci_cmd_data
618 uint16_t ocf; local
640 ocf = cmd_opcode_ocf(evt_status->opcode);
641 if (ocf != cmd->ocf)
643 switch (ocf) {
674 cmd->ocf = OCF_SET_CONN_ENCRYPT;
756 cmd->ocf = OCF_AUTH_REQUESTED;
  /external/bluetooth/hcidump/parser/
hci.c 410 uint16_t ocf = cmd_opcode_ocf(opcode); local
415 if (ocf <= CMD_INFO_NUM)
416 cmd = cmd_info_str[ocf];
422 if (ocf <= CMD_HOSTCTL_NUM)
423 cmd = cmd_hostctl_str[ocf];
429 if (ocf <= CMD_LINKCTL_NUM)
430 cmd = cmd_linkctl_str[ocf];
436 if (ocf <= CMD_LINKPOL_NUM)
437 cmd = cmd_linkpol_str[ocf];
443 if (ocf <= CMD_STATUS_NUM
1352 uint16_t ocf = cmd_opcode_ocf(opcode); local
2224 uint16_t ocf = cmd_opcode_ocf(opcode); local
2457 uint16_t ocf = cmd_opcode_ocf(opcode); local
    [all...]
  /external/bluetooth/bluez/tools/
hciattach_st.c 44 static int do_command(int fd, uint8_t ogf, uint16_t ocf,
47 //uint16_t opcode = (uint16_t) ((ocf & 0x03ff) | (ogf << 10));
52 cp[1] = ocf & 0xff;
53 cp[2] = ogf << 2 | ocf >> 8;
csr_hci.c 122 rq.ocf = 0x00;
csr.c     [all...]
hciconfig.c 1206 rq.ocf = OCF_WRITE_INQ_ACTIVITY;
1229 rq.ocf = OCF_READ_INQ_ACTIVITY;
1275 rq.ocf = OCF_WRITE_PAGE_ACTIVITY;
1298 rq.ocf = OCF_READ_PAGE_ACTIVITY;
1344 rq.ocf = OCF_WRITE_PAGE_TIMEOUT;
1363 rq.ocf = OCF_READ_PAGE_TIMEOUT;
    [all...]
hcitool.c 1003 rq.ocf = OCF_PERIODIC_INQUIRY;
1065 "\tcmd <ogf> <ocf> [parameters]\n"
1075 uint16_t ocf; local
1098 ocf = strtol(argv[1], 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...]
hciattach_ti.c 249 rq.ocf = cmd_opcode_ocf(opcode);
  /external/bluetooth/hcidump/src/
bpasniff.c 66 rq.ocf = 0x000e;
94 rq.ocf = 0x000e;
122 rq.ocf = 0x000e;
  /external/bluetooth/bluez/include/bluetooth/
hci_lib.h 35 uint16_t ocf; member in struct:hci_request
53 int hci_send_cmd(int dd, uint16_t ogf, uint16_t ocf, uint8_t plen, void *param);
hci.h     [all...]
  /external/bluetooth/bluez/src/
security.c 69 uint16_t ocf; member in struct:hci_req_data
85 uint16_t ogf, uint16_t ocf, int event,
100 data->ocf = ocf;
137 ret_val = hci_send_cmd(dd, data->ogf, data->ocf, data->clen, data->cparam);
dbus-hci.c 802 rq.ocf = OCF_READ_SCAN_ENABLE;
device.c     [all...]
  /external/qemu/hw/
bt-hci-csr.c 143 static void csrhci_in_packet_vendor(struct csrhci_s *s, int ocf,
149 switch (ocf) {
bt.h     [all...]
  /system/bluetooth/bluez-clean-headers/bluetooth/
hci.h 623 #define cmd_opcode_pack(ogf, ocf) (uint16_t)((ocf & 0x03ff)|(ogf << 10))
  /external/icu4c/test/intltest/
loctest.cpp 1313 UChar ocf = 0x00f4; local
    [all...]

Completed in 770 milliseconds