/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 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 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;
|
/foundation/multimedia/player_framework/test/fuzztest/common/ |
H A D | test_ndk_screen_capture.cpp | 29 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 D | test_screen_capture.cpp | 29 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 D | test_ndk_screen_capture.h | 52 static void OnAudioBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady, OH_AudioCaptureSourceType type); 53 static void OnVideoBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady);
|
H A D | test_screen_capture.h | 67 void OnAudioBufferAvailable(bool isReady, AudioCaptureSourceType type) override; 68 void OnVideoBufferAvailable(bool isReady) override;
|
/foundation/multimedia/player_framework/frameworks/js/avscreen_capture/ |
H A D | avscreen_capture_callback.h | 38 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 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()
|
/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()
|
/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()
|
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/screen_capture_server_function_unittest/include/ |
H A D | screen_capture_server_function_unittest.h | 117 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 D | screen_capture_native_mock.cpp | 35 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 D | wait_for_result.h | 32 bool isReady = false; member in OHOS::IntellVoiceTests::WaitForResult
|
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/stream/include/ |
H A D | i_cast_stream_listener.h | 31 virtual void OnRenderReady(bool isReady) = 0;
|
/foundation/CastEngine/castengine_cast_plus_stream/src/stream/include/ |
H A D | i_cast_stream_listener.h | 31 virtual void OnRenderReady(bool isReady) = 0;
|
/foundation/communication/ipc/utils/include/ |
H A D | rpc_session_handle.h | 36 bool isReady; member
|
/foundation/filemanagement/user_file_service/services/native/file_access_service/src/ |
H A D | file_access_ext_connection.cpp | 51 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 D | app_file_access_ext_connection.cpp | 48 connectLockInfo_.isReady = true; in OnAbilityConnectDone() 82 [this] { return fileExtProxy_ != nullptr && connectLockInfo_.isReady; })) { in ConnectFileExtAbility()
|
/foundation/multimedia/player_framework/interfaces/kits/c/ |
H A D | native_avscreen_capture_base.h | 328 * @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 D | screen_capture_mock.h | 47 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 D | screen_capture_native_mock.h | 67 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 D | screen_capture_capi_mock.h | 67 static void OnAudioBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady, OH_AudioCaptureSourceType type); 68 static void OnVideoBufferAvailable(OH_AVScreenCapture *screenCapture, bool isReady);
|