Searched defs:new_state_and_flags (Results 1 - 2 of 2) sorted by relevance

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

Completed in 484 milliseconds