Home
last modified time | relevance | path

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

/aosp12/art/runtime/
H A Dthread-inl.h115 union StateAndFlags old_state_and_flags; in SetState() local
116 old_state_and_flags.as_int = tls32_.state_and_flags.as_int; in SetState()
187 union StateAndFlags old_state_and_flags; in TransitionToSuspendedAndRunCheckpoints() local
190 old_state_and_flags.as_int = tls32_.state_and_flags.as_int; in TransitionToSuspendedAndRunCheckpoints()
244 union StateAndFlags old_state_and_flags; in TransitionFromSuspendedToRunnable() local
245 old_state_and_flags.as_int = tls32_.state_and_flags.as_int; in TransitionFromSuspendedToRunnable()
246 int16_t old_state = old_state_and_flags.as_struct.state; in TransitionFromSuspendedToRunnable()
251 DCHECK_EQ(old_state_and_flags.as_struct.state, old_state); in TransitionFromSuspendedToRunnable()
252 if (LIKELY(old_state_and_flags.as_struct.flags == 0)) { in TransitionFromSuspendedToRunnable()
256 new_state_and_flags.as_int = old_state_and_flags.as_int; in TransitionFromSuspendedToRunnable()
[all …]
H A Dthread.cc1583 union StateAndFlags old_state_and_flags; in RequestCheckpoint() local
1584 old_state_and_flags.as_int = tls32_.state_and_flags.as_int; in RequestCheckpoint()
1585 if (old_state_and_flags.as_struct.state != kRunnable) { in RequestCheckpoint()
1590 DCHECK_EQ(old_state_and_flags.as_struct.state, kRunnable); in RequestCheckpoint()
1592 new_state_and_flags.as_int = old_state_and_flags.as_int; in RequestCheckpoint()
1595 old_state_and_flags.as_int, new_state_and_flags.as_int); in RequestCheckpoint()
1610 union StateAndFlags old_state_and_flags; in RequestEmptyCheckpoint() local
1611 old_state_and_flags.as_int = tls32_.state_and_flags.as_int; in RequestEmptyCheckpoint()
1612 if (old_state_and_flags.as_struct.state != kRunnable) { in RequestEmptyCheckpoint()
1619 DCHECK_EQ(old_state_and_flags.as_struct.state, kRunnable); in RequestEmptyCheckpoint()
[all …]