Home
last modified time | relevance | path

Searched defs:newState (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Dmutator_lock.cpp72 void MutatorLock::SetState(MutatorLock::MutatorLockState newState) in SetState()
Djs_thread.cpp1125 void JSThread::UpdateState(ThreadState newState) in UpdateState()
1204 void JSThread::TransferFromRunningToSuspended(ThreadState newState) in TransferFromRunningToSuspended()
1273 inline void JSThread::StoreState(ThreadState newState) in StoreState()
1292 void JSThread::StoreRunningState(ThreadState newState) in StoreRunningState()
1324 inline void JSThread::StoreSuspendedState(ThreadState newState) in StoreSuspendedState()
1355 void JSThread::SetMutatorLockState(MutatorLock::MutatorLockState newState) in SetMutatorLockState()
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/futex/
Dmutex.h150 auto newState = curState + READ_INCREMENT; in ReadLock() local
186 auto newState = curState - READ_INCREMENT; in ReadUnlock() local
Dfmutex.cpp211 auto newState = HELPERS_TO_UNSIGNED(curState) | HELPERS_TO_UNSIGNED(HELD_MASK); in MutexLock() local
283 …auto newState = HELPERS_TO_UNSIGNED(curState) & ~HELPERS_TO_UNSIGNED(HELD_MASK); // State without… in MutexUnlock() local
Dmutex.cpp215 auto newState = curState + READ_INCREMENT; in TryReadLock() local
/arkcompiler/runtime_core/platforms/unix/libpandabase/futex/
Dfmutex.cpp189 auto newState = HELPERS_TO_UNSIGNED(curState) | HELPERS_TO_UNSIGNED(HELD_MASK); in MutexLock() local
276 …auto newState = HELPERS_TO_UNSIGNED(curState) & ~HELPERS_TO_UNSIGNED(HELD_MASK); // State without… in MutexUnlock() local
/arkcompiler/ets_runtime/ecmascript/daemon/
Ddaemon_thread.cpp191 void DaemonThread::SetMutatorLockState(MutatorLock::MutatorLockState newState) in SetMutatorLockState()
/arkcompiler/toolchain/websocket/
Dwebsocket_base.cpp273 WebSocketBase::ConnectionState WebSocketBase::SetConnectionState(ConnectionState newState) in SetConnectionState()
278 … WebSocketBase::CompareExchangeConnectionState(ConnectionState& expected, ConnectionState newState) in CompareExchangeConnectionState()
/arkcompiler/runtime_core/static_core/runtime/mem/
Dpygote_space_allocator-inl.h56 inline void PygoteSpaceAllocator<AllocConfigT>::SetState(PygoteSpaceState newState) in SetState()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dscheduler.cpp317 auto &newState = dfsStack.top(); in CalculateSchedulingUpperBound() local
395 auto &newState = dfsVisitStack.top(); in CalculateSchedulingLowerBound() local
452 auto &newState = dfsFinishStack.top(); in CalculateSchedulingLowerBound() local
Dgate_accessor.cpp1647 void GateAccessor::ReplaceControlGate(GateRef gate, GateRef newState) in ReplaceControlGate()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Descape.cpp512 … auto newState = parent_->GetLocalAllocator()->New<BasicBlockState>(parent_->GetLocalAllocator()); in MergeStates() local
541 void EscapeAnalysis::MergeProcessor::ProcessPhis(BasicBlock *block, BasicBlockState *newState) in ProcessPhis()
571 …Analysis::MergeProcessor::MergeState(StateOwner inst, BasicBlock *block, BasicBlockState *newState) in MergeState()