/base/telephony/call_manager/test/unittest/ui_client/ |
D | call_manager_callback_test.cpp | 53 std::cout << "result:" << (int32_t)resultInfo.GetIntValue("result", -1) << std::endl in OnReportAsyncResults() 54 << "status:" << (int32_t)resultInfo.GetIntValue("status", -1) << std::endl in OnReportAsyncResults() 55 << "classCw:" << (int32_t)resultInfo.GetIntValue("classCw", -1) << std::endl; in OnReportAsyncResults() 58 std::cout << "result:" << (int32_t)resultInfo.GetIntValue("result", -1) << std::endl; in OnReportAsyncResults() 61 std::cout << "result:" << (int32_t)resultInfo.GetIntValue("result", -1) << std::endl in OnReportAsyncResults() 62 << "status:" << (int32_t)resultInfo.GetIntValue("status", -1) << std::endl in OnReportAsyncResults() 63 << "classCw:" << (int32_t)resultInfo.GetIntValue("classCw", -1) << std::endl; in OnReportAsyncResults() 66 std::cout << "result:" << (int32_t)resultInfo.GetIntValue("result", -1) << std::endl; in OnReportAsyncResults() 69 std::cout << "result:" << (int32_t)resultInfo.GetIntValue("result", -1) << std::endl; in OnReportAsyncResults() 72 std::cout << "result:" << (int32_t)resultInfo.GetIntValue("result", -1) << std::endl in OnReportAsyncResults() [all …]
|
/base/telephony/call_manager/services/call_report/src/ |
D | call_ability_callback_proxy.cpp | 165 dataParcel.WriteInt32(resultInfo.GetIntValue("result")); in PackDataParcel() 169 dataParcel.WriteInt32(resultInfo.GetIntValue("status")); in PackDataParcel() 170 dataParcel.WriteInt32(resultInfo.GetIntValue("classCw")); in PackDataParcel() 173 dataParcel.WriteInt32(resultInfo.GetIntValue("status")); in PackDataParcel() 174 dataParcel.WriteInt32(resultInfo.GetIntValue("classx")); in PackDataParcel() 176 dataParcel.WriteInt32(resultInfo.GetIntValue("type")); in PackDataParcel() 179 dataParcel.WriteInt32(resultInfo.GetIntValue("action")); in PackDataParcel() 180 dataParcel.WriteInt32(resultInfo.GetIntValue("clipStat")); in PackDataParcel() 183 dataParcel.WriteInt32(resultInfo.GetIntValue("action")); in PackDataParcel() 184 dataParcel.WriteInt32(resultInfo.GetIntValue("clirStat")); in PackDataParcel() [all …]
|
/base/powermgr/display_manager/service/native/src/ |
D | display_param_helper.cpp | 25 int32_t value = SysParam::GetIntValue(KEY_DEFAULT_BRIGHTNESS, BRIGHTNESS_DEFAULT); in GetDefaultBrightness() 31 int32_t value = SysParam::GetIntValue(KEY_MAX_BRIGHTNESS, BRIGHTNESS_MAX); in GetMaxBrightness() 37 int32_t value = SysParam::GetIntValue(KEY_MIN_BRIGHTNESS, BRIGHTNESS_MIN); in GetMinBrightness()
|
D | display_setting_helper.cpp | 83 ErrCode ret = provider.GetIntValue(key, value); in GetSettingBrightness() 134 ErrCode ret = provider.GetIntValue(key, value); in GetSettingAutoBrightness()
|
/base/powermgr/power_manager/utils/param/include/ |
D | sysparam.h | 30 static int32_t GetIntValue(const std::string& key, int32_t def);
|
/base/telephony/call_manager/services/call/src/ |
D | call_policy.cpp | 32 DialType dialType = (DialType)extras.GetIntValue("dialType"); in DialPolicy() 39 int32_t accountId = extras.GetIntValue("accountId"); in DialPolicy() 45 CallType callType = (CallType)extras.GetIntValue("callType"); in DialPolicy() 50 DialScene dialScene = (DialScene)extras.GetIntValue("dialScene"); in DialPolicy() 58 VideoStateType videoState = (VideoStateType)extras.GetIntValue("videoState"); in DialPolicy()
|
D | call_control_manager.cpp | 109 accountNumber, extras.GetIntValue("accountId"), isEcc); in DialCall() 131 dialSrcInfo_.callType = (CallType)extras.GetIntValue("callType"); in DialCall() 132 dialSrcInfo_.accountId = extras.GetIntValue("accountId"); in DialCall() 133 dialSrcInfo_.dialType = (DialType)extras.GetIntValue("dialType"); in DialCall() 134 dialSrcInfo_.videoState = (VideoStateType)extras.GetIntValue("videoState"); in DialCall()
|
D | carrier_call.cpp | 34 …: CallBase(info, extras), dialScene_((DialScene)extras.GetIntValue("dialScene")), slotId_(info.acc… in CarrierCall()
|
/base/hiviewdfx/hiview/base/test/unittest/common/ |
D | event_base_test.cpp | 120 int32_t ret = event.GetIntValue("UNKNOWN_KEY"); 122 ret = event.GetIntValue("I32_KEY");
|
/base/powermgr/power_manager/utils/param/src/ |
D | sysparam.cpp | 39 int32_t SysParam::GetIntValue(const std::string& key, int32_t def) in GetIntValue() function in OHOS::PowerMgr::SysParam
|
/base/powermgr/power_manager/test/unittest/src/ |
D | power_mgr_util_test.cpp | 182 settingProvider.GetIntValue("settings.power.suspend_sources", getValue); 235 EXPECT_EQ(OHOS::ERR_OK, sysParam->GetIntValue("settings.power.suspend_sources", def));
|
/base/powermgr/power_manager/utils/setting/include/ |
D | setting_provider.h | 30 ErrCode GetIntValue(const std::string& key, int32_t& value);
|
/base/telephony/call_manager/services/call_manager_service/src/ |
D | call_manager_service.cpp | 230 …CallManagerHisysevent::WriteDialCallFaultEvent(extras.GetIntValue(SLOT_ID), extras.GetIntValue(CAL… in DialCall() 231 … extras.GetIntValue(VIDEO_STATE), TELEPHONY_ERR_PERMISSION_ERR, OHOS_PERMISSION_PLACE_CALL); in DialCall() 239 … CoreManagerInner::GetInstance().GetVoiceMailNumber(extras.GetIntValue(SLOT_ID), voiceMailNumber); in DialCall() 241 …CoreManagerInner::GetInstance().SetVoiceMailCount(extras.GetIntValue(SLOT_ID), CLEAR_VOICE_MAIL_CO… in DialCall() 246 …CallManagerHisysevent::WriteDialCallFaultEvent(extras.GetIntValue(SLOT_ID), extras.GetIntValue(CAL… in DialCall() 247 extras.GetIntValue(VIDEO_STATE), ret, errordesc); in DialCall()
|
/base/hiviewdfx/hiview/base/ |
D | event.cpp | 50 int32_t Event::GetIntValue(const std::string &name) const in GetIntValue() function in OHOS::HiviewDFX::Event
|
D | libhiviewbase.map | 30 …"OHOS::HiviewDFX::Event::GetIntValue(std::__h::basic_string<char, std::__h::char_traits<char>, std… 158 …"OHOS::HiviewDFX::Event::GetIntValue(std::__1::basic_string<char, std::__1::char_traits<char>, std…
|
/base/telephony/call_manager/frameworks/js/napi/src/ |
D | napi_call_ability_callback.cpp | 1111 int32_t result = resultInfo.GetIntValue("result"); in ReportWaitAndLimitInfo() 1112 int32_t status = resultInfo.GetIntValue("status"); in ReportWaitAndLimitInfo() 1177 …NapiCallManagerUtils::SetPropertyInt32(env, callbackValue, "status", resultInfo.GetIntValue("statu… in ReportSupplementInfo() 1179 int32_t result = resultInfo.GetIntValue("result"); in ReportSupplementInfo() 1236 int32_t result = resultInfo.GetIntValue("result"); in ReportExecutionResult() 1287 int32_t result = resultInfo.GetIntValue("result"); in ReportStartRttInfo() 1342 int32_t result = resultInfo.GetIntValue("result"); in ReportStopRttInfo() 1397 int32_t result = resultInfo.GetIntValue("result"); in ReportCallMediaModeInfo() 1470 env, callbackValues[ARRAY_INDEX_FIRST], "videoState", resultInfo.GetIntValue("videoState")); in ReportCallOtt() 1478 … env, callbackValues[ARRAY_INDEX_FIRST], "callMediaMode", resultInfo.GetIntValue("callMediaMode")); in ReportCallOtt()
|
/base/hiviewdfx/hiview/base/include/ |
D | event.h | 167 int32_t GetIntValue(const std::string &name) const;
|
/base/web/webview/ohos_adapter/media_adapter/src/ |
D | player_framework_adapter_impl.cpp | 149 infoBody.GetIntValue(OHOS::Media::PlayerKeys::AUDIO_INTERRUPT_HINT, hintValue); in OnInfo()
|
/base/telephony/call_manager/frameworks/native/src/ |
D | call_manager_service_proxy.cpp | 87 dataParcel.WriteInt32(extras.GetIntValue("accountId")); in DialCall() 88 dataParcel.WriteInt32(extras.GetIntValue("videoState")); in DialCall() 89 dataParcel.WriteInt32(extras.GetIntValue("dialScene")); in DialCall() 90 dataParcel.WriteInt32(extras.GetIntValue("dialType")); in DialCall() 91 dataParcel.WriteInt32(extras.GetIntValue("callType")); in DialCall()
|
/base/powermgr/power_manager/utils/setting/src/ |
D | setting_provider.cpp | 57 ErrCode SettingProvider::GetIntValue(const std::string& key, int32_t& value) in GetIntValue() function in OHOS::PowerMgr::SettingProvider
|
/base/hiviewdfx/hiview/plugins/eventlogger/ |
D | event_logger.cpp | 349 int32_t interval = event->GetIntValue("eventLog_interval"); in JudgmentRateLimiting()
|
/base/hiviewdfx/hiview/core/ |
D | hiview_platform.cpp | 856 return event->GetIntValue("result"); in PostEventToRemote()
|