Lines Matching defs:ftimes
231 struct fgraph_times *ftimes;
262 ftimes = fgraph_reserve_data(gops->idx, sizeof(*ftimes));
263 if (ftimes)
264 ftimes->sleeptime = current->ftrace_sleeptime;
267 ftimes = fgraph_reserve_data(gops->idx, sizeof(ftimes->calltime));
269 if (!ftimes)
272 ftimes->calltime = trace_clock_local();
356 struct fgraph_times *ftimes,
359 if (size < sizeof(*ftimes))
365 ftimes->calltime += current->ftrace_sleeptime - ftimes->sleeptime;
373 struct fgraph_times *ftimes;
387 ftimes = fgraph_retrieve_data(gops->idx, &size);
388 if (!ftimes)
391 handle_nosleeptime(tr, trace, ftimes, size);
393 calltime = ftimes->calltime;
404 struct fgraph_times *ftimes;
419 ftimes = fgraph_retrieve_data(gops->idx, &size);
420 if (!ftimes)
424 handle_nosleeptime(tr, trace, ftimes, size);
426 calltime = ftimes->calltime;