Lines Matching refs:DumpCatch

245  * @tc.desc: test DumpCatch API: app PID(app), TID(0)
255 bool ret = dumplog.DumpCatch(g_loopAppPid, 0, msg);
265 * @tc.desc: test DumpCatch API: app PID(app), TID(PID)
274 bool ret = dumplog.DumpCatch(g_loopAppPid, g_loopAppPid, msg);
283 * @tc.desc: test DumpCatch API: app PID(app), TID(<>PID)
296 bool ret = dumplog.DumpCatch(g_loopAppPid, tid, msg);
304 * @tc.desc: test DumpCatch API: app PID(system), TID(0)
314 bool ret = dumplog.DumpCatch(g_loopSysPid, 0, msg);
325 * @tc.desc: test DumpCatch API: app PID(root), TID(0)
336 bool ret = dumplog.DumpCatch(g_loopRootPid, 0, msg);
347 * @tc.desc: test DumpCatch API: app PID(9999), TID(0)
356 bool ret = dumplog.DumpCatch(9999, 0, msg);
366 * @tc.desc: test DumpCatch API: app PID(app), TID(9999)
375 bool ret = dumplog.DumpCatch(g_loopAppPid, 9999, msg);
385 * @tc.desc: test DumpCatch API: app PID(app), TID(system)
395 bool ret = dumplog.DumpCatch(g_loopAppPid, g_loopSysPid, msg);
406 * @tc.desc: test DumpCatch API: app PID(0), TID(app)
416 bool ret = dumplog.DumpCatch(0, g_loopAppPid, msg);
426 * @tc.desc: test DumpCatch API: PID(-11), TID(0)
435 bool ret = dumplog.DumpCatch(-11, 0, msg);
445 * @tc.desc: test DumpCatch API: PID(root), TID(-11)
454 bool ret = dumplog.DumpCatch(g_loopRootPid, -11, msg);
464 * @tc.desc: test DumpCatch API: system PID(system), TID(0)
474 bool ret = dumplog.DumpCatch(g_loopSysPid, 0, msg);
489 * @tc.desc: test DumpCatch API: root PID(root), TID(0)
499 bool ret = dumplog.DumpCatch(g_loopRootPid, 0, msg);
514 * @tc.desc: test DumpCatch API: system PID(app), TID(0)
525 bool ret = dumplog.DumpCatch(g_loopAppPid, 0, msg);
543 * @tc.desc: test DumpCatch API: system PID(root), TID(0)
554 bool ret = dumplog.DumpCatch(g_loopRootPid, 0, msg);
572 * @tc.desc: test DumpCatch API: root PID(system), TID(0)
583 bool ret = dumplog.DumpCatch(g_loopSysPid, 0, msg);
601 * @tc.desc: test DumpCatch API: root PID(app), TID(0)
612 bool ret = dumplog.DumpCatch(g_loopAppPid, 0, msg);
630 * @tc.desc: test DumpCatch API: app PID(app), TID(root)
639 bool ret = dumplog.DumpCatch(g_loopAppPid, g_loopRootPid, msg);
649 * @tc.desc: test DumpCatch API: PID(root), TID(app)
658 bool ret = dumplog.DumpCatch(g_loopRootPid, g_loopAppPid, msg);
1210 * @tc.desc: test CPP DumpCatch API: PID(apppid), TID(0)
1219 bool ret = dumplog.DumpCatch(g_loopAppPid, 0, msg);
1248 * @tc.desc: test DumpCatch API: app unsigned PID(systempid), unsigned TID(systempid)
1257 bool ret = dumplog.DumpCatch(g_unsignedLoopSysPid, g_unsignedLoopSysPid, msg);
1271 * @tc.desc: test DumpCatch API: app unsigned PID(systempid), unsigned TID(systempid)
1280 bool ret = dumplog.DumpCatch(g_unsignedLoopSysPid, g_unsignedLoopSysPid, msg);
1333 * @tc.desc: test DumpCatch API: PID(getpid), unsigned TID(0)
1349 bool ret = dumplog.DumpCatch(pid, 0, msg);
1406 if (!dumplog.DumpCatch(pid, 0, msg)) {
1421 if (dumplog.DumpCatch(targetPid, 0, msg)) {
1442 * @tc.desc: Calling DumpCatch Func for same process in multiple threads at same time
1460 * @tc.desc: Calling DumpCatch Func for different process in multiple threads at same time