/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webview/ |
H A D | ark_web_native_media_player_handler_wrapper.cpp | 37 void ArkWebNativeMediaPlayerHandlerWrapper::HandleMutedChanged(bool isMuted) in HandleMutedChanged() argument 39 ark_web_native_media_player_handler_->HandleMutedChanged(isMuted); in HandleMutedChanged()
|
H A D | ark_web_native_media_player_handler_wrapper.h | 40 void HandleMutedChanged(bool isMuted) override;
|
/base/telephony/call_manager/services/distributed_call/src/distributed_communication/ |
H A D | distributed_data_controller.cpp | 120 bool isMuted = false; in HandleMuted() local 121 if (!GetBoolValue(msg, DISTRIBUTED_ITEM_MUTE, isMuted)) { in HandleMuted() 124 TELEPHONY_LOGI("set muted %{public}d", isMuted); in HandleMuted() 127 controlManager->SetMuted(isMuted); in HandleMuted()
|
H A D | distributed_data_source_controller.cpp | 228 std::string DistributedDataSourceController::CreateCurrentDataRspMsg(const std::string &num, bool isMuted, in CreateCurrentDataRspMsg() argument 243 if (cJSON_AddBoolToObject(currentRspMsg, DISTRIBUTED_ITEM_MUTE, isMuted) == nullptr) { in CreateCurrentDataRspMsg()
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webcore/ |
H A D | ark_web_native_media_player_handler_impl.cpp | 42 void ArkWebNativeMediaPlayerHandlerImpl::HandleMutedChanged(bool isMuted) in HandleMutedChanged() argument 44 nweb_native_media_player_handler_->HandleMutedChanged(isMuted); in HandleMutedChanged()
|
H A D | ark_web_native_media_player_handler_impl.h | 37 void HandleMutedChanged(bool isMuted) override;
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/include/ |
H A D | ark_web_native_media_player_handler.h | 35 virtual void HandleMutedChanged(bool isMuted) = 0;
|
H A D | ark_web_native_media_player_bridge.h | 43 virtual void SetMuted(bool isMuted) = 0;
|
/base/web/webview/interfaces/kits/napi/webviewcontroller/ |
H A D | native_media_player_impl.h | 39 void SetMuted(bool isMuted) override; 68 void HandleMutedChanged(bool isMuted);
|
H A D | native_media_player_impl.cpp | 91 void NWebNativeMediaPlayerBridgeImpl::SetMuted(bool isMuted) in SetMuted() argument 93 WVLOG_D("begin to set muted,nweb id is %{public}d,muted flag is %{public}d", nwebId_, isMuted); in SetMuted() 99 NAPI_CALL_RETURN_VOID(env_, napi_get_boolean(env_, isMuted, &argv[INTEGER_ZERO])); in SetMuted() 193 void NapiNativeMediaPlayerHandlerImpl::HandleMutedChanged(bool isMuted) in HandleMutedChanged() argument 198 handler_->HandleMutedChanged(isMuted); in HandleMutedChanged() 471 napi_value isMuted = nullptr; in ConstructMediaInfo() local 472 NAPI_CALL_RETURN_VOID(env_, napi_get_boolean(env_, mediaInfo->GetIsMuted(), &isMuted)); in ConstructMediaInfo() 473 NAPI_CALL_RETURN_VOID(env_, napi_set_named_property(env_, *value, "muted", isMuted)); in ConstructMediaInfo()
|
/base/web/webview/ohos_interface/include/ohos_nweb/ |
H A D | nweb_native_media_player.h | 101 virtual void HandleMutedChanged(bool isMuted) = 0; 142 virtual void SetMuted(bool isMuted) = 0;
|
/base/telephony/call_manager/services/audio/include/ |
H A D | audio_device_manager.h | 57 void SetMuteState(bool isMuted);
|
/base/telephony/call_manager/services/distributed_call/include/distributed_communication/ |
H A D | distributed_data_source_controller.h | 47 std::string CreateCurrentDataRspMsg(const std::string &num, bool isMuted, int32_t direction);
|
/base/telephony/call_manager/services/audio/src/ |
H A D | audio_device_manager.cpp | 565 info_.isMuted = call->IsMuted(); in ReportAudioDeviceInfo() 567 info_.isMuted = DelayedSingleton<AudioProxy>::GetInstance()->IsMicrophoneMute(); in ReportAudioDeviceInfo() 570 "mute:%{public}d", info_.currentAudioDevice.deviceType, ConvertAddress().c_str(), info_.isMuted); in ReportAudioDeviceInfo()
|
/base/telephony/call_manager/test/unittest/ui_client/ |
H A D | call_manager_callback_test.cpp | 113 << "isMute:" << info.isMuted << std::endl; in OnReportAudioDeviceChange()
|
/base/telephony/call_manager/interfaces/innerkits/ |
H A D | call_manager_inner_type.h | 797 bool isMuted = false; member
|
/base/telephony/call_manager/services/call/include/ |
H A D | call_base.h | 130 int32_t SetMicPhoneState(bool isMuted);
|
/base/telephony/call_manager/test/unittest/distributed_communication_test/src/ |
H A D | distributed_data_test.cpp | 301 bool isMuted = true; in HWTEST_F() local 318 std::string rspMsg = sourceController->CreateCurrentDataRspMsg(num, isMuted, direction); in HWTEST_F()
|
/base/telephony/call_manager/services/call/src/ |
H A D | call_base.cpp | 631 int32_t CallBase::SetMicPhoneState(bool isMuted) in SetMicPhoneState() argument 633 isMuted_ = isMuted; in SetMicPhoneState()
|
/base/telephony/call_manager/test/unittest/call_manager_gtest/src/ |
H A D | call_manager_connect.cpp | 562 int32_t CallManagerConnect::SetMuted(bool isMuted) const in SetMuted() 565 return callManagerServicePtr_->SetMuted(isMuted); in SetMuted()
|
/base/telephony/call_manager/frameworks/native/src/ |
H A D | call_ability_callback_stub.cpp | 245 info.isMuted = data.ReadBool(); in OnUpdateAudioDeviceChange()
|
/base/telephony/call_manager/test/unittest/call_manager_gtest/include/ |
H A D | call_manager_connect.h | 496 int32_t SetMuted(bool isMuted) const;
|
/base/telephony/call_manager/services/call_report/src/ |
H A D | call_ability_callback_proxy.cpp | 254 dataParcel.WriteBool(info.isMuted); in OnReportAudioDeviceChange()
|
/base/telephony/call_manager/frameworks/js/napi/src/ |
H A D | napi_call_ability_callback.cpp | 1001 NapiCallManagerUtils::SetPropertyBoolean(env, callbackValues[ARRAY_INDEX_FIRST], "isMuted", info.isMuted); in ReportAudioDeviceInfo()
|