Home
last modified time | relevance | path

Searched refs:cmd (Results 2801 – 2825 of 6826) sorted by relevance

1...<<111112113114115116117118119120>>...274

/openbmc/linux/include/trace/events/
H A Dscmi.h157 __dynamic_array(unsigned char, cmd, len)
169 memcpy(__get_dynamic_array(cmd), buf, __entry->len);
175 __print_hex_str(__get_dynamic_array(cmd), __entry->len))
/openbmc/linux/tools/bpf/bpftool/
H A Dmain.h128 struct cmd { struct
129 const char *cmd; argument
133 int cmd_select(const struct cmd *cmds, int argc, char **argv, argument
/openbmc/qemu/hw/s390x/
H A Dtrace-events35 s390_pci_unknown(const char *msg, uint32_t cmd) "%s unknown command 0x%x"
37 s390_pci_nodev(const char *cmd, uint32_t fh) "%s no pci dev fh 0x%x"
38 s390_pci_invalid(const char *cmd, uint32_t fh) "%s invalid space fh 0x%x"
/openbmc/phosphor-psu-code-mgmt/src/
H A Dutils.cpp62 std::string cmd = concat_string(ts...); in exec() local
65 FILE* pipe = popen(cmd.c_str(), "r"); in exec()
70 cmd, std::strerror(errno))}; in exec()
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dcreate_buildsys_python.py359 def run_command(cls, cmd, **popenargs): argument
363 return subprocess.check_output(cmd, **popenargs).decode('utf-8')
365 logger.error('Unable to run `{}`: {}', ' '.join(cmd), exc)
368 logger.error('Unable to run `{}`: {}', ' '.join(cmd), exc.output)
457 cmd = ['python3', setupscript]
469 … arg_info = self.run_command(cmd + ['--' + arg], cwd=os.path.dirname(setupscript))
479 … arg_info = self.run_command(cmd + ['--' + arg], cwd=os.path.dirname(setupscript))
491 cmd = ['python3', setupscript]
492 cmd.extend('--' + self.setuparg_map.get(f, f.lower()) for f in fields)
494 info_lines = self.run_command(cmd, cwd=os.path.dirname(setupscript)).splitlines()
/openbmc/linux/net/netlabel/
H A Dnetlabel_unlabeled.c1063 static int netlbl_unlabel_staticlist_gen(u32 cmd, in netlbl_unlabel_staticlist_gen() argument
1079 NLM_F_MULTI, cmd); in netlbl_unlabel_staticlist_gen()
1311 .cmd = NLBL_UNLABEL_C_STATICADD,
1318 .cmd = NLBL_UNLABEL_C_STATICREMOVE,
1325 .cmd = NLBL_UNLABEL_C_STATICLIST,
1332 .cmd = NLBL_UNLABEL_C_STATICADDDEF,
1339 .cmd = NLBL_UNLABEL_C_STATICREMOVEDEF,
1346 .cmd = NLBL_UNLABEL_C_STATICLISTDEF,
1353 .cmd = NLBL_UNLABEL_C_ACCEPT,
1360 .cmd = NLBL_UNLABEL_C_LIST,
/openbmc/u-boot/include/
H A Dled-display.h16 void display_set(int cmd);
H A Dautoboot.h34 void autoboot_command(const char *cmd);
/openbmc/openbmc/meta-facebook/meta-harma/recipes-phosphor/state/phosphor-state-manager/
H A Dhost-graceful-poweroff4 source /usr/libexec/phosphor-state-manager/power-cmd
H A Dhost-powerreset4 source /usr/libexec/phosphor-state-manager/power-cmd
H A Dhost-force-poweroff4 source /usr/libexec/phosphor-state-manager/power-cmd
H A Dhost-poweron4 source /usr/libexec/phosphor-state-manager/power-cmd
/openbmc/linux/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_ethtool.c1705 struct ethtool_rxnfc *cmd, in cxgb4_ntuple_get_filter() argument
1731 cxgb4_fill_filter_rule(&cmd->fs, &f->fs); in cxgb4_ntuple_get_filter()
1744 switch (info->cmd) { in get_rxnfc()
1819 struct ethtool_rxnfc *cmd) in cxgb4_ntuple_del_filter() argument
1867 struct ethtool_rxnfc *cmd) in cxgb4_ntuple_set_filter() argument
1891 if (test_bit(cmd->fs.location, in cxgb4_ntuple_set_filter()
1897 input.fs = &cmd->fs; in cxgb4_ntuple_set_filter()
1919 set_bit(cmd->fs.location, filter_info->bmap); in cxgb4_ntuple_set_filter()
1932 switch (cmd->cmd) { in set_rxnfc()
1934 ret = cxgb4_ntuple_set_filter(dev, cmd); in set_rxnfc()
[all …]
/openbmc/linux/drivers/media/usb/pwc/
H A Dpwc-dec1.h25 void pwc_dec1_init(struct pwc_device *pdev, const unsigned char *cmd);
/openbmc/linux/arch/arm/mach-highbank/
H A Dsystem.c12 void highbank_restart(enum reboot_mode mode, const char *cmd) in highbank_restart() argument
/openbmc/linux/drivers/dma/qcom/
H A Dqcom_adm.c104 u32 cmd; member
113 u32 cmd; member
256 box_desc->cmd = ADM_CMD_TYPE_BOX | crci_cmd; in adm_process_fc_descriptors()
274 single_desc->cmd = ADM_CMD_TYPE_SINGLE | crci_cmd; in adm_process_fc_descriptors()
281 single_desc->cmd |= ADM_CMD_LC; in adm_process_fc_descriptors()
284 box_desc->cmd |= ADM_CMD_LC; in adm_process_fc_descriptors()
318 single_desc->cmd = ADM_CMD_TYPE_SINGLE; in adm_process_non_fc_descriptors()
331 single_desc->cmd |= ADM_CMD_LC; in adm_process_non_fc_descriptors()
/openbmc/linux/arch/sparc/kernel/
H A Dpci.c728 u16 cmd, oldcmd; in pcibios_enable_device() local
731 pci_read_config_word(dev, PCI_COMMAND, &cmd); in pcibios_enable_device()
732 oldcmd = cmd; in pcibios_enable_device()
740 cmd |= PCI_COMMAND_IO; in pcibios_enable_device()
742 cmd |= PCI_COMMAND_MEMORY; in pcibios_enable_device()
745 if (cmd != oldcmd) { in pcibios_enable_device()
746 pci_info(dev, "enabling device (%04x -> %04x)\n", oldcmd, cmd); in pcibios_enable_device()
747 pci_write_config_word(dev, PCI_COMMAND, cmd); in pcibios_enable_device()
/openbmc/linux/drivers/net/ethernet/ti/
H A Dam65-cpsw-qos.c247 u32 prio_mask, cmd_fetch_cnt, cmd; in am65_cpsw_est_set_sched_cmds() local
263 cmd = (cmd_fetch_cnt << AM65_CPSW_FETCH_CNT_OFFSET) | prio_mask; in am65_cpsw_est_set_sched_cmds()
265 writel(cmd, addr); in am65_cpsw_est_set_sched_cmds()
453 if (est_new->taprio.cmd == TAPRIO_CMD_DESTROY) { in am65_cpsw_configure_taprio()
479 am65_cpsw_est_set(ndev, est_new->taprio.cmd == TAPRIO_CMD_REPLACE); in am65_cpsw_configure_taprio()
523 if (taprio->cmd == TAPRIO_CMD_REPLACE) { in am65_cpsw_set_taprio()
570 if (taprio->cmd != TAPRIO_CMD_REPLACE && in am65_cpsw_setup_taprio()
571 taprio->cmd != TAPRIO_CMD_DESTROY) in am65_cpsw_setup_taprio()
/openbmc/linux/include/linux/
H A Dlsm_hook_defs.h172 LSM_HOOK(int, 0, file_ioctl, struct file *file, unsigned int cmd,
174 LSM_HOOK(int, 0, file_ioctl_compat, struct file *file, unsigned int cmd,
181 LSM_HOOK(int, 0, file_lock, struct file *file, unsigned int cmd)
182 LSM_HOOK(int, 0, file_fcntl, struct file *file, unsigned int cmd,
247 LSM_HOOK(int, 0, msg_queue_msgctl, struct kern_ipc_perm *perm, int cmd)
255 LSM_HOOK(int, 0, shm_shmctl, struct kern_ipc_perm *perm, int cmd)
261 LSM_HOOK(int, 0, sem_semctl, struct kern_ipc_perm *perm, int cmd)
400 LSM_HOOK(int, 0, bpf, int cmd, union bpf_attr *attr, unsigned int size)
/openbmc/linux/arch/powerpc/platforms/82xx/
H A Dpq2.h5 void __noreturn pq2_restart(char *cmd);
/openbmc/linux/arch/hexagon/kernel/
H A Dreset.c19 void machine_restart(char *cmd) in machine_restart() argument
/openbmc/linux/arch/arm/mach-omap2/
H A Dti81xx-restart.c25 void ti81xx_restart(enum reboot_mode mode, const char *cmd) in ti81xx_restart() argument
/openbmc/openbmc/meta-facebook/meta-catalina/recipes-phosphor/state/phosphor-state-manager/
H A Dchassis-poweron4 source /usr/libexec/phosphor-state-manager/power-cmd
H A Dhost-force-poweroff4 source /usr/libexec/phosphor-state-manager/power-cmd
H A Dchassis-powercycle4 source /usr/libexec/phosphor-state-manager/power-cmd

1...<<111112113114115116117118119120>>...274