/openbmc/qemu/docs/devel/testing/ |
H A D | functional.rst | 92 res = self.vm.cmd('human-monitor-command', 138 first_res = first_machine.cmd( 142 second_res = second_machine.cmd( 146 third_res = self.get_vm(name='third_machine').cmd(
|
/openbmc/phosphor-logging/extensions/openpower-pels/ |
H A D | manager.cpp | 668 auto cmd = std::format("/usr/bin/peltool -i {:#x}", pelID); in getPELJSON() local 670 FILE* pipe = popen(cmd.c_str(), "r"); in getPELJSON() 673 lg2::error("Error running cmd: {CMD}", "CMD", cmd); in getPELJSON() 687 lg2::error("Error running cmd: {CMD}, rc = {RC}", "CMD", cmd, "RC", rc); in getPELJSON()
|
/openbmc/linux/drivers/infiniband/hw/ocrdma/ |
H A D | ocrdma_sli.h | 290 u8 cmd[236]; member 355 struct ocrdma_modify_eqd_cmd cmd; member 802 struct ocrdma_create_cq_cmd cmd; member 1529 struct ocrdma_mbx_hdr cmd; member 1556 struct ocrdma_mbx_hdr cmd; member
|
/openbmc/linux/drivers/media/usb/ttusb-budget/ |
H A D | dvb-ttusb-budget.c | 448 const struct dvb_diseqc_master_cmd *cmd) in ttusb_send_diseqc() argument 455 b[3] = 4 + 2 + cmd->msg_len; in ttusb_send_diseqc() 457 b[5] = cmd->msg_len; in ttusb_send_diseqc() 459 memcpy(b + 5, cmd->msg, cmd->msg_len); in ttusb_send_diseqc()
|
/openbmc/linux/sound/pci/ |
H A D | atiixp.c | 706 static int snd_atiixp_pcm_trigger(struct snd_pcm_substream *substream, int cmd) in snd_atiixp_pcm_trigger() argument 717 switch (cmd) { in snd_atiixp_pcm_trigger() 722 cmd == SNDRV_PCM_TRIGGER_RESUME) in snd_atiixp_pcm_trigger() 732 dma->suspended = cmd == SNDRV_PCM_TRIGGER_SUSPEND; in snd_atiixp_pcm_trigger() 745 if (cmd == SNDRV_PCM_TRIGGER_STOP) { in snd_atiixp_pcm_trigger()
|
/openbmc/linux/drivers/media/dvb-frontends/ |
H A D | stb0899_drv.c | 686 static int stb0899_send_diseqc_msg(struct dvb_frontend *fe, struct dvb_diseqc_master_cmd *cmd) in stb0899_send_diseqc_msg() argument 691 if (cmd->msg_len > sizeof(cmd->msg)) in stb0899_send_diseqc_msg() 698 for (i = 0; i < cmd->msg_len; i++) { in stb0899_send_diseqc_msg() 703 stb0899_write_reg(state, STB0899_DISFIFO, cmd->msg[i]); in stb0899_send_diseqc_msg()
|
/openbmc/linux/drivers/scsi/csiostor/ |
H A D | csio_wr.c | 786 csio_wr_destroy_queues(struct csio_hw *hw, bool cmd) in csio_wr_destroy_queues() argument 800 if (!cmd) { in csio_wr_destroy_queues() 807 cmd = false; in csio_wr_destroy_queues() 815 if (!cmd) { in csio_wr_destroy_queues() 826 cmd = false; in csio_wr_destroy_queues()
|
/openbmc/linux/arch/arm/boot/dts/samsung/ |
H A D | exynos4x12-pinctrl.dtsi | 622 sd0_cmd: sd0-cmd-pins { 664 sd4_cmd: sd4-cmd-pins { 706 sd1_cmd: sd1-cmd-pins { 741 sd2_cmd: sd2-cmd-pins { 783 sd3_cmd: sd3-cmd-pins {
|
/openbmc/linux/drivers/scsi/ |
H A D | scsi_transport_spi.c | 107 static int spi_execute(struct scsi_device *sdev, const void *cmd, in spi_execute() argument 127 result = scsi_execute_cmd(sdev, cmd, opf, buffer, bufflen, in spi_execute() 1229 int spi_populate_tag_msg(unsigned char *msg, struct scsi_cmnd *cmd) in spi_populate_tag_msg() argument 1231 if (cmd->flags & SCMD_TAGGED) { in spi_populate_tag_msg() 1233 *msg++ = scsi_cmd_to_rq(cmd)->tag; in spi_populate_tag_msg()
|
/openbmc/qemu/hw/scsi/ |
H A D | mptsas.c | 330 if (req->sreq->cmd.xfer > scsi_io->DataLength) { in mptsas_process_scsi_io_request() 335 if (req->sreq->cmd.mode != SCSI_XFER_NONE) { in mptsas_process_scsi_io_request() 341 if (req->sreq->cmd.mode != SCSI_XFER_TO_DEV) { in mptsas_process_scsi_io_request() 347 if (req->sreq->cmd.mode != SCSI_XFER_FROM_DEV) { in mptsas_process_scsi_io_request() 359 trace_mptsas_scsi_overflow(s, scsi_io->MsgContext, req->sreq->cmd.xfer, in mptsas_process_scsi_io_request()
|
/openbmc/linux/drivers/net/wireless/intel/ipw2x00/ |
H A D | ipw2200.h | 507 struct tfd_command cmd; member 993 u32 cmd; /**< Host command */ member 1944 u8 cmd; member 1951 u8 cmd; member 1960 struct cmdlog_host_cmd cmd; member
|
/openbmc/openbmc/poky/meta/classes-global/ |
H A D | staging.bbclass | 183 …cmd = "sed -e 's:^[^/]*/:%s/:g' %s | xargs sed -i -e 's:FIXMESTAGINGDIRTARGET:%s:g; s:FIXMESTAGING… 186 cmd += " -e 's:FIXME_%s:%s:g'" % (fixmevar, fixme_path) 187 bb.debug(2, cmd) 188 subprocess.check_output(cmd, shell=True, stderr=subprocess.STDOUT) 235 if l.endswith("/fixmepath.cmd"): 571 if l.endswith("/fixmepath.cmd"):
|
/openbmc/linux/kernel/ |
H A D | seccomp.c | 1771 static long seccomp_notify_ioctl(struct file *file, unsigned int cmd, in seccomp_notify_ioctl() argument 1778 switch (cmd) { in seccomp_notify_ioctl() 1791 #define EA_IOCTL(cmd) ((cmd) & ~(IOC_INOUT | IOCSIZE_MASK)) in seccomp_notify_ioctl() argument 1792 switch (EA_IOCTL(cmd)) { in seccomp_notify_ioctl() 1794 return seccomp_notify_addfd(filter, buf, _IOC_SIZE(cmd)); in seccomp_notify_ioctl()
|
/openbmc/linux/drivers/media/platform/qcom/venus/ |
H A D | venc.c | 529 venc_encoder_cmd(struct file *file, void *fh, struct v4l2_encoder_cmd *cmd) in venc_encoder_cmd() argument 535 ret = v4l2_m2m_ioctl_try_encoder_cmd(file, fh, cmd); in venc_encoder_cmd() 541 if (cmd->cmd == V4L2_ENC_CMD_STOP && in venc_encoder_cmd() 557 } else if (cmd->cmd == V4L2_ENC_CMD_START) { in venc_encoder_cmd()
|
/openbmc/linux/drivers/net/ethernet/amd/ |
H A D | amd8111e.c | 1385 struct ethtool_link_ksettings *cmd) in amd8111e_get_link_ksettings() argument 1389 mii_ethtool_get_link_ksettings(&lp->mii_if, cmd); in amd8111e_get_link_ksettings() 1395 const struct ethtool_link_ksettings *cmd) in amd8111e_set_link_ksettings() argument 1400 res = mii_ethtool_set_link_ksettings(&lp->mii_if, cmd); in amd8111e_set_link_ksettings() 1459 static int amd8111e_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) in amd8111e_ioctl() argument 1466 switch (cmd) { in amd8111e_ioctl()
|
/openbmc/linux/drivers/net/ethernet/calxeda/ |
H A D | xgmac.c | 1525 struct ethtool_link_ksettings *cmd) in xgmac_ethtool_get_link_ksettings() argument 1527 cmd->base.autoneg = 0; in xgmac_ethtool_get_link_ksettings() 1528 cmd->base.duplex = DUPLEX_FULL; in xgmac_ethtool_get_link_ksettings() 1529 cmd->base.speed = 10000; in xgmac_ethtool_get_link_ksettings() 1530 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported, 0); in xgmac_ethtool_get_link_ksettings() 1531 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising, 0); in xgmac_ethtool_get_link_ksettings()
|
/openbmc/linux/drivers/mtd/nand/raw/ |
H A D | mxc_nand.c | 488 static void send_cmd_v3(struct mxc_nand_host *host, uint16_t cmd, int useirq) in send_cmd_v3() argument 491 writel(cmd, NFC_V3_FLASH_CMD); in send_cmd_v3() 502 static void send_cmd_v1_v2(struct mxc_nand_host *host, uint16_t cmd, int useirq) in send_cmd_v1_v2() argument 504 dev_dbg(host->dev, "send_cmd(host, 0x%x, %d)\n", cmd, useirq); in send_cmd_v1_v2() 506 writew(cmd, NFC_V1_V2_FLASH_CMD); in send_cmd_v1_v2() 509 if (host->devtype_data->irqpending_quirk && (cmd == NAND_CMD_RESET)) { in send_cmd_v1_v2()
|
/openbmc/linux/sound/soc/codecs/ |
H A D | peb2466.c | 134 static int peb2466_write_byte(struct peb2466 *peb2466, u8 cmd, u8 val) in peb2466_write_byte() argument 141 peb2466->spi_tx_buf[0] = cmd | PEB2466_CMD_W; in peb2466_write_byte() 150 static int peb2466_read_byte(struct peb2466 *peb2466, u8 cmd, u8 *val) in peb2466_read_byte() argument 159 peb2466->spi_tx_buf[0] = cmd | PEB2466_CMD_R; in peb2466_read_byte() 180 static int peb2466_write_buf(struct peb2466 *peb2466, u8 cmd, const u8 *buf, unsigned int len) in peb2466_write_buf() argument 190 peb2466->spi_tx_buf[0] = cmd | PEB2466_CMD_W; in peb2466_write_buf()
|
/openbmc/linux/net/sunrpc/ |
H A D | cache.c | 994 unsigned int cmd, unsigned long arg, in cache_ioctl() argument 1001 if (cmd != FIONREAD || !rp) in cache_ioctl() 1578 unsigned int cmd, unsigned long arg) in cache_ioctl_procfs() argument 1583 return cache_ioctl(inode, filp, cmd, arg, cd); in cache_ioctl_procfs() 1796 unsigned int cmd, unsigned long arg) in cache_ioctl_pipefs() argument 1801 return cache_ioctl(inode, filp, cmd, arg, cd); in cache_ioctl_pipefs()
|
/openbmc/linux/drivers/mmc/host/ |
H A D | sdhci-esdhc-imx.c | 736 && (host->cmd->opcode == SD_IO_RW_EXTENDED) in esdhc_writew_le() 737 && (host->cmd->data->blocks > 1) in esdhc_writew_le() 738 && (host->cmd->data->flags & MMC_DATA_READ)) { in esdhc_writew_le() 793 if (host->cmd->opcode == MMC_STOP_TRANSMISSION) in esdhc_writew_le() 796 if ((host->cmd->opcode == MMC_SET_BLOCK_COUNT) && in esdhc_writew_le() 1363 static void esdhc_set_timeout(struct sdhci_host *host, struct mmc_command *cmd) in esdhc_set_timeout() argument
|
/openbmc/linux/drivers/net/wireless/ath/ath6kl/ |
H A D | Kconfig | 51 example, can be enabled with help of trace-cmd. All debug
|
/openbmc/linux/include/uapi/drm/ |
H A D | exynos_drm.h | 124 __u64 cmd; member
|
/openbmc/linux/sound/pci/lx6464es/ |
H A D | lx_core.h | 91 u32 cmd[REG_CRM_NUMBER]; member
|
/openbmc/linux/arch/mips/include/asm/txx9/ |
H A D | tx4927.h | 83 u64 cmd; member
|
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/tests/ |
H A D | process_tree_test.py | 45 self.assertEqual(tokens[1], actual.cmd)
|