Symbol: nanotime_t
headers/os/kernel/OS.h
398
extern nanotime_t system_time_nsecs(void);
headers/private/system/system_profiler_defs.h
146
nanotime_t time;
headers/private/system/system_profiler_defs.h
152
nanotime_t time;
headers/private/system/system_profiler_defs.h
162
nanotime_t time;
headers/private/system/system_profiler_defs.h
169
nanotime_t time;
headers/private/system/system_profiler_defs.h
194
nanotime_t time;
headers/private/system/system_profiler_defs.h
207
nanotime_t time;
headers/private/system/system_profiler_defs.h
216
nanotime_t time;
headers/private/system/system_profiler_defs.h
227
nanotime_t time;
src/apps/debuganalyzer/gui/AbstractWaitObjectsPage.h
110
virtual nanotime_t TotalWaitTime() const = 0;
src/apps/debuganalyzer/gui/AbstractWaitObjectsPage.h
199
virtual nanotime_t TotalWaitTime() const
src/apps/debuganalyzer/gui/AbstractWaitObjectsPage.h
259
virtual nanotime_t TotalWaitTime() const
src/apps/debuganalyzer/gui/AbstractWaitObjectsPage.h
329
virtual nanotime_t TotalWaitTime() const
src/apps/debuganalyzer/gui/AbstractWaitObjectsPage.h
347
nanotime_t fTotalWaitTime;
src/apps/debuganalyzer/gui/chart/NanotimeChartAxisLegendSource.cpp
21
nanotime_t startTime = (nanotime_t)range.min;
src/apps/debuganalyzer/gui/chart/NanotimeChartAxisLegendSource.cpp
22
nanotime_t endTime = (nanotime_t)range.max;
src/apps/debuganalyzer/gui/chart/NanotimeChartAxisLegendSource.cpp
27
nanotime_t positionFactors[4];
src/apps/debuganalyzer/gui/chart/NanotimeChartAxisLegendSource.cpp
35
nanotime_t rangeTime = endTime - startTime;
src/apps/debuganalyzer/gui/chart/NanotimeChartAxisLegendSource.cpp
42
nanotime_t baseInterval = positionFactors[position];
src/apps/debuganalyzer/gui/chart/NanotimeChartAxisLegendSource.cpp
43
nanotime_t relativeFactor = 1;
src/apps/debuganalyzer/gui/chart/NanotimeChartAxisLegendSource.cpp
57
nanotime_t interval = baseInterval * relativeFactor;
src/apps/debuganalyzer/gui/chart/NanotimeChartAxisLegendSource.cpp
58
nanotime_t time = (startTime + interval - 1) / interval * interval;
src/apps/debuganalyzer/gui/main_window/GeneralPage.cpp
56
nanotime_t runtime = fModel->LastEventTime();
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1026
nanotime_t startTime;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1027
nanotime_t endTime;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1131
nanotime_t lastEventTime = fModel->BaseTime() - fModel->LastEventTime();
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1141
nanotime_t clusterStart = requests[0]->scheduledEvent->time;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1142
nanotime_t clusterEnd = requests[0]->finishedEvent != NULL
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1151
nanotime_t requestStart = requests[k]->scheduledEvent->time;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1152
nanotime_t requestEnd = requests[k]->finishedEvent != NULL
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1179
void _AddThreadIOData(Model::Thread* thread, nanotime_t startTime,
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1180
nanotime_t endTime, BObjectList<Model::IOOperation>& operations)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1195
nanotime_t lastEventTime = fModel->BaseTime() + fModel->LastEventTime();
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1199
nanotime_t clusterStart = operation->startedEvent->time;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1200
nanotime_t clusterEnd = operation->finishedEvent != NULL
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1205
nanotime_t operationStart = operation->startedEvent->time;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1206
nanotime_t operationEnd = operation->finishedEvent != NULL
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1234
void _GetEventTimeRange(nanotime_t& _startTime, nanotime_t& _endTime)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1238
_startTime = (nanotime_t)scrollOffset * fNSecsPerPixel;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1239
_endTime = (nanotime_t)(scrollOffset + Bounds().Width() + 1)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1248
nanotime_t& _time)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1252
_time = (nanotime_t)point.x * fNSecsPerPixel;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1255
void _GetIORequests(Model::Thread* thread, nanotime_t time,
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1293
nanotime_t startTime = events[lower].time;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1294
nanotime_t endTime = events[upper].state == IO_SCHEDULING_STATE_IDLE
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1371
inline void _UpdateLastEventTime(nanotime_t time)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
146
void AddState(Model::Thread* thread, nanotime_t time, ThreadState state,
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1545
nanotime_t diffTime = fState.LastEventTime() - thread->lastTime;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1581
nanotime_t fStartTime;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1582
nanotime_t fEndTime;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
168
void AddIOState(Model::Thread* thread, nanotime_t time, uint32 state)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1727
nanotime_t startTime;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
1728
nanotime_t endTime;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
174
void AddRun(Model::Thread* thread, nanotime_t time)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
179
void AddLatency(Model::Thread* thread, nanotime_t time)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
184
void AddPreemption(Model::Thread* thread, nanotime_t time)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
189
void AddWait(Model::Thread* thread, nanotime_t time,
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
195
void AddUnspecifiedWait(Model::Thread* thread, nanotime_t time)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
213
nanotime_t startTime;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
214
nanotime_t endTime;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
216
TimeRange(nanotime_t startTime, nanotime_t endTime)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
55
nanotime_t time;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
59
SchedulingEvent(nanotime_t time, ThreadState state,
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
71
nanotime_t time;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
710
void GetDataRange(nanotime_t& _startTime, nanotime_t& _endTime)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
717
nanotime_t timeSpan = fModel != NULL ? fModel->LastEventTime() : 0;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
74
IOSchedulingEvent(nanotime_t time, uint32 state)
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
774
nanotime_t time;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
781
nanotime_t threadStateTime = time;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
782
nanotime_t threadStateEndTime = time;
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
958
nanotime_t startTime = std::max(event.time, fStartTime);
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
959
nanotime_t endTime = k + 1 < eventCount
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
991
nanotime_t startTime = std::max(event.time, fStartTime);
src/apps/debuganalyzer/gui/main_window/SchedulingPage.cpp
992
nanotime_t endTime = k + 1 < eventCount
src/apps/debuganalyzer/gui/table/TableColumns.cpp
259
nanotime_t time = value.ToInt64();
src/apps/debuganalyzer/gui/table/TableColumns.cpp
275
nanotime_t a = _a.ToInt64();
src/apps/debuganalyzer/gui/table/TableColumns.cpp
276
nanotime_t b = _b.ToInt64();
src/apps/debuganalyzer/gui/thread_window/ActivityPage.cpp
73
int32 startIndex = fModel->FindSchedulingEvent((nanotime_t)start);
src/apps/debuganalyzer/gui/thread_window/ActivityPage.cpp
74
nanotime_t baseTime = fModel->GetModel()->BaseTime();
src/apps/debuganalyzer/model/Model.cpp
1013
Model::ClosestSchedulingState(nanotime_t eventTime) const
src/apps/debuganalyzer/model/Model.cpp
1027
Model::_CompareEventTimeSchedulingState(const nanotime_t* time,
src/apps/debuganalyzer/model/Model.cpp
150
Model::WaitObject::AddWait(nanotime_t waitTime)
src/apps/debuganalyzer/model/Model.cpp
184
nanotime_t
src/apps/debuganalyzer/model/Model.cpp
227
Model::ThreadWaitObject::AddWait(nanotime_t waitTime)
src/apps/debuganalyzer/model/Model.cpp
268
Model::Team::Team(const system_profiler_team_added* event, nanotime_t time)
src/apps/debuganalyzer/model/Model.cpp
294
nanotime_t time)
src/apps/debuganalyzer/model/Model.cpp
359
Model::Thread::ClosestRequestStartIndex(nanotime_t minRequestStartTime) const
src/apps/debuganalyzer/model/Model.cpp
390
Model::Thread::AddRun(nanotime_t runTime)
src/apps/debuganalyzer/model/Model.cpp
403
Model::Thread::AddRerun(nanotime_t runTime)
src/apps/debuganalyzer/model/Model.cpp
416
Model::Thread::AddLatency(nanotime_t latency)
src/apps/debuganalyzer/model/Model.cpp
429
Model::Thread::AddPreemption(nanotime_t runTime)
src/apps/debuganalyzer/model/Model.cpp
436
Model::Thread::AddWait(nanotime_t waitTime)
src/apps/debuganalyzer/model/Model.cpp
444
Model::Thread::AddUnspecifiedWait(nanotime_t waitTime)
src/apps/debuganalyzer/model/Model.cpp
491
Model::Thread::SetIOs(int64 count, nanotime_t time)
src/apps/debuganalyzer/model/Model.cpp
570
nanotime_t lastEventTime = state.LastEventTime();
src/apps/debuganalyzer/model/Model.cpp
661
Model::ClosestEventIndex(nanotime_t eventTime) const
src/apps/debuganalyzer/model/Model.cpp
733
Model::SetBaseTime(nanotime_t time)
src/apps/debuganalyzer/model/Model.cpp
740
Model::SetLastEventTime(nanotime_t time)
src/apps/debuganalyzer/model/Model.cpp
75
Model::CPU::SetIdleTime(nanotime_t time)
src/apps/debuganalyzer/model/Model.cpp
787
Model::AddTeam(const system_profiler_team_added* event, nanotime_t time)
src/apps/debuganalyzer/model/Model.cpp
831
Model::AddThread(const system_profiler_thread_added* event, nanotime_t time)
src/apps/debuganalyzer/model/Model.h
103
nanotime_t time);
src/apps/debuganalyzer/model/Model.h
1119
nanotime_t
src/apps/debuganalyzer/model/Model.h
1207
nanotime_t
src/apps/debuganalyzer/model/Model.h
1214
nanotime_t
src/apps/debuganalyzer/model/Model.h
1222
Model::Team::SetDeletionTime(nanotime_t time)
src/apps/debuganalyzer/model/Model.h
1266
nanotime_t
src/apps/debuganalyzer/model/Model.h
1273
nanotime_t
src/apps/debuganalyzer/model/Model.h
1329
nanotime_t
src/apps/debuganalyzer/model/Model.h
134
nanotime_t eventTime) const;
src/apps/debuganalyzer/model/Model.h
1343
nanotime_t
src/apps/debuganalyzer/model/Model.h
1357
nanotime_t
src/apps/debuganalyzer/model/Model.h
1378
nanotime_t
src/apps/debuganalyzer/model/Model.h
1385
nanotime_t
src/apps/debuganalyzer/model/Model.h
1399
nanotime_t
src/apps/debuganalyzer/model/Model.h
1421
Model::Thread::SetDeletionTime(nanotime_t time)
src/apps/debuganalyzer/model/Model.h
1455
nanotime_t cmp = key->time - thread->fCreationTime;
src/apps/debuganalyzer/model/Model.h
147
const nanotime_t* time,
src/apps/debuganalyzer/model/Model.h
1508
Model::SchedulingState::SetLastEventTime(nanotime_t time)
src/apps/debuganalyzer/model/Model.h
1552
nanotime_t
src/apps/debuganalyzer/model/Model.h
157
nanotime_t fBaseTime;
src/apps/debuganalyzer/model/Model.h
158
nanotime_t fLastEventTime;
src/apps/debuganalyzer/model/Model.h
159
nanotime_t fIdleTime;
src/apps/debuganalyzer/model/Model.h
171
nanotime_t time;
src/apps/debuganalyzer/model/Model.h
186
inline nanotime_t IdleTime() const;
src/apps/debuganalyzer/model/Model.h
187
void SetIdleTime(nanotime_t time);
src/apps/debuganalyzer/model/Model.h
190
nanotime_t fIdleTime;
src/apps/debuganalyzer/model/Model.h
201
inline nanotime_t StartedTime() const;
src/apps/debuganalyzer/model/Model.h
202
inline nanotime_t FinishedTime() const;
src/apps/debuganalyzer/model/Model.h
234
inline nanotime_t ScheduledTime() const;
src/apps/debuganalyzer/model/Model.h
235
inline nanotime_t FinishedTime() const;
src/apps/debuganalyzer/model/Model.h
284
inline nanotime_t TotalWaitTime() const;
src/apps/debuganalyzer/model/Model.h
286
void AddWait(nanotime_t waitTime);
src/apps/debuganalyzer/model/Model.h
299
nanotime_t fTotalWaitTime;
src/apps/debuganalyzer/model/Model.h
313
nanotime_t TotalWaitTime();
src/apps/debuganalyzer/model/Model.h
336
nanotime_t fTotalWaitTime;
src/apps/debuganalyzer/model/Model.h
354
inline nanotime_t TotalWaitTime() const;
src/apps/debuganalyzer/model/Model.h
356
void AddWait(nanotime_t waitTime);
src/apps/debuganalyzer/model/Model.h
361
nanotime_t fTotalWaitTime;
src/apps/debuganalyzer/model/Model.h
402
nanotime_t time);
src/apps/debuganalyzer/model/Model.h
408
inline nanotime_t CreationTime() const;
src/apps/debuganalyzer/model/Model.h
409
inline nanotime_t DeletionTime() const;
src/apps/debuganalyzer/model/Model.h
413
inline void SetDeletionTime(nanotime_t time);
src/apps/debuganalyzer/model/Model.h
424
nanotime_t fCreationTime;
src/apps/debuganalyzer/model/Model.h
425
nanotime_t fDeletionTime;
src/apps/debuganalyzer/model/Model.h
434
nanotime_t time);
src/apps/debuganalyzer/model/Model.h
454
nanotime_t minRequestStartTime) const;
src/apps/debuganalyzer/model/Model.h
460
inline nanotime_t CreationTime() const;
src/apps/debuganalyzer/model/Model.h
461
inline nanotime_t DeletionTime() const;
src/apps/debuganalyzer/model/Model.h
464
inline nanotime_t TotalRunTime() const;
src/apps/debuganalyzer/model/Model.h
466
inline nanotime_t TotalRerunTime() const;
src/apps/debuganalyzer/model/Model.h
468
inline nanotime_t TotalLatency() const;
src/apps/debuganalyzer/model/Model.h
471
inline nanotime_t TotalWaitTime() const;
src/apps/debuganalyzer/model/Model.h
472
inline nanotime_t UnspecifiedWaitTime() const;
src/apps/debuganalyzer/model/Model.h
475
inline nanotime_t IOTime() const;
src/apps/debuganalyzer/model/Model.h
482
inline void SetDeletionTime(nanotime_t time);
src/apps/debuganalyzer/model/Model.h
484
void AddRun(nanotime_t runTime);
src/apps/debuganalyzer/model/Model.h
485
void AddRerun(nanotime_t runTime);
src/apps/debuganalyzer/model/Model.h
486
void AddLatency(nanotime_t latency);
src/apps/debuganalyzer/model/Model.h
487
void AddPreemption(nanotime_t runTime);
src/apps/debuganalyzer/model/Model.h
488
void AddWait(nanotime_t waitTime);
src/apps/debuganalyzer/model/Model.h
489
void AddUnspecifiedWait(nanotime_t waitTime);
src/apps/debuganalyzer/model/Model.h
495
void SetIOs(int64 count, nanotime_t time);
src/apps/debuganalyzer/model/Model.h
520
nanotime_t fCreationTime;
src/apps/debuganalyzer/model/Model.h
521
nanotime_t fDeletionTime;
src/apps/debuganalyzer/model/Model.h
524
nanotime_t fTotalRunTime;
src/apps/debuganalyzer/model/Model.h
525
nanotime_t fMinRunTime;
src/apps/debuganalyzer/model/Model.h
526
nanotime_t fMaxRunTime;
src/apps/debuganalyzer/model/Model.h
529
nanotime_t fTotalLatency;
src/apps/debuganalyzer/model/Model.h
530
nanotime_t fMinLatency;
src/apps/debuganalyzer/model/Model.h
531
nanotime_t fMaxLatency;
src/apps/debuganalyzer/model/Model.h
534
nanotime_t fTotalRerunTime;
src/apps/debuganalyzer/model/Model.h
535
nanotime_t fMinRerunTime;
src/apps/debuganalyzer/model/Model.h
536
nanotime_t fMaxRerunTime;
src/apps/debuganalyzer/model/Model.h
539
nanotime_t fTotalWaitTime;
src/apps/debuganalyzer/model/Model.h
540
nanotime_t fUnspecifiedWaitTime;
src/apps/debuganalyzer/model/Model.h
543
nanotime_t fIOTime;
src/apps/debuganalyzer/model/Model.h
554
nanotime_t lastTime;
src/apps/debuganalyzer/model/Model.h
605
inline nanotime_t LastEventTime() const { return fLastEventTime; }
src/apps/debuganalyzer/model/Model.h
606
inline void SetLastEventTime(nanotime_t time);
src/apps/debuganalyzer/model/Model.h
617
nanotime_t fLastEventTime;
src/apps/debuganalyzer/model/Model.h
629
inline nanotime_t LastEventTime() const;
src/apps/debuganalyzer/model/Model.h
644
nanotime_t fLastEventTime;
src/apps/debuganalyzer/model/Model.h
689
nanotime_t
src/apps/debuganalyzer/model/Model.h
69
size_t ClosestEventIndex(nanotime_t eventTime) const;
src/apps/debuganalyzer/model/Model.h
696
nanotime_t
src/apps/debuganalyzer/model/Model.h
703
nanotime_t
src/apps/debuganalyzer/model/Model.h
727
nanotime_t
src/apps/debuganalyzer/model/Model.h
737
nanotime_t
src/apps/debuganalyzer/model/Model.h
744
nanotime_t
src/apps/debuganalyzer/model/Model.h
79
inline nanotime_t BaseTime() const;
src/apps/debuganalyzer/model/Model.h
796
nanotime_t timeA = a->startedEvent->time;
src/apps/debuganalyzer/model/Model.h
797
nanotime_t timeB = b->startedEvent->time;
src/apps/debuganalyzer/model/Model.h
80
void SetBaseTime(nanotime_t time);
src/apps/debuganalyzer/model/Model.h
808
nanotime_t
src/apps/debuganalyzer/model/Model.h
815
nanotime_t
src/apps/debuganalyzer/model/Model.h
82
inline nanotime_t LastEventTime() const;
src/apps/debuganalyzer/model/Model.h
83
void SetLastEventTime(nanotime_t time);
src/apps/debuganalyzer/model/Model.h
85
inline nanotime_t IdleTime() const;
src/apps/debuganalyzer/model/Model.h
903
nanotime_t timeCmp = a->scheduledEvent->time - b->scheduledEvent->time;
src/apps/debuganalyzer/model/Model.h
96
nanotime_t time);
src/apps/debuganalyzer/model/Model.h
972
nanotime_t
src/apps/debuganalyzer/model/ThreadModel.cpp
97
ThreadModel::FindSchedulingEvent(nanotime_t time)
src/apps/debuganalyzer/model/ThreadModel.h
153
nanotime_t
src/apps/debuganalyzer/model/ThreadModel.h
40
int32 FindSchedulingEvent(nanotime_t time);
src/apps/debuganalyzer/model/ThreadModel.h
72
inline nanotime_t TotalWaitTime() const;
src/apps/debuganalyzer/model/ThreadModel.h
87
nanotime_t fTotalWaitTime;
src/apps/debuganalyzer/model_loader/ModelLoader.cpp
1053
nanotime_t diffTime = fState->LastEventTime() - thread->lastTime;
src/apps/debuganalyzer/model_loader/ModelLoader.cpp
1087
nanotime_t diffTime = fState->LastEventTime() - thread->lastTime;
src/apps/debuganalyzer/model_loader/ModelLoader.cpp
1339
ModelLoader::_AddIdleTime(uint32 cpu, nanotime_t time)
src/apps/debuganalyzer/model_loader/ModelLoader.cpp
312
ModelLoader::_UpdateLastEventTime(nanotime_t time)
src/apps/debuganalyzer/model_loader/ModelLoader.cpp
54
nanotime_t idleTime;
src/apps/debuganalyzer/model_loader/ModelLoader.cpp
840
nanotime_t ioTime = 0;
src/apps/debuganalyzer/model_loader/ModelLoader.cpp
846
nanotime_t endTime = fBaseTime + fModel->LastEventTime();
src/apps/debuganalyzer/model_loader/ModelLoader.cpp
849
nanotime_t ioStart = requests[0]->scheduledEvent->time;
src/apps/debuganalyzer/model_loader/ModelLoader.cpp
850
nanotime_t previousEnd = requests[0]->finishedEvent != NULL
src/apps/debuganalyzer/model_loader/ModelLoader.cpp
943
nanotime_t diffTime = fState->LastEventTime() - thread->lastTime;
src/apps/debuganalyzer/model_loader/ModelLoader.h
117
void _AddIdleTime(uint32 cpu, nanotime_t time);
src/apps/debuganalyzer/model_loader/ModelLoader.h
123
nanotime_t fBaseTime;
src/apps/debuganalyzer/model_loader/ModelLoader.h
76
inline void _UpdateLastEventTime(nanotime_t time);
src/apps/debuganalyzer/util/TimeUtils.h
13
nanotime_t hours;
src/apps/debuganalyzer/util/TimeUtils.h
21
nanotime_t hours;
src/apps/debuganalyzer/util/TimeUtils.h
46
decompose_time(nanotime_t time, decomposed_nanotime& decomposed)
src/apps/debuganalyzer/util/TimeUtils.h
85
format_nanotime(nanotime_t time, char* buffer, size_t bufferSize)
src/apps/debuganalyzer/util/TimeUtils.h
98
format_nanotime(nanotime_t time)
src/system/kernel/scheduler/scheduler_profiler.cpp
103
nanotime_t stop = system_time_nsecs();
src/system/kernel/scheduler/scheduler_profiler.cpp
129
&_CompareFunctions<nanotime_t, &FunctionData::fTimeInclusive>);
src/system/kernel/scheduler/scheduler_profiler.cpp
143
&_CompareFunctions<nanotime_t, &FunctionData::fTimeExclusive>);
src/system/kernel/scheduler/scheduler_profiler.cpp
157
&_CompareFunctionsPerCall<nanotime_t, &FunctionData::fTimeInclusive>);
src/system/kernel/scheduler/scheduler_profiler.cpp
171
&_CompareFunctionsPerCall<nanotime_t, &FunctionData::fTimeExclusive>);
src/system/kernel/scheduler/scheduler_profiler.cpp
58
nanotime_t start = system_time_nsecs();
src/system/kernel/scheduler/scheduler_profiler.cpp
75
nanotime_t stop = system_time_nsecs();
src/system/kernel/scheduler/scheduler_profiler.cpp
83
nanotime_t start = system_time_nsecs();
src/system/kernel/scheduler/scheduler_profiler.cpp
90
nanotime_t timeSpent = start - stackEntry->fEntryTime;
src/system/kernel/scheduler/scheduler_profiler.cpp
97
nanotime_t profilerTime = stackEntry->fProfilerTime;
src/system/kernel/scheduler/scheduler_profiler.h
58
nanotime_t fEntryTime;
src/system/kernel/scheduler/scheduler_profiler.h
59
nanotime_t fOthersTime;
src/system/kernel/scheduler/scheduler_profiler.h
60
nanotime_t fProfilerTime;
src/system/libroot/os/arch/generic/generic_system_time_nsecs.cpp
10
nanotime_t