Home
last modified time | relevance | path

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

/art/runtime/
Dthread-inl.h184 union StateAndFlags new_state_and_flags; in TransitionToSuspendedAndRunCheckpoints() local
198 new_state_and_flags.as_struct.flags = old_state_and_flags.as_struct.flags; in TransitionToSuspendedAndRunCheckpoints()
199 new_state_and_flags.as_struct.state = new_state; in TransitionToSuspendedAndRunCheckpoints()
204 new_state_and_flags.as_int); in TransitionToSuspendedAndRunCheckpoints()
250 union StateAndFlags new_state_and_flags; in TransitionFromSuspendedToRunnable() local
251 new_state_and_flags.as_int = old_state_and_flags.as_int; in TransitionFromSuspendedToRunnable()
252 new_state_and_flags.as_struct.state = kRunnable; in TransitionFromSuspendedToRunnable()
256 new_state_and_flags.as_int))) { in TransitionFromSuspendedToRunnable()
Dthread.cc1383 union StateAndFlags new_state_and_flags; in RequestCheckpoint() local
1384 new_state_and_flags.as_int = old_state_and_flags.as_int; in RequestCheckpoint()
1385 new_state_and_flags.as_struct.flags |= kCheckpointRequest; in RequestCheckpoint()
1387 old_state_and_flags.as_int, new_state_and_flags.as_int); in RequestCheckpoint()
1412 union StateAndFlags new_state_and_flags; in RequestEmptyCheckpoint() local
1413 new_state_and_flags.as_int = old_state_and_flags.as_int; in RequestEmptyCheckpoint()
1414 new_state_and_flags.as_struct.flags |= kEmptyCheckpointRequest; in RequestEmptyCheckpoint()
1416 old_state_and_flags.as_int, new_state_and_flags.as_int); in RequestEmptyCheckpoint()