/base/hiviewdfx/faultloggerd/test/systemtest/ |
H A D | dumpcatcher_system_test.cpp | 245 * @tc.desc: test DumpCatch API: app PID(app), TID(0) 255 bool ret = dumplog.DumpCatch(g_loopAppPid, 0, msg); in HWTEST_F() 265 * @tc.desc: test DumpCatch API: app PID(app), TID(PID) 274 bool ret = dumplog.DumpCatch(g_loopAppPid, g_loopAppPid, msg); in HWTEST_F() 283 * @tc.desc: test DumpCatch API: app PID(app), TID(<>PID) 296 bool ret = dumplog.DumpCatch(g_loopAppPid, tid, msg); in HWTEST_F() 304 * @tc.desc: test DumpCatch API: app PID(system), TID(0) 314 bool ret = dumplog.DumpCatch(g_loopSysPid, 0, msg); in HWTEST_F() 325 * @tc.desc: test DumpCatch API: app PID(root), TID(0) 336 bool ret = dumplog.DumpCatch(g_loopRootPi in HWTEST_F() [all...] |
/base/startup/appspawn/modules/common/ |
H A D | appspawn_dfx_dump.cpp | 26 bool ret = dumpLog.DumpCatch(pid, 0, stackTrace); in DumpSpawnStack()
|
/base/hiviewdfx/faultloggerd/tools/dump_catcher/ |
H A D | dump_catcher.cpp | 34 bool dumpRet = dfxDump.DumpCatch(pid, tid, msg); in Dump()
|
/base/hiviewdfx/faultloggerd/test/fuzztest/faultloggerddumpcatcher_fuzzer/ |
H A D | faultloggerddumpcatcher_fuzzer.cpp | 48 catcher->DumpCatch(pid, tid, msg, DEFAULT_MAX_FRAME_NUM, false); in DumpStackTraceTest()
|
/base/hiviewdfx/faultloggerd/test/unittest/dump_catcher/ |
H A D | dumpcatcher_interfaces_test.cpp | 357 * @tc.desc: test DumpCatch API: PID(test hap), TID(0) 378 bool ret = dumplog.DumpCatch(g_testPid, 0, msg); in HWTEST_F() 391 * @tc.desc: test DumpCatch API: PID(test hap), TID(test hap main thread) 412 bool ret = dumplog.DumpCatch(g_testPid, g_testPid, msg); in HWTEST_F() 426 * @tc.desc: test DumpCatch API: PID(test hap), TID(-1) 447 bool ret = dumplog.DumpCatch(g_testPid, -1, msg); in HWTEST_F() 455 * @tc.desc: test DumpCatch API: PID(-1), TID(-1) 464 bool ret = dumplog.DumpCatch(-1, -1, msg); in HWTEST_F() 705 * @tc.desc: test DumpCatch remote API: PID(getpid()), TID(child thread) 721 bool ret = dumplog.DumpCatch(pi in HWTEST_F() [all...] |
/base/hiviewdfx/faultloggerd/test/unittest/sigdump_handler/ |
H A D | sigdump_handler_test.cpp | 81 bool ret = dumplog.DumpCatch(targetPid, 0, msg); in HWTEST_F()
|
/base/hiviewdfx/faultloggerd/example/ |
H A D | dump_catcher_demo.cpp | 37 bool ret = dumplog.DumpCatch(pid, tid, msg, OHOS::HiviewDFX::DEFAULT_MAX_FRAME_NUM, isJson); in TestFuncDump()
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/dump_catcher/include/ |
H A D | dfx_dump_catcher.h | 46 bool DumpCatch(int pid, int tid, std::string& msg, size_t maxFrameNums = DEFAULT_MAX_FRAME_NUM,
|
/base/hiviewdfx/faultloggerd/test/performancetest/src/ |
H A D | faultloggerd_performance_test.cpp | 113 * @tc.desc: test DumpCatch API: PID(root), TID(root) 123 dumplog.DumpCatch(FaultPerformanceTest::looprootPid, FaultPerformanceTest::looprootPid, msg); in HWTEST_F() 125 GTEST_LOG_(INFO) << "DumpCatch API Performance time(PID(root), TID(root)): " << in HWTEST_F() 135 * @tc.desc: test DumpCatch API: PID(root), TID(0) 145 dumplog.DumpCatch(FaultPerformanceTest::looprootPid, 0, msg); in HWTEST_F() 148 GTEST_LOG_(INFO) << "DumpCatch API Performance time(PID(root), TID(0)): " << in HWTEST_F() 180 * @tc.desc: test DumpCatch API: PID(root)
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/dump_catcher/ |
H A D | dfx_dump_catcher.cpp | 217 if (DumpCatch(pid, 0, msg, maxFrameNums, isJson)) { in DumpCatchProcess() 229 bool DfxDumpCatcher::DumpCatch(int pid, int tid, std::string& msg, size_t maxFrameNums, bool isJson) in DumpCatch() function in OHOS::HiviewDFX::DfxDumpCatcher 238 DFXLOGE("DumpCatch:: the pid(%{public}d) process has exited, errno(%{public}d)", pid, errno); in DumpCatch() 248 DFXLOGW("Receive DumpCatch request for cPid:(%{public}d), pid(%{public}d), " \ in DumpCatch() 277 ret = DumpCatch(pid, tid, msg, maxFrameNums); in DumpCatchFd()
|
/base/hiviewdfx/hichecker/frameworks/native/ |
H A D | hichecker.cpp | 214 if (!dumplog.DumpCatch(getpid(), gettid(), msg)) { in DumpStackTrace()
|