Home
last modified time | relevance | path

Searched refs:ThreadState (Results 1 – 23 of 23) sorted by relevance

/developtools/profiler/host/smartperf/trace_streamer/src/parser/
Dthread_state.cpp20 Direction ThreadState::SetStatByChar(char ch) in SetStatByChar()
36 void ThreadState::ProcessSate(const std::string& stateStr) in ProcessSate()
55 ThreadState::ThreadState(const std::string& stateStr) in ThreadState() function in SysTuning::TraceStreamer::ThreadState
Dthread_state.h27 class ThreadState {
29 explicit ThreadState(const std::string& stateStr);
30 ~ThreadState() {} in ~ThreadState()
/developtools/profiler/host/smartperf/ide/test/trace/database/logic-worker/
DProcedureLogicWorkerSPT.test.ts17 import {ProcedureLogicWorkerSPT, ThreadState, ThreadProcess, SPT} from "../../../../dist/trace/data…
27 let threadState = new ThreadState();
/developtools/profiler/host/smartperf/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerSPT.ts19 arrTs: Array<ThreadState> = [];
143 export class ThreadState{ class
/developtools/profiler/host/smartperf/trace_streamer/src/protos/types/plugins/cpu_data/
Dcpu_plugin_result.proto51 enum ThreadState { enum
62 ThreadState thread_state = 3;
/developtools/profiler/protos/types/plugins/cpu_data/
Dcpu_plugin_result.proto51 enum ThreadState { enum
62 ThreadState thread_state = 3;
/developtools/profiler/host/smartperf/ide/test/trace/bean/
DStateProcessThread.test.ts17 import {StateProcessThread,SPTChild,SPT,ThreadState,ThreadProcess,SptSlice} from "../../../dist/tra…
174 let threadState = new ThreadState();
/developtools/profiler/host/smartperf/ide/src/trace/bean/
DStateProcessThread.ts66 export class ThreadState{ class
/developtools/profiler/host/smartperf/trace_streamer/src/table/
Dthread_state_table.h45 const ThreadState& threadStateObj_;
/developtools/profiler/host/smartperf/trace_streamer/src/trace_data/
Dtrace_data_cache_writer.h47 ThreadState* GetThreadStateData();
Dtrace_data_cache_reader.h47 const ThreadState& GetConstThreadStateData() const;
Dtrace_data_cache_base.h67 ThreadState threadStateData_;
Dtrace_data_cache_reader.cpp80 const ThreadState& TraceDataCacheReader::GetConstThreadStateData() const in GetConstThreadStateData()
Dtrace_stdtype.cpp25 TableRowId ThreadState::AppendThreadState(InternalTime ts, in AppendThreadState()
41 void ThreadState::SetDuration(TableRowId index, InternalTime dur) in SetDuration()
61 TableRowId ThreadState::UpdateDuration(TableRowId index, InternalTime ts) in UpdateDuration()
69 void ThreadState::UpdateState(TableRowId index, TableRowId idState) in UpdateState()
74 void ThreadState::UpdateDuration(TableRowId index, InternalTime ts, TableRowId idState) in UpdateDuration()
80 void ThreadState::UpdateTidAndPid(TableRowId index, InternalTid tid, InternalTid pid) in UpdateTidAndPid()
86 TableRowId ThreadState::UpdateDuration(TableRowId index, InternalTime ts, InternalCpu cpu, TableRow… in UpdateDuration()
Dtrace_data_cache_writer.cpp112 ThreadState* TraceDataCacheWriter::GetThreadStateData() in GetThreadStateData()
Dtrace_stdtype.h119 class ThreadState {
/developtools/profiler/device/plugins/cpu_plugin/include/
Dcpu_data_plugin.h87 ThreadState GetThreadState(const char threadState);
/developtools/profiler/host/smartperf/doc/
Ddes_tables.md11 * instant : 记录Sched_waking, sched_wakeup事件, 用作ThreadState表的上下文使用。
12 * raw : 此数据结构主要作为ThreadState的上下文使用,这张表是sched_waking,sched_wakup, cpu_idle事件的原始记录。
/developtools/profiler/device/plugins/cpu_plugin/src/
Dcpu_data_plugin.cpp545 ThreadState CpuDataPlugin::GetThreadState(const char threadState) in GetThreadState()
547 ThreadState state = THREAD_UNSPECIFIED; in GetThreadState()
588 ThreadState state = GetThreadState(curWord[0]); in WriteThread()
/developtools/profiler/host/smartperf/trace_streamer/doc/
Ddes_tables.md31 | instant | 记录Sched_waking, sched_wakeup事件, 用作ThreadState表的上下文使用 |
50 | raw | 此数据结构主要作为ThreadState的上下文使用,这张表是sched_waking,sched_wakup, cpu_idle事件的原始记录|
51 | sched_slice | 此数据结构主要作为ThreadState的上下文使用,这张表是sched_switch事件的原始记录|
917 此数据结构主要作为ThreadState的上下文使用,这张表是sched_switch事件的原始记录。
/developtools/profiler/device/services/profiler_service/test/unittest/
Dprofiler_service_performance_test.cpp956 EXPECT_LE(cpuDataVec1[i].thread_info(0).thread_state(), ThreadState::THREAD_WAITING);
957 EXPECT_LE(cpuDataVec2[i].thread_info(0).thread_state(), ThreadState::THREAD_WAITING);
/developtools/profiler/device/plugins/cpu_plugin/test/unittest/
Dcpu_data_plugin_unittest.cpp74 ThreadState state;
/developtools/profiler/host/smartperf/trace_streamer/src/parser/bytrace_parser/
Dbytrace_event_parser.cpp138 auto threadState = ThreadState(prevStateStr.c_str()); in SchedSwitchEvent()