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