Home
last modified time | relevance | path

Searched refs:sub_cmd (Results 1 – 25 of 38) sorted by relevance

12

/OK3568_Linux_fs/external/security/rk_tee_user/v2/host/supp_plugin/
H A Dtest_supp_plugin.c16 static TEEC_Result pass_values(unsigned int sub_cmd, void *data, in pass_values() argument
27 if (sub_cmd == '+') in pass_values()
35 static TEEC_Result proc_input_arr(unsigned int sub_cmd, void *data, in proc_input_arr() argument
38 (void)sub_cmd; in proc_input_arr()
53 static TEEC_Result get_test_arr(unsigned int sub_cmd, void *data, in get_test_arr() argument
56 (void)sub_cmd; in get_test_arr()
69 static TEEC_Result test_plugin_invoke(unsigned int cmd, unsigned int sub_cmd, in test_plugin_invoke() argument
77 return pass_values(sub_cmd, data, data_len, out_len); in test_plugin_invoke()
79 return proc_input_arr(sub_cmd, data, data_len, out_len); in test_plugin_invoke()
81 return get_test_arr(sub_cmd, data, data_len, out_len); in test_plugin_invoke()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/
H A Dwl_cfgnan.c1019 bcm_iov_batch_subcmd_t *sub_cmd = NULL; in wl_cfgnan_config_eventmask() local
1048 sub_cmd = (bcm_iov_batch_subcmd_t*)(uint8 *)(&nan_buf->cmds[0]); in wl_cfgnan_config_eventmask()
1057 sub_cmd->id = htod16(WL_NAN_CMD_CFG_EVENT_MASK); in wl_cfgnan_config_eventmask()
1058 sub_cmd->len = sizeof(sub_cmd->u.options) + evmask_cmd_len; in wl_cfgnan_config_eventmask()
1059 sub_cmd->u.options = htol32(BCM_XTLV_OPTION_ALIGN32); in wl_cfgnan_config_eventmask()
1060 evmask = (wl_nan_evmask_extn_t *)sub_cmd->data; in wl_cfgnan_config_eventmask()
1119 evmask = (wl_nan_evmask_extn_t *)sub_cmd->data; in wl_cfgnan_config_eventmask()
1149 bcm_iov_batch_subcmd_t *sub_cmd = NULL; in wl_cfgnan_set_nan_avail() local
1196 sub_cmd = (bcm_iov_batch_subcmd_t*)(nan_iov_data->nan_iov_buf); in wl_cfgnan_set_nan_avail()
1203 avail = (wl_avail_t *)sub_cmd->data; in wl_cfgnan_set_nan_avail()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/
H A Dwl_cfgnan.c1019 bcm_iov_batch_subcmd_t *sub_cmd = NULL; in wl_cfgnan_config_eventmask() local
1048 sub_cmd = (bcm_iov_batch_subcmd_t*)(uint8 *)(&nan_buf->cmds[0]); in wl_cfgnan_config_eventmask()
1057 sub_cmd->id = htod16(WL_NAN_CMD_CFG_EVENT_MASK); in wl_cfgnan_config_eventmask()
1058 sub_cmd->len = sizeof(sub_cmd->u.options) + evmask_cmd_len; in wl_cfgnan_config_eventmask()
1059 sub_cmd->u.options = htol32(BCM_XTLV_OPTION_ALIGN32); in wl_cfgnan_config_eventmask()
1060 evmask = (wl_nan_evmask_extn_t *)sub_cmd->data; in wl_cfgnan_config_eventmask()
1119 evmask = (wl_nan_evmask_extn_t *)sub_cmd->data; in wl_cfgnan_config_eventmask()
1149 bcm_iov_batch_subcmd_t *sub_cmd = NULL; in wl_cfgnan_set_nan_avail() local
1196 sub_cmd = (bcm_iov_batch_subcmd_t*)(nan_iov_data->nan_iov_buf); in wl_cfgnan_set_nan_avail()
1203 avail = (wl_avail_t *)sub_cmd->data; in wl_cfgnan_set_nan_avail()
[all …]
/OK3568_Linux_fs/u-boot/cmd/
H A Dgpio.c121 enum gpio_cmd sub_cmd; in do_gpio() local
161 case 'i': sub_cmd = GPIO_INPUT; break; in do_gpio()
162 case 's': sub_cmd = GPIO_SET; break; in do_gpio()
163 case 'c': sub_cmd = GPIO_CLEAR; break; in do_gpio()
164 case 't': sub_cmd = GPIO_TOGGLE; break; in do_gpio()
195 if (sub_cmd == GPIO_INPUT) { in do_gpio()
199 switch (sub_cmd) { in do_gpio()
221 if (sub_cmd != GPIO_INPUT && !IS_ERR_VALUE(value)) { in do_gpio()
/OK3568_Linux_fs/u-boot/test/rockchip/
H A Dtest-display.c28 static cmd_tbl_t sub_cmd[] = { variable
39 .cmd = sub_cmd,
40 .cmd_n = ARRAY_SIZE(sub_cmd),
H A Dtest-boot.c41 static cmd_tbl_t sub_cmd[] = { variable
74 .cmd = sub_cmd,
75 .cmd_n = ARRAY_SIZE(sub_cmd),
H A Dtest-download.c57 static cmd_tbl_t sub_cmd[] = { variable
90 .cmd = sub_cmd,
91 .cmd_n = ARRAY_SIZE(sub_cmd),
H A Dtest-power.c206 static cmd_tbl_t sub_cmd[] = { variable
257 .cmd = sub_cmd,
258 .cmd_n = ARRAY_SIZE(sub_cmd),
H A Dtest-misc.c212 static cmd_tbl_t sub_cmd[] = { variable
251 .cmd = sub_cmd,
252 .cmd_n = ARRAY_SIZE(sub_cmd),
H A Dtest-net.c314 static cmd_tbl_t sub_cmd[] = { variable
331 .cmd = sub_cmd,
332 .cmd_n = ARRAY_SIZE(sub_cmd),
H A Dtest-storage.c428 static cmd_tbl_t sub_cmd[] = { variable
521 .cmd = sub_cmd,
522 .cmd_n = ARRAY_SIZE(sub_cmd),
/OK3568_Linux_fs/u-boot/tools/buildman/
H A Dfunc_test.py298 sub_cmd = None # Git sub-command selected
301 if sub_cmd:
309 sub_cmd = arg
310 if sub_cmd == 'config':
312 elif sub_cmd == 'log':
314 elif sub_cmd == 'clone':
316 elif sub_cmd == 'checkout':
320 print 'git', git_args, sub_cmd, args
/OK3568_Linux_fs/kernel/drivers/ide/
H A Dide-disk_proc.c26 static int get_smart_data(ide_drive_t *drive, u8 *buf, u8 sub_cmd) in get_smart_data() argument
32 tf->feature = sub_cmd; in get_smart_data()
63 static int __idedisk_proc_show(struct seq_file *m, ide_drive_t *drive, u8 sub_cmd) in __idedisk_proc_show() argument
73 if (get_smart_data(drive, buf, sub_cmd) == 0) { in __idedisk_proc_show()
/OK3568_Linux_fs/kernel/drivers/platform/chrome/wilco_ec/
H A Ddebugfs.c168 u8 sub_cmd; member
176 static int send_ec_cmd(struct wilco_ec_device *ec, u8 sub_cmd, u8 *out_val) in send_ec_cmd() argument
185 rq.sub_cmd = sub_cmd; in send_ec_cmd()
H A Dsysfs.c24 u8 sub_cmd; /* Always SUB_CMD_KB_CMOS_AUTO_ON */ member
87 rq.sub_cmd = SUB_CMD_KB_CMOS_AUTO_ON; in boot_on_ac_store()
/OK3568_Linux_fs/kernel/drivers/platform/x86/intel_speed_select_if/
H A Disst_if_common.c44 u16 sub_cmd; member
126 int isst_store_cmd(int cmd, int sub_cmd, u32 cpu, int mbox_cmd_type, in isst_store_cmd() argument
133 full_cmd |= (sub_cmd & GENMASK_ULL(15, 0)); in isst_store_cmd()
254 cmd->sub_command == isst_cmd_set_reqs[i].sub_cmd && in isst_if_mbox_cmd_set_req()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/client_export/public/
H A Dtee_plugin_method.h16 TEEC_Result (*invoke)(unsigned int cmd, unsigned int sub_cmd,
/OK3568_Linux_fs/external/security/librkcrypto/third_party/optee_client/public/
H A Dtee_plugin_method.h16 TEEC_Result (*invoke)(unsigned int cmd, unsigned int sub_cmd,
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/
H A Dtee_internal_api_extensions.h78 uint32_t sub_cmd, void *buf, size_t len,
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/
H A Dtee_internal_api_extensions.h78 uint32_t sub_cmd, void *buf, size_t len,
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/
H A Dtee_internal_api_extensions.h78 uint32_t sub_cmd, void *buf, size_t len,
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/
H A Dtee_internal_api_extensions.h78 uint32_t sub_cmd, void *buf, size_t len,
/OK3568_Linux_fs/kernel/drivers/net/ethernet/intel/igbvf/
H A Dvf.c332 static s32 e1000_set_uc_addr_vf(struct e1000_hw *hw, u32 sub_cmd, u8 *addr) in e1000_set_uc_addr_vf() argument
340 msgbuf[0] |= sub_cmd; in e1000_set_uc_addr_vf()
/OK3568_Linux_fs/kernel/drivers/net/wireless/marvell/mwifiex/
H A Dsta_ioctl.c764 u16 sub_cmd; in mwifiex_drv_set_power() local
770 sub_cmd = (*ps_mode) ? EN_AUTO_PS : DIS_AUTO_PS; in mwifiex_drv_set_power()
772 sub_cmd, BITMAP_STA_PS, NULL, true); in mwifiex_drv_set_power()
773 if ((!ret) && (sub_cmd == DIS_AUTO_PS)) in mwifiex_drv_set_power()
/OK3568_Linux_fs/u-boot/drivers/net/fsl-mc/
H A Dmc.c1406 char sub_cmd; in do_fsl_mc() local
1412 sub_cmd = argv[2][0]; in do_fsl_mc()
1413 switch (sub_cmd) { in do_fsl_mc()

12