Searched refs:cmd_channel (Results 1 - 3 of 3) sorted by relevance

/fuchsia/zircon/system/dev/bluetooth/bt-transport-uart/
H A Dbt-transport-uart.c48 zx_handle_t cmd_channel; member in struct:__anon226
115 if (hci->cmd_channel != ZX_HANDLE_INVALID) {
116 items[count].handle = hci->cmd_channel;
180 channel_cleanup_locked(hci, &hci->cmd_channel);
263 zx_status_t status = zx_channel_write(hci->cmd_channel, 0,
356 channel_cleanup_locked(hci, &hci->cmd_channel);
367 if (item.handle == hci->cmd_channel) {
434 channel_cleanup_locked(hci, &hci->cmd_channel);
451 return hci_open_channel(hci, &hci->cmd_channel, out_channel);
/fuchsia/zircon/system/dev/bluetooth/bt-transport-usb/
H A Dbt-transport-usb.c51 zx_handle_t cmd_channel; member in struct:__anon227
127 if (hci->cmd_channel == ZX_HANDLE_INVALID && hci->snoop_channel == ZX_HANDLE_INVALID)
143 if (hci->cmd_channel != ZX_HANDLE_INVALID) {
144 zx_status_t status = zx_channel_write(hci->cmd_channel, 0, buffer, length, NULL, 0);
171 zx_status_t status = zx_channel_write(hci->cmd_channel, 0, hci->event_buffer,
254 if (hci->cmd_channel != ZX_HANDLE_INVALID) {
255 items[count].handle = hci->cmd_channel;
311 channel_cleanup_locked(hci, &hci->cmd_channel);
384 channel_cleanup_locked(hci, &hci->cmd_channel);
395 if (item.handle == hci->cmd_channel) {
[all...]
/fuchsia/zircon/system/utest/core/process/
H A Dprocess.cpp33 zx_handle_t cmd_channel; local
34 EXPECT_EQ(start_mini_process_etc(proc, thread, vmar, event, &cmd_channel), ZX_OK);
36 EXPECT_EQ(mini_process_cmd(cmd_channel, MINIP_CMD_ECHO_MSG, nullptr), ZX_OK);
39 EXPECT_EQ(mini_process_cmd(cmd_channel, MINIP_CMD_CREATE_EVENT, &oev), ZX_OK);
41 EXPECT_EQ(mini_process_cmd(cmd_channel, MINIP_CMD_EXIT_NORMAL, nullptr), ZX_ERR_PEER_CLOSED);

Completed in 81 milliseconds