/ohos5.0/foundation/multimedia/player_framework/services/services/screen_capture/ipc/ |
H A D | screen_capture_listener_stub.cpp | 53 bool isReady = data.ReadBool(); in OnRemoteRequest() local 55 OnAudioBufferAvailable(isReady, type); in OnRemoteRequest() 59 bool isReady = data.ReadBool(); in OnRemoteRequest() local 60 OnVideoBufferAvailable(isReady); in OnRemoteRequest() 87 void ScreenCaptureListenerStub::OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) in OnAudioBufferAvailable() argument 90 callback_->OnAudioBufferAvailable(isReady, type); in OnAudioBufferAvailable() 94 void ScreenCaptureListenerStub::OnVideoBufferAvailable(bool isReady) in OnVideoBufferAvailable() argument 97 callback_->OnVideoBufferAvailable(isReady); in OnVideoBufferAvailable()
|
H A D | screen_capture_listener_proxy.cpp | 52 void ScreenCaptureListenerProxy::OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) in OnAudioBufferAvailable() argument 61 data.WriteBool(isReady); in OnAudioBufferAvailable() 67 void ScreenCaptureListenerProxy::OnVideoBufferAvailable(bool isReady) in OnVideoBufferAvailable() argument 76 data.WriteBool(isReady); in OnVideoBufferAvailable() 117 void ScreenCaptureListenerCallback::OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType typ… in OnAudioBufferAvailable() argument 120 FAKE_POINTER(this), isStopped_.load(), isReady, type); in OnAudioBufferAvailable() 123 listener_->OnAudioBufferAvailable(isReady, type); in OnAudioBufferAvailable() 127 void ScreenCaptureListenerCallback::OnVideoBufferAvailable(bool isReady) in OnVideoBufferAvailable() argument 130 FAKE_POINTER(this), isStopped_.load(), isReady); in OnVideoBufferAvailable() 133 listener_->OnVideoBufferAvailable(isReady); in OnVideoBufferAvailable()
|
H A D | screen_capture_listener_proxy.h | 32 void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) override; 33 void OnVideoBufferAvailable(bool isReady) override; 51 void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) override; 52 void OnVideoBufferAvailable(bool isReady) override;
|
H A D | i_standard_screen_capture_listener.h | 31 virtual void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) = 0; 32 virtual void OnVideoBufferAvailable(bool isReady) = 0;
|
H A D | screen_capture_listener_stub.h | 30 void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) override; 31 void OnVideoBufferAvailable(bool isReady) override;
|
/ohos5.0/base/account/os_account/frameworks/account_iam/test/unittest/include/ |
H A D | account_iam_client_test_callback.h | 41 isReady = true; in OnAcquireInfo() 49 isReady = true; in OnResult() 54 bool isReady = false; variable 73 isReady = true; in OnCredentialInfo() 78 bool isReady = false; variable 97 isReady = true; in OnEnrolledId() 102 bool isReady = false; variable 121 isReady = true; in OnResult() 126 bool isReady = false; variable
|
/ohos5.0/foundation/multimedia/player_framework/test/fuzztest/common/ |
H A D | test_ndk_screen_capture.cpp | 29 …stScreenCaptureNdkCallback::OnAudioBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady, in OnAudioBufferAvailable() argument 32 …cout << "OnAudioBufferAvailable received: " << isReady << ", AudioCaptureSourceType: " << type << … in OnAudioBufferAvailable() 35 …stScreenCaptureNdkCallback::OnVideoBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady) in OnVideoBufferAvailable() argument 37 cout << "OnVideoBufferAvailable received: " << isReady << endl; in OnVideoBufferAvailable()
|
H A D | test_screen_capture.cpp | 29 void TestScreenCaptureCallbackTest::OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType typ… in OnAudioBufferAvailable() argument 31 …cout << "OnAudioBufferAvailable received: " << isReady << ", AudioCaptureSourceType: " << type << … in OnAudioBufferAvailable() 34 void TestScreenCaptureCallbackTest::OnVideoBufferAvailable(bool isReady) in OnVideoBufferAvailable() argument 36 cout << "OnVideoBufferAvailable received: " << isReady << endl; in OnVideoBufferAvailable()
|
H A D | test_ndk_screen_capture.h | 52 …static void OnAudioBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady, OH_AudioCaptur… 53 static void OnVideoBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady);
|
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webview/ |
H A D | ark_screen_capture_callback_adapter_wrapper.cpp | 33 bool isReady, OHOS::NWeb::AudioCaptureSourceTypeAdapter type) in OnAudioBufferAvailable() argument 35 ctocpp_->OnAudioBufferAvailable(isReady, (int32_t)type); in OnAudioBufferAvailable() 38 void ArkScreenCaptureCallbackAdapterWrapper::OnVideoBufferAvailable(bool isReady) in OnVideoBufferAvailable() argument 40 return ctocpp_->OnVideoBufferAvailable(isReady); in OnVideoBufferAvailable()
|
H A D | ark_screen_capture_callback_adapter_wrapper.h | 31 …void OnAudioBufferAvailable(bool isReady, OHOS::NWeb::AudioCaptureSourceTypeAdapter type) override; 33 void OnVideoBufferAvailable(bool isReady) override;
|
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/ |
H A D | ark_screen_capture_callback_adapter_impl.cpp | 30 void ArkScreenCaptureCallbackAdapterImpl::OnAudioBufferAvailable(bool isReady, int32_t type) in OnAudioBufferAvailable() argument 32 real_->OnAudioBufferAvailable(isReady, (OHOS::NWeb::AudioCaptureSourceTypeAdapter)type); in OnAudioBufferAvailable() 35 void ArkScreenCaptureCallbackAdapterImpl::OnVideoBufferAvailable(bool isReady) in OnVideoBufferAvailable() argument 37 real_->OnVideoBufferAvailable(isReady); in OnVideoBufferAvailable()
|
H A D | ark_screen_capture_callback_adapter_impl.h | 31 void OnAudioBufferAvailable(bool isReady, int32_t type) override; 33 void OnVideoBufferAvailable(bool isReady) override;
|
/ohos5.0/base/account/os_account/frameworks/account_iam/test/unittest/src/ |
H A D | account_iam_client_test.cpp | 250 [lockPtr = ptr]() { return lockPtr->isReady; }); in Wait() 257 [lockPtr = ptr]() { return lockPtr->isReady; }); in Wait() 331 testCallback->isReady = false; 382 testCallback->isReady = false; 424 testCallback->isReady = false; 453 testCallback->isReady = false; 627 testCallback->isReady = false; 942 testCallback->isReady = false; 955 testIDMCallback->isReady = false; 962 testIDMCallback->isReady = false; [all …]
|
H A D | account_iam_callback_service_test.cpp | 112 …td::chrono::seconds(WAIT_TIME), [lockCallback = testCallback]() { return lockCallback->isReady; }); in __anond8c27aaa0202() 134 …td::chrono::seconds(WAIT_TIME), [lockCallback = testCallback]() { return lockCallback->isReady; }); in __anond8c27aaa0302() 137 testCallback->isReady = false; 142 …td::chrono::seconds(WAIT_TIME), [lockCallback = testCallback]() { return lockCallback->isReady; }); in __anond8c27aaa0402()
|
/ohos5.0/foundation/ability/ability_runtime/service_router_framework/interfaces/inner_api/src/ |
H A D | service_router_mgr_helper.cpp | 41 isReady = false; in OnRemoteDiedHandle() 60 isReady = false; in LoadSA() 87 isReady = true; in FinishStartSASuccess() 104 isReady = false; in FinishStartSAFail() 122 return isReady; in GetServiceRouterMgr()
|
/ohos5.0/foundation/communication/ipc/utils/src/ |
H A D | rpc_session_handle.c | 67 node->isReady = false; in FindOrNewSessionIdObject() 90 if (sessionIdObject->isReady) { in WaitForSessionIdReady() 109 int32_t ret = sessionIdObject->isReady ? ERR_NONE : ERR_FAILED; in WaitForSessionIdReady() 131 if (!sessionIdObject->isReady) { in HandleNewConnection() 132 sessionIdObject->isReady = true; in HandleNewConnection()
|
/ohos5.0/foundation/multimedia/player_framework/frameworks/js/avscreen_capture/ |
H A D | avscreen_capture_callback.h | 38 void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) override in OnAudioBufferAvailable() argument 40 (void)isReady; in OnAudioBufferAvailable() 43 void OnVideoBufferAvailable(bool isReady) override in OnVideoBufferAvailable() argument 45 (void)isReady; in OnVideoBufferAvailable()
|
/ohos5.0/base/account/os_account/frameworks/domain_account/test/moduletest/src/ |
H A D | mock_domain_create_domain_account_callback.cpp | 41 isReady = true; in OnResult() 51 isReady = true; in OnResult() 61 isReady = true; in OnResult() 67 isReady = true; in OnResult()
|
H A D | domain_account_client_module_test.cpp | 242 …td::chrono::seconds(WAIT_TIME), [lockCallback = testCallback]() { return lockCallback->isReady; }); in __anon3730cf590202() 305 …td::chrono::seconds(WAIT_TIME), [lockCallback = testCallback]() { return lockCallback->isReady; }); in __anon3730cf590502() 360 …td::chrono::seconds(WAIT_TIME), [lockCallback = testCallback]() { return lockCallback->isReady; }); in __anon3730cf590602() 699 … [lockCallback = testCallback]() { return lockCallback->isReady; }); in __anon3730cf590d02() 714 [lockCallback = testCallback]() { return lockCallback->isReady; }); in __anon3730cf590e02() 1571 … [lockCallback = testAuthCallback]() { return lockCallback->isReady; }); in __anon3730cf592002() 1573 testAuthCallback->isReady = false; 1580 … [lockCallback = testAuthCallback]() { return lockCallback->isReady; }); in __anon3730cf592102() 1619 … [lockCallback = testAuthCallback]() { return lockCallback->isReady; }); in __anon3730cf592202() 1621 testAuthCallback->isReady = false; [all …]
|
H A D | mock_domain_has_domain_info_callback.cpp | 42 isReady = true; in OnResult() 62 isReady = true; in OnResult()
|
/ohos5.0/foundation/ai/intelligent_voice_framework/tests/unittest/intell_voice_test/src/ |
H A D | wait_for_result.cpp | 25 condVar.wait(lock, [this] {return isReady;}); in Wait() 32 isReady = true; in SetIsReady()
|
/ohos5.0/foundation/ability/dmsfwk/services/dtbschedmgr/test/missionCenterDemo/dmsDemo/entry/src/main/ets/pages/ |
H A D | Index.ets | 23 if(!AppStorage.has('isReady')){ 24 AppStorage.setOrCreate('isReady',false) 44 @StorageLink('isReady') isReady: boolean = false 57 AppStorage.setOrCreate('isReady', true); 80 if (this.isReady) {
|
/ohos5.0/base/useriam/user_auth_framework/services/ipc/src/ |
H A D | co_auth_service.cpp | 100 void CoAuthService::SetIsReady(bool isReady) in SetIsReady() argument 103 isReady_ = isReady; in SetIsReady() 104 IAM_LOGI("Set isReady %{public}d", isReady); in SetIsReady() 107 void CoAuthService::SetAccessTokenReady(bool isReady) in SetAccessTokenReady() argument 110 accessTokenReady_ = isReady; in SetAccessTokenReady()
|
/ohos5.0/foundation/multimedia/player_framework/test/unittest/screen_capture_test/native/src/ |
H A D | screen_capture_native_mock.cpp | 35 void ScreenCaptureNativeCallbackMock::OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType t… in OnAudioBufferAvailable() argument 39 mockCb_->OnAudioBufferAvailable(isReady, type); in OnAudioBufferAvailable() 43 void ScreenCaptureNativeCallbackMock::OnVideoBufferAvailable(bool isReady) in OnVideoBufferAvailable() argument 47 mockCb_->OnVideoBufferAvailable(isReady); in OnVideoBufferAvailable()
|