6 instantiations of ScheduleTimeRecord
Microsoft.Build (6)
BackEnd\Components\Scheduler\SchedulableRequest.cs (6)
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
();
2 references to ScheduleTimeRecord
Microsoft.Build (2)
BackEnd\Components\Scheduler\SchedulableRequest.cs (2)
122
private Dictionary<SchedulableRequestState,
ScheduleTimeRecord
> _timeRecords;
140
_timeRecords = new Dictionary<SchedulableRequestState,
ScheduleTimeRecord
>(5);