1 write to _timeRecords
Microsoft.Build (1)
BackEnd\Components\Scheduler\SchedulableRequest.cs (1)
139
_timeRecords
= new Dictionary<SchedulableRequestState, ScheduleTimeRecord>(5);
9 references to _timeRecords
Microsoft.Build (9)
BackEnd\Components\Scheduler\SchedulableRequest.cs (9)
140
_timeRecords
[SchedulableRequestState.Unscheduled] = new ScheduleTimeRecord();
141
_timeRecords
[SchedulableRequestState.Blocked] = new ScheduleTimeRecord();
142
_timeRecords
[SchedulableRequestState.Yielding] = new ScheduleTimeRecord();
143
_timeRecords
[SchedulableRequestState.Executing] = new ScheduleTimeRecord();
144
_timeRecords
[SchedulableRequestState.Ready] = new ScheduleTimeRecord();
145
_timeRecords
[SchedulableRequestState.Completed] = new ScheduleTimeRecord();
304
return
_timeRecords
[desiredState].AccumulatedTime;
475
_timeRecords
[_state].EndState(currentTime);
476
_timeRecords
[newState].StartState(currentTime);