Home
last modified time | relevance | path

Searched refs:isReady (Results 1 - 25 of 70) sorted by relevance

123

/foundation/multimedia/player_framework/services/services/screen_capture/ipc/
H A Dscreen_capture_listener_stub.cpp53 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 Dscreen_capture_listener_proxy.cpp52 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 type) in OnAudioBufferAvailable() argument
119 MEDIA_LOGD("0x%{public}06" PRIXPTR " Instances isStopped:%{public}d, isReady:%{public}d, type:%{public}d", in OnAudioBufferAvailable()
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
129 MEDIA_LOGD("0x%{public}06" PRIXPTR " Instances isStopped:%{public}d, isReady in OnVideoBufferAvailable()
[all...]
H A Dscreen_capture_listener_proxy.h32 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 Di_standard_screen_capture_listener.h31 virtual void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) = 0;
32 virtual void OnVideoBufferAvailable(bool isReady) = 0;
H A Dscreen_capture_listener_stub.h30 void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) override;
31 void OnVideoBufferAvailable(bool isReady) override;
/foundation/multimedia/player_framework/test/fuzztest/common/
H A Dtest_ndk_screen_capture.cpp29 void TestScreenCaptureNdkCallback::OnAudioBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady, in OnAudioBufferAvailable() argument
32 cout << "OnAudioBufferAvailable received: " << isReady << ", AudioCaptureSourceType: " << type << endl; in OnAudioBufferAvailable()
35 void TestScreenCaptureNdkCallback::OnVideoBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady) in OnVideoBufferAvailable() argument
37 cout << "OnVideoBufferAvailable received: " << isReady << endl; in OnVideoBufferAvailable()
H A Dtest_screen_capture.cpp29 void TestScreenCaptureCallbackTest::OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) in OnAudioBufferAvailable() argument
31 cout << "OnAudioBufferAvailable received: " << isReady << ", AudioCaptureSourceType: " << type << endl; in OnAudioBufferAvailable()
34 void TestScreenCaptureCallbackTest::OnVideoBufferAvailable(bool isReady) in OnVideoBufferAvailable() argument
36 cout << "OnVideoBufferAvailable received: " << isReady << endl; in OnVideoBufferAvailable()
H A Dtest_ndk_screen_capture.h52 static void OnAudioBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady, OH_AudioCaptureSourceType type);
53 static void OnVideoBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady);
H A Dtest_screen_capture.h67 void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) override;
68 void OnVideoBufferAvailable(bool isReady) override;
/foundation/multimedia/player_framework/frameworks/js/avscreen_capture/
H A Davscreen_capture_callback.h38 void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) override
40 (void)isReady; variable
43 void OnVideoBufferAvailable(bool isReady) override
45 (void)isReady; variable
/foundation/ability/ability_runtime/service_router_framework/interfaces/inner_api/src/
H A Dservice_router_mgr_helper.cpp41 isReady = false; in OnRemoteDiedHandle()
60 isReady = false; in LoadSA()
87 isReady = true; in FinishStartSASuccess()
104 isReady = false; in FinishStartSAFail()
122 return isReady; in GetServiceRouterMgr()
/foundation/communication/ipc/utils/src/
H A Drpc_session_handle.c67 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()
/foundation/ai/intelligent_voice_framework/tests/unittest/intell_voice_test/src/
H A Dwait_for_result.cpp25 condVar.wait(lock, [this] {return isReady;}); in Wait()
32 isReady = true; in SetIsReady()
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/screen_capture_server_function_unittest/include/
H A Dscreen_capture_server_function_unittest.h117 void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) {}; in OnAudioBufferAvailable() argument
118 void OnVideoBufferAvailable(bool isReady) {}; in OnVideoBufferAvailable() argument
126 void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) {}; in OnAudioBufferAvailable() argument
127 void OnVideoBufferAvailable(bool isReady) {}; in OnVideoBufferAvailable() argument
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/native/src/
H A Dscreen_capture_native_mock.cpp35 void ScreenCaptureNativeCallbackMock::OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) 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()
/foundation/ai/intelligent_voice_framework/tests/unittest/intell_voice_test/include/
H A Dwait_for_result.h32 bool isReady = false; member in OHOS::IntellVoiceTests::WaitForResult
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/stream/include/
H A Di_cast_stream_listener.h31 virtual void OnRenderReady(bool isReady) = 0;
/foundation/CastEngine/castengine_cast_plus_stream/src/stream/include/
H A Di_cast_stream_listener.h31 virtual void OnRenderReady(bool isReady) = 0;
/foundation/communication/ipc/utils/include/
H A Drpc_session_handle.h36 bool isReady; member
/foundation/filemanagement/user_file_service/services/native/file_access_service/src/
H A Dfile_access_ext_connection.cpp51 connectLockInfo_.isReady = true; in OnAbilityConnectDone()
72 [this] { return fileExtProxy_ != nullptr && connectLockInfo_.isReady; })) { in ConnectFileExtAbility()
/foundation/filemanagement/user_file_service/interfaces/inner_api/file_access/src/
H A Dapp_file_access_ext_connection.cpp48 connectLockInfo_.isReady = true; in OnAbilityConnectDone()
82 [this] { return fileExtProxy_ != nullptr && connectLockInfo_.isReady; })) { in ConnectFileExtAbility()
/foundation/multimedia/player_framework/interfaces/kits/c/
H A Dnative_avscreen_capture_base.h328 * @param isReady Information describing whether audio buffer is available
336 typedef void (*OH_AVScreenCaptureOnAudioBufferAvailable)(OH_AVScreenCapture *capture, bool isReady,
344 * @param isReady Information describing whether video buffer is available
351 typedef void (*OH_AVScreenCaptureOnVideoBufferAvailable)(OH_AVScreenCapture *capture, bool isReady);
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/
H A Dscreen_capture_mock.h47 virtual void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) = 0;
48 virtual void OnVideoBufferAvailable(bool isReady) = 0;
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/native/include/
H A Dscreen_capture_native_mock.h67 void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) override;
68 void OnVideoBufferAvailable(bool isReady) override;
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/capi/include/
H A Dscreen_capture_capi_mock.h67 static void OnAudioBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady, OH_AudioCaptureSourceType type);
68 static void OnVideoBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady);

Completed in 9 milliseconds

123