10 writes to _interlockState
PresentationCore (10)
System\Windows\Media\MediaContext.cs (10)
701
_interlockState
= InterlockState.WaitingForNextFrame;
746
_interlockState
= InterlockState.Idle;
992
_interlockState
= InterlockState.Idle;
1006
_interlockState
= InterlockState.Disabled;
1301
_interlockState
= InterlockState.RequestedStart;
1336
_interlockState
= InterlockState.Disabled;
2179
_interlockState
= InterlockState.WaitingForResponse;
2274
_interlockState
= InterlockState.Idle;
2295
_interlockState
= InterlockState.Idle;
2574
_interlockState
= InterlockState.Idle;
15 references to _interlockState
PresentationCore (15)
System\Windows\Media\MediaContext.cs (15)
725
Debug.Assert(
_interlockState
== InterlockState.WaitingForResponse,
983
if (
_interlockState
== InterlockState.RequestedStart)
1109
if (
_interlockState
!= InterlockState.Disabled)
1314
bool interlockDisabled = (
_interlockState
== InterlockState.Disabled);
1316
if (
_interlockState
== InterlockState.WaitingForResponse)
1361
Debug.Assert(
_interlockState
== InterlockState.Disabled,
2256
if (
_interlockState
== InterlockState.WaitingForResponse)
2266
} while (
_interlockState
== InterlockState.WaitingForResponse);
2280
if (
_interlockState
== InterlockState.WaitingForResponse)
2288
} while (
_interlockState
== InterlockState.WaitingForResponse);
2550
Debug.Assert(
_interlockState
== InterlockState.WaitingForNextFrame
2843
return (
_interlockState
== InterlockState.WaitingForNextFrame ||
2844
_interlockState
== InterlockState.WaitingForResponse);
2856
return (
_interlockState
!= InterlockState.Disabled
2857
&&
_interlockState
!= InterlockState.RequestedStart);