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