Home
last modified time | relevance | path

Searched full:param (Results 4051 - 4075 of 7978) sorted by relevance

1...<<161162163164165166167168169170>>...320

/test/xts/hats/distributedhardware/distributedcameratest_additional/
H A Ddcameraprovidercase.h31 int32_t Register(std::shared_ptr<DCameraRegistParam> &param) { return DCAMERA_OK; } in Register() argument
32 int32_t UnRegister(std::shared_ptr<DCameraRegistParam> &param) { return DCAMERA_OK; } in UnRegister() argument
/foundation/arkui/ace_engine/interfaces/napi/kits/utils/
H A Dnapi_utils.cpp110 size_t GetParamLen(napi_env env, napi_value param) in GetParamLen() argument
113 napi_status status = napi_get_value_string_utf8(env, param, nullptr, 0, &buffSize); in GetParamLen()
430 napi_value param = nullptr; in ModifyResourceParam() local
431 napi_get_element(env, paramsNApi, i, &param); in ModifyResourceParam()
432 tmpParams.insert(tmpParams.end(), param); in ModifyResourceParam()
468 for (auto& param : paramsVector) { in ParseCurveInfo()
469 Framework::RemoveHeadTailSpace(param); in ParseCurveInfo()
470 if (param == "true" || param == "start") { in ParseCurveInfo()
471 param in ParseCurveInfo()
[all...]
/foundation/multimedia/audio_framework/frameworks/native/hdiadapter/sink/multichannel/
H A Dmultichannel_audio_renderer_sink.cpp245 CHECK_AND_RETURN_RET_LOG(ret == SUCCESS, "", "Init adapter failed for get usb info param"); in GetAudioParameter()
463 struct AudioSampleAttributes param; in CreateRender() local
465 InitAttrs(param); in CreateRender()
466 param.sampleRate = attr_.sampleRate; in CreateRender()
467 param.channelCount = attr_.channel; in CreateRender()
468 param.channelLayout = attr_.channelLayout; in CreateRender()
469 param.format = ConvertToHdiFormat(attr_.format); in CreateRender()
470 param.frameSize = PcmFormatToBits(param.format) * param in CreateRender()
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Druntime_context_impl.cpp424 int RuntimeContextImpl::RunPermissionCheck(const PermissionCheckParam &param, uint8_t flag) const
429 checkResult = permissionCheckCallbackV3_(param, flag);
431 checkResult = permissionCheckCallbackV2_(param.userId, param.appId, param.storeId, param.deviceId, flag);
433 checkResult = permissionCheckCallback_(param.userId, param.appId, param.storeId, flag);
680 ActivationCheckParam param
[all...]
/test/xts/acts/ability/ability_runtime/actscalltest/systemcallentrytest/entry/src/main/ets/test/
H A DAbility.test.ets153 let param = new MySequenceable(300, "ACTS_CommonComponent_Call_0300", 'default');
154 caller.call('testCall', param).then(() => {
183 let param = new MySequenceable(400, "ACTS_CommonComponent_Call_0400", 'default');
184 caller.callWithResult('testCallWithResult', param).then((data) => {
247 let param = new MySequenceable(500, "ACTS_CommonComponent_Call_0500", 'default');
248 caller2.call('testCall', param).then(() => {
282 let param = new MySequenceable(600, "ACTS_CommonComponent_Call_0600", 'default');
283 caller2.callWithResult('testCallWithResult', param).then((data) => {
331 let param = new MySequenceable(700, "ACTS_CommonComponent_Call_0700", 'default');
332 caller.call('testCall', param)
[all...]
/test/xts/acts/ability/ability_runtime/actscalltest/systemcallentrytest/entry/src/ohosTest/ets/test/
H A DAbility.test.ets156 let param = new MySequenceable(300, "ACTS_CommonComponent_Call_0300", 'default');
157 caller.call('testCall', param).then(() => {
186 let param = new MySequenceable(400, "ACTS_CommonComponent_Call_0400", 'default');
187 caller.callWithResult('testCallWithResult', param).then((data) => {
248 let param = new MySequenceable(500, "ACTS_CommonComponent_Call_0500", 'default');
249 caller2.call('testCall', param).then(() => {
283 let param = new MySequenceable(600, "ACTS_CommonComponent_Call_0600", 'default');
284 caller2.callWithResult('testCallWithResult', param).then((data:rpc.MessageSequence) => {
332 let param = new MySequenceable(700, "ACTS_CommonComponent_Call_0700", 'default');
333 caller.call('testCall', param)
[all...]
/foundation/ability/idl_tool/test/hdi_unittest/user_auth_v1_2/cpp_target/user_auth/v1_2/
H A Duser_auth_interface_proxy.cpp.txt189 const std::vector<uint8_t>& authToken, const OHOS::HDI::UserAuth::V1_2::EnrollParam& param, OHOS::HDI::UserAuth::V1_2::ScheduleInfo& info)
191 return OHOS::HDI::UserAuth::V1_2::UserAuthInterfaceProxy::BeginEnrollment_(userId, authToken, param, info, GetCurrentRemote());
236 const OHOS::HDI::UserAuth::V1_2::AuthSolution& param, std::vector<OHOS::HDI::UserAuth::V1_2::ScheduleInfo>& scheduleInfos)
238 return OHOS::HDI::UserAuth::V1_2::UserAuthInterfaceProxy::BeginAuthentication_(contextId, param, scheduleInfos, GetCurrentRemote());
282 const std::vector<uint8_t>& authToken, const OHOS::HDI::UserAuth::V1_2::EnrollParam& param, OHOS::HDI::UserAuth::V1_2::ScheduleInfoV1_1& info)
284 return OHOS::HDI::UserAuth::V1_2::UserAuthInterfaceProxy::BeginEnrollmentV1_1_(userId, authToken, param, info, GetCurrentRemote());
288 const OHOS::HDI::UserAuth::V1_2::AuthSolution& param, std::vector<OHOS::HDI::UserAuth::V1_2::ScheduleInfoV1_1>& scheduleInfos)
290 return OHOS::HDI::UserAuth::V1_2::UserAuthInterfaceProxy::BeginAuthenticationV1_1_(contextId, param, scheduleInfos, GetCurrentRemote());
310 const OHOS::HDI::UserAuth::V1_2::AuthSolutionV1_2& param, std::vector<OHOS::HDI::UserAuth::V1_2::ScheduleInfoV1_1>& scheduleInfos)
312 return OHOS::HDI::UserAuth::V1_2::UserAuthInterfaceProxy::BeginAuthenticationV1_2_(contextId, param, scheduleInfo
[all...]
/foundation/multimedia/audio_framework/frameworks/js/napi/audiomanager/test/unittest/group_manager_test/
H A DAudioGroupManagerJsUnitTest.js454 * @tc.desc:verify getVolumeSync get volume fail(401) - Invalid param count : 0
473 * @tc.desc:verify getVolumeSync get volume fail(401) - Invalid param type : "Invalid type"
492 * @tc.desc:verify getVolumeSync get volume fail(6800101) - Invalid param value : 10000
664 * @tc.desc:verify getMinVolumeSync get min volume fail(401) - Invalid param count : 0
683 * @tc.desc:verify getMinVolumeSync get volume fail(401) - Invalid param type : "Invalid type"
702 * @tc.desc:verify getMinVolumeSync get min volume fail(6800101) - Invalid param value : 10000
874 * @tc.desc:verify getMaxVolumeSync get max volume fail(401) - Invalid param count : 0
893 * @tc.desc:verify getMaxVolumeSync get volume fail(401) - Invalid param type : "Invalid type"
912 * @tc.desc:verify getMaxVolumeSync get max volume fail(6800101) - Invalid param value : 10000
1150 * @tc.desc:verify isMuteSync get mute status fail(401) - Invalid param coun
[all...]
/foundation/ability/ability_runtime/test/unittest/implicit_start_processor_test/
H A Dimplicit_start_processor_test.cpp457 AddInfoParam param; in HWTEST_F() local
459 param.isExtension = true; in HWTEST_F()
460 param.info.type = AbilityType::FORM; in HWTEST_F()
461 processor->AddAbilityInfoToDialogInfos(param, dialogAppInfos); in HWTEST_F()
462 param.isExtension = false; in HWTEST_F()
463 processor->AddAbilityInfoToDialogInfos(param, dialogAppInfos); in HWTEST_F()
/foundation/ai/intelligent_voice_framework/utils/
H A Dhuks_aes_adapter.cpp113 INTELL_VOICE_LOG_ERROR("constuct encrypt param set failed, ret:%{public}d", ret); in CreateEncryptParamSet()
166 INTELL_VOICE_LOG_ERROR("constuct decrypt param set failed, ret:%{public}d", ret); in CreateDecryptParamSet()
189 CHECK_CONDITION_RETURN_RET((ret != HKS_SUCCESS), ret, "create encrypt param set failed"); in Encrypt()
238 CHECK_CONDITION_RETURN_RET((ret != HKS_SUCCESS), ret, "create decrypt param set failed"); in Decrypt()
278 INTELL_VOICE_LOG_ERROR("constuct exist param set failed"); in IsKeyExist()
299 INTELL_VOICE_LOG_ERROR("constuct gen param set failed"); in GenerateKey()
/foundation/multimedia/audio_framework/services/audio_service/common/src/
H A Daudio_process_config.cpp94 AUDIO_ERR_LOG("Invalid param, usageSize is too large: %{public}u", usageSize);
102 AUDIO_ERR_LOG("Invalid param, usage: %{public}d", tmpUsage);
112 AUDIO_ERR_LOG("Invalid param, usageFilterMode : %{public}u", tempMode);
120 AUDIO_ERR_LOG("Invalid param, pidSize is too large: %{public}u", pidSize);
127 AUDIO_ERR_LOG("Invalid param, pid: %{public}d", tmpPid);
137 AUDIO_ERR_LOG("Invalid param, pidFilterMode : %{public}u", tempMode);
/foundation/multimodalinput/input/intention/cooperate/plugin/src/
H A Dcooperate_out.cpp140 StartCooperateEvent param = std::get<StartCooperateEvent>(event.event); in OnStart() local
142 context.eventMgr_.StartCooperate(param); in OnStart()
154 StopCooperateEvent param = std::get<StopCooperateEvent>(event.event); in OnStop() local
156 context.eventMgr_.StopCooperate(param); in OnStop()
158 Utility::Anonymize(context.Peer()).c_str(), param.isUnchained); in OnStop()
166 parent_.UnchainConnections(context, param); in OnStop()
/foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/src/
H A Dsoftbus_proxychannel_control.c35 TRANS_LOGW(TRANS_CTRL, "invalid param."); in TransProxySendInnerMessage()
110 TRANS_LOGW(TRANS_CTRL, "invalid param."); in TransProxyHandshake()
159 TRANS_LOGW(TRANS_CTRL, "invalid param."); in TransProxyAckHandshake()
204 TRANS_LOGW(TRANS_CTRL, "invalid param."); in TransProxyKeepalive()
241 TRANS_LOGW(TRANS_CTRL, "invalid param."); in TransProxyAckKeepalive()
279 TRANS_LOGW(TRANS_CTRL, "invalid param."); in TransProxyResetPeer()
/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/pages/subManualApiTest/subSppTest/
H A DsppClientTest.ets178 * @param number
198 * @param {*} str 需要转换的字符串
211 * @param device
379 * @param dialogTitle Dialog title
380 * @param dialogMessage Dialog message
381 * @param buttonValue Dialog buttonValue
/foundation/communication/bluetooth_service/test/example/bluetoothtest/entry/src/main/ets/pages/subManualApiTestManager/subSppTestManager/
H A DsppClientManager.ets181 * @param number
201 * @param {*} str 需要转换的字符串
214 * @param device
382 * @param dialogTitle Dialog title
383 * @param dialogMessage Dialog message
384 * @param buttonValue Dialog buttonValue
/test/xts/acts/ability/ability_runtime/capichildprocess/entry/src/ohosTest/ets/test/
H A DNativeChildProcessWithArgs.test.ets55 * @tc.name : Call StartNativeChildProcess to create a child process, give param correct entryPoint, args
105 * @tc.name : Call StartNativeChildProcess to create a child process, give param correct entryPoint, args
155 * @tc.name : Call StartNativeChildProcess to create a child process, give param correct entryPoint and no args
190 * @tc.name : Call OH_Ability_StartNativeChildProcess to create a child process, give param correct entryPoint,
224 * @tc.name : Call OH_Ability_StartNativeChildProcess to create a child process, give param correct entryPoint,
258 * @tc.name : Call OH_Ability_StartNativeChildProcess to create a child process, give param correct entryPoint,
/test/xts/acts/arkui/ace_ets_module_noui/ace_ets_module_global/ace_ets_module_global_api11/entry/src/main/ets/MainAbility/pages/web/
H A Dweb2.ets101 // console.info("x coord = " + event.param.x());
102 // console.info("y coord = " + event.param.y());
103 // console.info("link url = " + event.param.getLinkUrl());
104 // console.info("unfilterendLinkUrl = " + event.param.getUnfilteredLinkUrl());
105 // console.info("sourceUrl = " + event.param.getSourceUrl());
106 // console.info("existsImageContents = " + event.param.existsImageContents());
/test/xts/acts/arkui/ace_ets_module_noui/ace_ets_module_global/ace_ets_module_global_api11/entry/src/main/ets/test/webTest/
H A Dweb2.ets101 // console.info("x coord = " + event.param.x());
102 // console.info("y coord = " + event.param.y());
103 // console.info("link url = " + event.param.getLinkUrl());
104 // console.info("unfilterendLinkUrl = " + event.param.getUnfilteredLinkUrl());
105 // console.info("sourceUrl = " + event.param.getSourceUrl());
106 // console.info("existsImageContents = " + event.param.existsImageContents());
/test/xts/acts/multimedia/media/media_js_standard/avImageGenerator/entry/src/ohosTest/ets/test/
H A DAVImageGeneratorTest.ets28 let param: media.PixelMapParams = {
61 avImageGenerator.fetchFrameByTime(timeUs, queryOption, param, (error: BusinessError, pixelMap) => {
91 avImageGenerator.fetchFrameByTime(timeUs, queryOption, param).then((pixelMap: image.PixelMap) => {
119 avImageGenerator.fetchFrameByTime(timeUs, media.AVImageQueryOptions.AV_IMAGE_QUERY_PREVIOUS_SYNC, param)
148 avImageGenerator.fetchFrameByTime(timeUs, media.AVImageQueryOptions.AV_IMAGE_QUERY_CLOSEST_SYNC, param)
177 avImageGenerator.fetchFrameByTime(timeUs, media.AVImageQueryOptions.AV_IMAGE_QUERY_CLOSEST, param)
/foundation/arkui/ace_engine/interfaces/native/
H A Dnative_node.h6260 * @param event Indicates the pointer to the component event.
6272 * @param event Indicates the pointer to the component event.
6281 * @param event Indicates the pointer to the component event.
6290 * @param event Indicates the pointer to the component event.
6299 * @param event Indicates the pointer to the component event.
6308 * @param event Indicates the pointer to the component event.
6320 * @param event Indicates the pointer to the component event.
6329 * @param event 组件事件指针。
6330 * @param index 返回值索引。
6331 * @param valu
[all...]
/foundation/ability/form_fwk/frameworks/js/napi/form_observer/
H A Djs_form_observer.cpp90 HILOG_DEBUG("argc is %{public}zu,param range is [%{public}zu,%{public}zu]", in CheckParamNum()
93 HILOG_ERROR("invalid param number %{public}zu", argc); in CheckParamNum()
260 NapiFormUtil::ThrowParamTypeError(env, "param 2", "type"); in OnRegisterFormIsVisibleObserver()
290 HILOG_DEBUG("The second param is function"); in OnUnregisterFormIsVisibleObserver()
295 NapiFormUtil::ThrowParamTypeError(env, "param 2", "type"); in OnUnregisterFormIsVisibleObserver()
306 NapiFormUtil::ThrowParamTypeError(env, "param 2 or 3", "type"); in OnUnregisterFormIsVisibleObserver()
349 HILOG_ERROR("The second param is ineffective"); in OnUnregisterFormRemoveObserverWithTwoParams()
363 HILOG_ERROR("The second param is ineffective"); in OnUnregisterFormRemoveObserverWithThreeParams()
368 HILOG_ERROR("The third param is ineffective"); in OnUnregisterFormRemoveObserverWithThreeParams()
532 NapiFormUtil::ThrowParamTypeError(env, "the first param", "strin in ParseGetRunningFormInfosOneParam()
[all...]
/foundation/ability/dmsfwk/services/dtbschedmgr/test/unittest/
H A Dbundle_manager_internal_test.cpp137 * @tc.desc: test CheckRemoteBundleInfo with valid param
154 * @tc.desc: test CheckIfRemoteCanInstall with valid param
174 * @tc.desc: test CheckIfRemoteCanInstall with invalid param
233 * @tc.desc: test get callerappId from bms with invalid param
248 * @tc.desc: test get callerappId from bms with invalid param
263 * @tc.desc: test IsSameAppId with invalid param
278 * @tc.desc: test IsSameAppId with invalid param
293 * @tc.desc: test IsSameAppId with invalid param
456 * @tc.desc: test IsSameAppId with invalid param
471 * @tc.desc: test IsSameAppId with invalid param
[all...]
/foundation/arkui/ace_engine/frameworks/core/image/apng/
H A Dapng_image_decoder.cpp135 * @param chunks : input
136 * @param chunkNum : chunkNum
137 * @param first_idat_index : output
138 * @param first_frame_is_cover : output
273 @param data png/apng file data.
274 @param length the data's length in bytes.
471 @param data apng file data
472 @param info png info
473 @param index frame index (zero-based)
474 @param siz
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_ble_central_manager_server.cpp77 ScanSettingsParam param; member
393 SetWindowAndInterval(settings.GetScanMode(), iter->param.scanWindow, iter->param.scanInterval); in StartScan()
394 iter->param.reportDelayMillis = settings.GetReportDelayMillisValue(); in StartScan()
395 iter->param.scanMode = settings.GetScanMode(); in StartScan()
396 iter->param.legacy = settings.GetLegacy(); in StartScan()
397 iter->param.phy = settings.GetPhy(); in StartScan()
684 max = iter->param; in IsNewScanParams()
699 double currDutyCycle = 1.0 * iter->param.scanWindow / iter->param in IsNewScanParams()
[all...]
/foundation/multimedia/av_codec/interfaces/inner_api/native/
H A Davcodec_info.h266 * @param feature Feature enum, refer to {@link AVCapabilityFeature} for details
275 * @param feature Feature enum, refer to {@link AVCapabilityFeature} for details
276 * @param format Output parameter, get parametr of specified feature
383 * @param width Indicates the specified video width (in pixels).
384 * @param height Indicates the specified video height (in pixels).
401 * @param width Indicates the specified video width (in pixels).
402 * @param height Indicates the specified video height (in pixels).
411 * @param width Indicates the specified video width (in pixels).
412 * @param height Indicates the specified video height (in pixels).
413 * @param frameRat
[all...]

Completed in 57 milliseconds

1...<<161162163164165166167168169170>>...320