Lines Matching refs:args
29 JSIValue ExecuteAsyncWork(const JSIValue thisVal, const JSIValue* args,
33 if (!NativeapiCommon::IsValidJSIValue(args, argsNum)) {
41 params->args = JSI::AcquireValue(args[0]);
53 JSIValue args = params->args;
57 NativeapiCommon::FailCallBack(thisVal, args, ERROR_CODE_GENERAL);
59 NativeapiCommon::SuccessCallBack(thisVal, args, result);
61 JSI::ReleaseValueList(args, thisVal, result, ARGS_END);
82 JSIValue NativeapiDeviceInfo::GetDeviceInfo(const JSIValue thisVal, const JSIValue* args, uint8_t argsNum)
84 return ExecuteAsyncWork(thisVal, args, argsNum, ExecuteGetInfo);