/openbmc/u-boot/include/ |
H A D | post.h | 98 char *cmd; member
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/trace-cmd/ |
H A D | trace-cmd_3.1.5.bb | 9 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/trace-cmd.git;branch=master \
|
/openbmc/qemu/tests/qemu-iotests/tests/ |
H A D | migration-permissions | 50 vms[i].cmd('migrate-set-capabilities',
|
/openbmc/linux/tools/testing/selftests/kvm/x86_64/ |
H A D | svm_int_ctl_test.c | 116 TEST_FAIL("Unknown ucall 0x%lx.", uc.cmd); in main()
|
H A D | tsc_scaling_sync.c | 79 TEST_FAIL("Unknown ucall %lu", uc.cmd); in run_vcpu()
|
H A D | hyperv_extended_hypercalls.c | 91 TEST_FAIL("Unhandled ucall: %ld", uc.cmd); in main()
|
/openbmc/linux/arch/arm/include/asm/ |
H A D | syscalls.h | 25 asmlinkage long sys_oabi_fcntl64(unsigned int fd, unsigned int cmd,
|
/openbmc/linux/drivers/tee/optee/ |
H A D | optee_msg.h | 209 u32 cmd; member
|
/openbmc/linux/Documentation/devicetree/bindings/mmc/ |
H A D | fujitsu,sdhci-fujitsu.yaml | 44 fujitsu,cmd-dat-delay-select:
|
/openbmc/linux/include/media/ |
H A D | tuner.h | 223 int (*tuner_callback)(void *dev, int component, int cmd, int arg);
|
/openbmc/linux/include/sound/ |
H A D | seq_kernel.h | 64 int snd_seq_kernel_client_ctl(int client, unsigned int cmd, void *arg);
|
/openbmc/linux/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_so.h | 153 const void *cmd,
|
/openbmc/linux/sound/soc/meson/ |
H A D | axg-fifo.h | 92 struct snd_pcm_substream *ss, int cmd);
|
/openbmc/linux/tools/bpf/bpftool/ |
H A D | iter.c | 114 static const struct cmd cmds[] = {
|
/openbmc/qemu/monitor/ |
H A D | monitor-internal.h | 77 void (*cmd)(Monitor *mon, const QDict *qdict); member
|
/openbmc/linux/drivers/s390/char/ |
H A D | con3270.c | 528 u8 cmd = TC_WRITE; in tty3270_update() local 539 cmd = TC_EWRITEA; in tty3270_update() 541 raw3270_request_set_cmd(wrq, cmd); in tty3270_update() 801 if (irb->scsw.cmd.dstat & DEV_STAT_ATTENTION) { in tty3270_irq() 809 if (irb->scsw.cmd.dstat & DEV_STAT_UNIT_CHECK) { in tty3270_irq() 815 rq->rescnt = irb->scsw.cmd.count; in tty3270_irq() 817 } else if (irb->scsw.cmd.dstat & DEV_STAT_DEV_END) { in tty3270_irq() 1931 static int tty3270_ioctl(struct tty_struct *tty, unsigned int cmd, in tty3270_ioctl() argument 1941 return kbd_ioctl(tp->kbd, cmd, arg); in tty3270_ioctl() 1946 unsigned int cmd, unsigned long arg) in tty3270_compat_ioctl() argument [all …]
|
/openbmc/linux/drivers/scsi/bnx2fc/ |
H A D | bnx2fc_io.c | 1455 struct bnx2fc_cmd *cmd, *tmp; in bnx2fc_lun_reset_cmpl() local 1466 list_for_each_entry_safe(cmd, tmp, &tgt->active_cmd_queue, link) { in bnx2fc_lun_reset_cmpl() 1468 lun = cmd->sc_cmd->device->lun; in bnx2fc_lun_reset_cmpl() 1472 &cmd->req_flags)) { in bnx2fc_lun_reset_cmpl() 1478 rc = bnx2fc_initiate_abts(cmd); in bnx2fc_lun_reset_cmpl() 1484 cmd->xid); in bnx2fc_lun_reset_cmpl() 1492 struct bnx2fc_cmd *cmd, *tmp; in bnx2fc_tgt_reset_cmpl() local 1501 list_for_each_entry_safe(cmd, tmp, &tgt->active_cmd_queue, link) { in bnx2fc_tgt_reset_cmpl() 1505 &cmd->req_flags)) { in bnx2fc_tgt_reset_cmpl() 1510 rc = bnx2fc_initiate_abts(cmd); in bnx2fc_tgt_reset_cmpl() [all …]
|
/openbmc/linux/drivers/gpu/drm/amd/display/dc/link/protocols/ |
H A D | link_dp_capability.c | 1379 union dmub_rb_cmd cmd; in get_usbc_cable_id() local 1386 memset(&cmd, 0, sizeof(cmd)); in get_usbc_cable_id() 1387 cmd.cable_id.header.type = DMUB_CMD_GET_USBC_CABLE_ID; in get_usbc_cable_id() 1388 cmd.cable_id.header.payload_bytes = sizeof(cmd.cable_id.data); in get_usbc_cable_id() 1389 cmd.cable_id.data.input.phy_inst = resource_transmitter_to_phy_idx( in get_usbc_cable_id() 1391 if (dm_execute_dmub_cmd(link->dc->ctx, &cmd, DM_DMUB_WAIT_TYPE_WAIT_WITH_REPLY) && in get_usbc_cable_id() 1392 cmd.cable_id.header.ret_status == 1) { in get_usbc_cable_id() 1393 cable_id->raw = cmd.cable_id.data.output_raw; in get_usbc_cable_id() 1396 return cmd.cable_id.header.ret_status == 1; in get_usbc_cable_id()
|
/openbmc/linux/drivers/firewire/ |
H A D | core-cdev.c | 1752 unsigned int cmd, void __user *arg) in dispatch_ioctl() argument 1760 if (_IOC_TYPE(cmd) != '#' || in dispatch_ioctl() 1761 _IOC_NR(cmd) >= ARRAY_SIZE(ioctl_handlers) || in dispatch_ioctl() 1762 _IOC_SIZE(cmd) > sizeof(buffer)) in dispatch_ioctl() 1767 if (_IOC_DIR(cmd) & _IOC_WRITE) in dispatch_ioctl() 1768 if (copy_from_user(&buffer, arg, _IOC_SIZE(cmd))) in dispatch_ioctl() 1771 ret = ioctl_handlers[_IOC_NR(cmd)](client, &buffer); in dispatch_ioctl() 1775 if (_IOC_DIR(cmd) & _IOC_READ) in dispatch_ioctl() 1776 if (copy_to_user(arg, &buffer, _IOC_SIZE(cmd))) in dispatch_ioctl() 1783 unsigned int cmd, unsigned long arg) in fw_device_op_ioctl() argument [all …]
|
/openbmc/linux/net/can/j1939/ |
H A D | transport.c | 1277 u8 cmd = skb->data[0]; in j1939_xtp_rx_cmd_bad_pgn() local 1282 switch (cmd) { in j1939_xtp_rx_cmd_bad_pgn() 1319 __func__, session, cmd, pgn, session->skcb.addr.pgn); in j1939_xtp_rx_cmd_bad_pgn() 1728 u8 cmd = skb->data[0]; in j1939_xtp_rx_rts() local 1754 if (cmd == J1939_TP_CMD_BAM && j1939_sk_recv_match(priv, skcb)) in j1939_xtp_rx_rts() 1765 session->last_cmd = cmd; in j1939_xtp_rx_rts() 1767 if (cmd == J1939_TP_CMD_BAM) { in j1939_xtp_rx_rts() 2047 u8 cmd = skb->data[0]; in j1939_tp_cmd_recv() local 2049 switch (cmd) { in j1939_tp_cmd_recv() 2054 if (cmd == J1939_TP_CMD_BAM && !j1939_cb_is_broadcast(skcb)) { in j1939_tp_cmd_recv() [all …]
|
/openbmc/linux/drivers/auxdisplay/ |
H A D | panel.c | 726 static void lcd_write_cmd_s(struct hd44780_common *hdc, int cmd) in lcd_write_cmd_s() argument 730 lcd_send_serial(cmd & 0x0F); in lcd_write_cmd_s() 731 lcd_send_serial((cmd >> 4) & 0x0F); in lcd_write_cmd_s() 748 static void lcd_write_cmd_p8(struct hd44780_common *hdc, int cmd) in lcd_write_cmd_p8() argument 752 w_dtr(pprt, cmd); in lcd_write_cmd_p8() 792 static void lcd_write_cmd_tilcd(struct hd44780_common *hdc, int cmd) in lcd_write_cmd_tilcd() argument 796 w_ctr(pprt, cmd); in lcd_write_cmd_tilcd()
|
/openbmc/linux/drivers/mmc/host/ |
H A D | sdhci-omap.c | 891 if (omap_host->is_tuning && host->cmd && !host->data_early && in sdhci_omap_irq() 901 host->cmd->error = -ETIMEDOUT; in sdhci_omap_irq() 903 host->cmd->error = -EILSEQ; in sdhci_omap_irq() 905 host->cmd = NULL; in sdhci_omap_irq() 920 struct mmc_command *cmd) in sdhci_omap_set_timeout() argument 922 if (cmd->opcode == MMC_ERASE) in sdhci_omap_set_timeout() 925 __sdhci_set_timeout(host, cmd); in sdhci_omap_set_timeout()
|
/openbmc/linux/drivers/net/wireless/rsi/ |
H A D | rsi_91x_sdio.c | 119 struct mmc_command cmd; in rsi_issue_sdiocommand() local 125 memset(&cmd, 0, sizeof(struct mmc_command)); in rsi_issue_sdiocommand() 126 cmd.opcode = opcode; in rsi_issue_sdiocommand() 127 cmd.arg = arg; in rsi_issue_sdiocommand() 128 cmd.flags = flags; in rsi_issue_sdiocommand() 129 err = mmc_wait_for_cmd(host, &cmd, 3); in rsi_issue_sdiocommand() 132 *resp = cmd.resp[0]; in rsi_issue_sdiocommand()
|
/openbmc/linux/sound/pci/hda/ |
H A D | hda_controller.c | 202 static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd) in azx_pcm_trigger() argument 215 trace_azx_pcm_trigger(chip, azx_dev, cmd); in azx_pcm_trigger() 226 switch (cmd) { in azx_pcm_trigger() 751 static unsigned int azx_command_addr(u32 cmd) in azx_command_addr() argument 753 unsigned int addr = cmd >> 28; in azx_command_addr() 1129 unsigned int cmd = (addr << 28) | (AC_NODE_ROOT << 20) | in probe_codec() local 1137 azx_send_cmd(bus, cmd); in probe_codec()
|
/openbmc/linux/drivers/greybus/ |
H A D | es2.c | 147 static int output_sync(struct es2_ap_dev *es2, void *req, u16 size, u8 cmd) in output_sync() argument 158 cmd, in output_sync() 179 static int output_async(struct es2_ap_dev *es2, void *req, u16 size, u8 cmd) in output_async() argument 200 dr->bRequest = cmd; in output_async() 217 static int output(struct gb_host_device *hd, void *req, u16 size, u8 cmd, in output() argument 223 return output_async(es2, req, size, cmd); in output() 225 return output_sync(es2, req, size, cmd); in output()
|