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(); 304return _timeRecords[desiredState].AccumulatedTime; 475_timeRecords[_state].EndState(currentTime); 476_timeRecords[newState].StartState(currentTime);