Lines Matching refs:historyTask
46 auto historyTask = historyTasks[i]; in DumpHistoryTaskInfo() local
47 if (historyTask.senderKernelThreadId_ == 0) { in DumpHistoryTaskInfo()
52 oss << "send thread = " << historyTask.senderKernelThreadId_; in DumpHistoryTaskInfo()
53 oss << ", send time = " << ffrt::FormatDateString4SteadyClock(historyTask.sendTime_); in DumpHistoryTaskInfo()
54 oss << ", handle time = " << ffrt::FormatDateString4SteadyClock(historyTask.handleTime_); in DumpHistoryTaskInfo()
55 oss << ", trigger time = " << ffrt::FormatDateString4SteadyClock(historyTask.triggerTime_); in DumpHistoryTaskInfo()
56 … oss << ", complete time = " << ffrt::FormatDateString4SteadyClock(historyTask.completeTime_); in DumpHistoryTaskInfo()
57 oss << ", task name = " << historyTask.taskName_; in DumpHistoryTaskInfo()
203 HistoryTask historyTask; in PushHistoryTask() local
204 historyTask.senderKernelThreadId_ = task->fromTid; in PushHistoryTask()
205 historyTask.taskName_ = task->label; in PushHistoryTask()
206 historyTask.sendTime_ = task->GetUptime() - task->GetDelay(); in PushHistoryTask()
207 historyTask.handleTime_ = task->GetUptime(); in PushHistoryTask()
208 historyTask.triggerTime_ = triggerTime; in PushHistoryTask()
209 historyTask.completeTime_ = completeTime; in PushHistoryTask()
210 historyTasks_[historyTaskIndex_.fetch_add(1) & (HISTORY_TASK_NUM_POWER - 1)] = historyTask; in PushHistoryTask()