Home
last modified time | relevance | path

Searched refs:new_state_and_flags (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dthread-inl.h188 union StateAndFlags new_state_and_flags; in TransitionToSuspendedAndRunCheckpoints() local
202 new_state_and_flags.as_struct.flags = old_state_and_flags.as_struct.flags; in TransitionToSuspendedAndRunCheckpoints()
203 new_state_and_flags.as_struct.state = new_state; in TransitionToSuspendedAndRunCheckpoints()
209 new_state_and_flags.as_int); in TransitionToSuspendedAndRunCheckpoints()
255 union StateAndFlags new_state_and_flags; in TransitionFromSuspendedToRunnable() local
256 new_state_and_flags.as_int = old_state_and_flags.as_int; in TransitionFromSuspendedToRunnable()
257 new_state_and_flags.as_struct.state = kRunnable; in TransitionFromSuspendedToRunnable()
262 new_state_and_flags.as_int))) { in TransitionFromSuspendedToRunnable()
Dthread.cc1591 union StateAndFlags new_state_and_flags; in RequestCheckpoint() local
1592 new_state_and_flags.as_int = old_state_and_flags.as_int; in RequestCheckpoint()
1593 new_state_and_flags.as_struct.flags |= kCheckpointRequest; in RequestCheckpoint()
1595 old_state_and_flags.as_int, new_state_and_flags.as_int); in RequestCheckpoint()
1620 union StateAndFlags new_state_and_flags; in RequestEmptyCheckpoint() local
1621 new_state_and_flags.as_int = old_state_and_flags.as_int; in RequestEmptyCheckpoint()
1622 new_state_and_flags.as_struct.flags |= kEmptyCheckpointRequest; in RequestEmptyCheckpoint()
1624 old_state_and_flags.as_int, new_state_and_flags.as_int); in RequestEmptyCheckpoint()