Home
last modified time | relevance | path

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

/art/runtime/
Dthread-inl.h185 union StateAndFlags new_state_and_flags; in TransitionToSuspendedAndRunCheckpoints() local
199 new_state_and_flags.as_struct.flags = old_state_and_flags.as_struct.flags; in TransitionToSuspendedAndRunCheckpoints()
200 new_state_and_flags.as_struct.state = new_state; in TransitionToSuspendedAndRunCheckpoints()
205 new_state_and_flags.as_int); in TransitionToSuspendedAndRunCheckpoints()
251 union StateAndFlags new_state_and_flags; in TransitionFromSuspendedToRunnable() local
252 new_state_and_flags.as_int = old_state_and_flags.as_int; in TransitionFromSuspendedToRunnable()
253 new_state_and_flags.as_struct.state = kRunnable; in TransitionFromSuspendedToRunnable()
257 new_state_and_flags.as_int))) { in TransitionFromSuspendedToRunnable()
Dthread.cc1392 union StateAndFlags new_state_and_flags; in RequestCheckpoint() local
1393 new_state_and_flags.as_int = old_state_and_flags.as_int; in RequestCheckpoint()
1394 new_state_and_flags.as_struct.flags |= kCheckpointRequest; in RequestCheckpoint()
1396 old_state_and_flags.as_int, new_state_and_flags.as_int); in RequestCheckpoint()
1421 union StateAndFlags new_state_and_flags; in RequestEmptyCheckpoint() local
1422 new_state_and_flags.as_int = old_state_and_flags.as_int; in RequestEmptyCheckpoint()
1423 new_state_and_flags.as_struct.flags |= kEmptyCheckpointRequest; in RequestEmptyCheckpoint()
1425 old_state_and_flags.as_int, new_state_and_flags.as_int); in RequestEmptyCheckpoint()