Home
last modified time | relevance | path

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

/art/runtime/
Dthread-inl.h186 union StateAndFlags new_state_and_flags; in TransitionToSuspendedAndRunCheckpoints() local
200 new_state_and_flags.as_struct.flags = old_state_and_flags.as_struct.flags; in TransitionToSuspendedAndRunCheckpoints()
201 new_state_and_flags.as_struct.state = new_state; in TransitionToSuspendedAndRunCheckpoints()
206 new_state_and_flags.as_int); in TransitionToSuspendedAndRunCheckpoints()
252 union StateAndFlags new_state_and_flags; in TransitionFromSuspendedToRunnable() local
253 new_state_and_flags.as_int = old_state_and_flags.as_int; in TransitionFromSuspendedToRunnable()
254 new_state_and_flags.as_struct.state = kRunnable; in TransitionFromSuspendedToRunnable()
259 new_state_and_flags.as_int))) { in TransitionFromSuspendedToRunnable()
Dthread.cc1573 union StateAndFlags new_state_and_flags; in RequestCheckpoint() local
1574 new_state_and_flags.as_int = old_state_and_flags.as_int; in RequestCheckpoint()
1575 new_state_and_flags.as_struct.flags |= kCheckpointRequest; in RequestCheckpoint()
1577 old_state_and_flags.as_int, new_state_and_flags.as_int); in RequestCheckpoint()
1602 union StateAndFlags new_state_and_flags; in RequestEmptyCheckpoint() local
1603 new_state_and_flags.as_int = old_state_and_flags.as_int; in RequestEmptyCheckpoint()
1604 new_state_and_flags.as_struct.flags |= kEmptyCheckpointRequest; in RequestEmptyCheckpoint()
1606 old_state_and_flags.as_int, new_state_and_flags.as_int); in RequestEmptyCheckpoint()