Lines Matching refs:tracePluginResult
654 template <typename T> bool FlowController::ParsePerCpuStatus(T& tracePluginResult, int stage) in ParsePerCpuStatus() argument
656 CHECK_NOTNULL(tracePluginResult, false, "create TracePluginResult FAILED!"); in ParsePerCpuStatus()
658 auto cpuStatsMsg = tracePluginResult->add_ftrace_cpu_stats(); in ParsePerCpuStatus()
690 template <typename T> bool FlowController::ReportClockTimes(T& tracePluginResult) in ReportClockTimes() argument
692 CHECK_NOTNULL(tracePluginResult, false, "create TracePluginResult FAILED!"); in ReportClockTimes()
705 auto clockMsg = tracePluginResult->add_clocks_detail(); in ReportClockTimes()
721 template <typename T> bool FlowController::ParseKernelSymbols(T& tracePluginResult) in ParseKernelSymbols() argument
723 CHECK_NOTNULL(tracePluginResult, false, "create TracePluginResult FAILED!"); in ParseKernelSymbols()
725 ksymsParser_->Accept([&tracePluginResult](const KernelSymbol& symbol) { in ParseKernelSymbols()
726 auto symbolDetail = tracePluginResult->add_symbols_detail(); in ParseKernelSymbols()
735 bool FlowController::ParseFtraceEvent(T* tracePluginResult, int cpuid, uint8_t page[], E* ftraceEve… in ParseFtraceEvent() argument
737 CHECK_NOTNULL(tracePluginResult, false, "create TracePluginResult FAILED!"); in ParseFtraceEvent()
739 auto cpudetail = tracePluginResult->add_ftrace_cpu_detail(); in ParseFtraceEvent()