/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/ |
H A D | app_debug_listener_proxy.cpp | 40 void AppDebugListenerProxy::OnAppDebugStarted(const std::vector<AppDebugInfo> &debugInfos) in OnAppDebugStarted() argument 43 SendRequest(IAppDebugListener::Message::ON_APP_DEBUG_STARTED, debugInfos); in OnAppDebugStarted() 46 void AppDebugListenerProxy::OnAppDebugStoped(const std::vector<AppDebugInfo> &debugInfos) in OnAppDebugStoped() argument 49 SendRequest(IAppDebugListener::Message::ON_APP_DEBUG_STOPED, debugInfos); in OnAppDebugStoped() 53 const IAppDebugListener::Message &message, const std::vector<AppDebugInfo> &debugInfos) in SendRequest() 61 if (debugInfos.size() <= CYCLE_LIMIT_MIN || debugInfos.size() > CYCLE_LIMIT_MAX || in SendRequest() 62 !data.WriteInt32(debugInfos.size())) { in SendRequest() 66 for (auto &debugInfo : debugInfos) { in SendRequest() 52 SendRequest( const IAppDebugListener::Message &message, const std::vector<AppDebugInfo> &debugInfos) SendRequest() argument
|
/foundation/ability/ability_runtime/test/unittest/app_debug_manager_test/ |
H A D | app_debug_manager_test.cpp | 115 std::vector<AppDebugInfo> debugInfos; in HWTEST_F() local 117 debugInfos.push_back(info); in HWTEST_F() 121 manager_->StartDebug(debugInfos); in HWTEST_F() 134 std::vector<AppDebugInfo> debugInfos; in HWTEST_F() local 140 debugInfos.push_back(info); in HWTEST_F() 141 manager_->debugInfos_ = debugInfos; in HWTEST_F() 145 manager_->StopDebug(debugInfos); in HWTEST_F() 176 * @tc.desc: Add new debug info into debugInfos, or update the isDebugStart flag. 184 std::vector<AppDebugInfo> debugInfos; in HWTEST_F() local 197 debugInfos in HWTEST_F() 223 std::vector<AppDebugInfo> debugInfos; HWTEST_F() local [all...] |
/foundation/multimodalinput/input/service/module_loader/src/ |
H A D | app_debug_listener.cpp | 33 void AppDebugListener::OnAppDebugStarted(const std::vector<AppExecFwk::AppDebugInfo> &debugInfos) in OnAppDebugStarted() argument 36 for (const auto &debugInfo : debugInfos) { in OnAppDebugStarted() 42 void AppDebugListener::OnAppDebugStoped(const std::vector<AppExecFwk::AppDebugInfo> &debugInfos) in OnAppDebugStoped() argument 45 for (const auto &debugInfo : debugInfos) { in OnAppDebugStoped()
|
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/ |
H A D | app_debug_listener_proxy.h | 34 void OnAppDebugStarted(const std::vector<AppDebugInfo> &debugInfos) override; 40 void OnAppDebugStoped(const std::vector<AppDebugInfo> &debugInfos) override; 44 void SendRequest(const IAppDebugListener::Message &message, const std::vector<AppDebugInfo> &debugInfos);
|
H A D | app_debug_listener_interface.h | 35 virtual void OnAppDebugStarted(const std::vector<AppDebugInfo> &debugInfos) = 0; 41 virtual void OnAppDebugStoped(const std::vector<AppDebugInfo> &debugInfos) = 0;
|
/foundation/ability/ability_runtime/test/fuzztest/abilityinterfacesappmgrappdebuglistenerproxy_fuzzer/ |
H A D | abilityinterfacesappmgrappdebuglistenerproxy_fuzzer.cpp | 72 std::vector<AppDebugInfo> debugInfos; in DoSomethingInterestingWithMyAPI() local 73 infosProxy->OnAppDebugStarted(debugInfos); in DoSomethingInterestingWithMyAPI() 74 infosProxy->OnAppDebugStoped(debugInfos); in DoSomethingInterestingWithMyAPI() 81 infosProxy->SendRequest(message, debugInfos); in DoSomethingInterestingWithMyAPI() 83 infosProxy->SendRequest(message, debugInfos); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | app_debug_manager.cpp | 93 std::vector<AppDebugInfo> debugInfos; in StopDebug() local 103 debugInfos.emplace_back(it); in StopDebug() 107 if (!debugInfos.empty()) { in StopDebug() 112 listener->OnAppDebugStoped(debugInfos); in StopDebug() 164 std::vector<AppDebugInfo> debugInfos; in RemoveAppDebugInfo() local 165 debugInfos.emplace_back(info); in RemoveAppDebugInfo() 170 listener->OnAppDebugStoped(debugInfos); in RemoveAppDebugInfo()
|
H A D | app_running_manager.cpp | 1278 std::vector<AppDebugInfo> debugInfos; in GetAppDebugInfosByBundleName() local 1294 debugInfos.emplace_back(debugInfo); in GetAppDebugInfosByBundleName() 1296 return debugInfos; in GetAppDebugInfosByBundleName()
|
H A D | app_mgr_service_inner.cpp | 3520 std::vector<AppDebugInfo> debugInfos; in ProcessAppDebug() 3521 debugInfos.emplace_back(MakeAppDebugInfo(appRecord, isDebugStart)); in ProcessAppDebug() 3522 appDebugManager_->StartDebug(debugInfos); in ProcessAppDebug() 6454 auto debugInfos = appRunningManager_->GetAppDebugInfosByBundleName(bundleName, false); in NotifyAppFaultBySA() local 6455 if (!debugInfos.empty() && appDebugManager_ != nullptr) { in NotifyAppFaultBySA() 6456 appDebugManager_->StartDebug(debugInfos); in NotifyAppFaultBySA() 6477 auto debugInfos = appRunningManager_->GetAppDebugInfosByBundleName(bundleName, true); in NotifyAppFaultBySA() local 6478 if (!debugInfos.empty()) { in NotifyAppFaultBySA() 6481 appDebugManager_->StopDebug(debugInfos); in NotifyAppFaultBySA() 7482 std::vector<AppDebugInfo> debugInfos; in NotifyAppFaultBySA() local [all...] |
/foundation/ability/ability_runtime/test/unittest/app_debug_listener_stub_test/ |
H A D | mock_app_debug_listener_stub.h | 29 MOCK_METHOD1(OnAppDebugStarted, void(const std::vector<AppDebugInfo> &debugInfos)); 30 MOCK_METHOD1(OnAppDebugStoped, void(const std::vector<AppDebugInfo> &debugInfos));
|
/foundation/multimodalinput/input/service/module_loader/include/ |
H A D | app_debug_listener.h | 29 void OnAppDebugStarted(const std::vector<AppExecFwk::AppDebugInfo> &debugInfos) override; 30 void OnAppDebugStoped(const std::vector<AppExecFwk::AppDebugInfo> &debugInfos) override;
|
/foundation/ability/ability_runtime/test/fuzztest/abilityinterfacesappmgrappdebuglistenerstub_fuzzer/ |
H A D | abilityinterfacesappmgrappdebuglistenerstub_fuzzer.cpp | 59 void OnAppDebugStarted(const std::vector<AppDebugInfo> &debugInfos) override{}; 60 void OnAppDebugStoped(const std::vector<AppDebugInfo> &debugInfos) override{};
|
/foundation/distributeddatamgr/relational_store/frameworks/native/dfx/src/ |
H A D | rdb_fault_hiview_reporter.cpp | 53 eventInfoAppend.appendix += Format(eventInfoAppend.debugInfos, ""); in ReportFault() 69 eventInfoAppend.appendix += Format(eventInfoAppend.debugInfos, ""); in ReportRestore() 186 eventInfo.debugInfos = Connection::Collect(config); in Create() 205 auto &local = eventInfo.debugInfos; in Update()
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | rdb_store_manager.cpp | 299 std::map<std::string, Info> debugInfos; in Collector() local 307 err = service->GetDebugInfo(param, debugInfos); in Collector() 314 return debugInfos; in Collector()
|
/foundation/distributeddatamgr/relational_store/frameworks/native/dfx/include/ |
H A D | rdb_fault_hiview_reporter.h | 44 std::map<std::string, DebugInfo> debugInfos; member
|
/foundation/ability/ability_runtime/test/unittest/app_running_manager_test/ |
H A D | app_running_manager_test.cpp | 123 std::vector<AppDebugInfo> debugInfos; in HWTEST_F() local 135 debugInfos.emplace_back(debugInfo); in HWTEST_F() 136 EXPECT_EQ(debugInfos.size(), DEBUG_INFOS_SIZE); in HWTEST_F() 255 std::vector<AppDebugInfo> debugInfos; in HWTEST_F() local
|
/foundation/multimodalinput/input/service/module_loader/test/ |
H A D | mmi_service_test.cpp | 1083 std::vector<AppExecFwk::AppDebugInfo> debugInfos(-1); in HWTEST_F() 1084 ASSERT_NO_FATAL_FAILURE(listener.OnAppDebugStoped(debugInfos)); in HWTEST_F() 1086 ASSERT_NO_FATAL_FAILURE(listener.OnAppDebugStoped(debugInfos)); in HWTEST_F()
|
/foundation/window/window_manager/window_scene/session_manager/include/ |
H A D | scene_session_manager.h | 123 void OnAppDebugStarted(const std::vector<AppExecFwk::AppDebugInfo>& debugInfos) override; 124 void OnAppDebugStoped(const std::vector<AppExecFwk::AppDebugInfo>& debugInfos) override;
|
/foundation/window/window_manager/window_scene/session_manager/src/ |
H A D | scene_session_manager.cpp | 9145 void AppAnrListener::OnAppDebugStarted(const std::vector<AppExecFwk::AppDebugInfo>& debugInfos) in OnAppDebugStarted() argument 9148 if (debugInfos.empty()) { in OnAppDebugStarted() 9149 WLOGFE("AppAnrListener OnAppDebugStarted debugInfos is empty"); in OnAppDebugStarted() 9154 void AppAnrListener::OnAppDebugStoped(const std::vector<AppExecFwk::AppDebugInfo>& debugInfos) in OnAppDebugStoped() argument 9157 if (debugInfos.empty()) { in OnAppDebugStoped() 9158 WLOGFE("AppAnrListener OnAppDebugStoped debugInfos is empty"); in OnAppDebugStoped()
|