Searched refs:cmdInfo (Results 1 - 3 of 3) sorted by relevance
/drivers/hdf_core/adapter/khdf/linux/platform/mipi_dsi/ |
H A D | mipi_tx_hi35xx.c | 731 static int MipiTxDrvSetCmdInfo(const CmdInfoTag *cmdInfo) in MipiTxDrvSetCmdInfo() argument 737 if (cmdInfo == NULL) { in MipiTxDrvSetCmdInfo() 738 HDF_LOGE("MipiTxDrvSetCmdInfo: cmdInfo is null!"); in MipiTxDrvSetCmdInfo() 742 if (cmdInfo->cmd != NULL) { in MipiTxDrvSetCmdInfo() 743 if ((cmdInfo->cmdSize > 200) || (cmdInfo->cmdSize == 0)) { /* 200 is max cmd size */ in MipiTxDrvSetCmdInfo() 744 HDF_LOGE("MipiTxDrvSetCmdInfo: set cmd size illegal, size =%u!", cmdInfo->cmdSize); in MipiTxDrvSetCmdInfo() 747 cmd = (unsigned char *)OsalMemCalloc(cmdInfo->cmdSize); in MipiTxDrvSetCmdInfo() 749 HDF_LOGE("MipiTxDrvSetCmdInfo: OsalMemCalloc fail,please check,need %u bytes!", cmdInfo->cmdSize); in MipiTxDrvSetCmdInfo() 752 ret = LinuxCopyToKernel(cmd, cmdInfo in MipiTxDrvSetCmdInfo() 1135 MipiTxCheckSetCmdInfo(const CmdInfoTag *cmdInfo) MipiTxCheckSetCmdInfo() argument 1160 MipiTxSetCmd(const CmdInfoTag *cmdInfo) MipiTxSetCmd() argument 1177 CmdInfoTag cmdInfo; Hi35xxSetCmd() local 1248 GetCmdInfoTag cmdInfo; Hi35xxGetCmd() local [all...] |
/drivers/peripheral/input/hal/src/ |
H A D | input_controller.c | 448 static int32_t RunExtraCommand(uint32_t devIndex, InputExtraCmd *cmdInfo)
in RunExtraCommand() argument 454 if ((devIndex >= MAX_INPUT_DEV_NUM) || (cmdInfo == NULL) || (cmdInfo->cmdCode == NULL) ||
in RunExtraCommand() 455 (cmdInfo->cmdValue == NULL)) {
in RunExtraCommand() 466 if (IoServiceOps(pos->service, RUN_EXTRA_CMD, cmdInfo, NULL, 0)) {
in RunExtraCommand()
|
/drivers/peripheral/input/hdi_service/ |
H A D | input_interfaces_impl.cpp | 430 InputExtraCmd cmdInfo; in RunExtraCommand() local 431 cmdInfo.cmdCode = cmd.cmdCode.c_str(); in RunExtraCommand() 432 cmdInfo.cmdValue = cmd.cmdValue.c_str(); in RunExtraCommand() 440 int32_t ret = inputInterface_->iInputController->RunExtraCommand(devIndex, &cmdInfo); in RunExtraCommand()
|
Completed in 4 milliseconds