Lines Matching refs:timestamp
78 item->timestamp[i].tv_nsec = 0;
79 item->timestamp[i].tv_sec = 0;
151 (void)clock_gettime(CLOCK_MONOTONIC, &(found->timestamp[BOOTEVENT_READY]));
160 (void)clock_gettime(CLOCK_MONOTONIC, &(item->timestamp[BOOTEVENT_FORK]));
198 double forkTime = (double)item->timestamp[BOOTEVENT_FORK].tv_sec * MSECTONSEC +
199 (double)item->timestamp[BOOTEVENT_FORK].tv_nsec / USTONSEC;
200 double readyTime = (double)item->timestamp[BOOTEVENT_READY].tv_sec * MSECTONSEC +
201 (double)item->timestamp[BOOTEVENT_READY].tv_nsec / USTONSEC;
336 if (found->timestamp[BOOTEVENT_READY].tv_sec > 0) {
340 &(found->timestamp[BOOTEVENT_READY])) == 0, 0);
472 item->timestamp[BOOTEVENT_READY].tv_sec = 0;
499 &(item->timestamp[BOOTEVENT_FORK])) == 0);
526 item->timestamp[BOOTEVENT_FORK] = timeStat->startTime;
527 item->timestamp[BOOTEVENT_READY] = timeStat->endTime;