OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:new_thread_state
(Results
1 - 2
of
2
) sorted by null
/art/runtime/
scoped_thread_state_change.h
36
ScopedThreadStateChange(Thread* self, ThreadState
new_thread_state
)
38
: self_(self), thread_state_(
new_thread_state
), expected_has_no_thread_(false) {
49
if (old_thread_state_ !=
new_thread_state
) {
50
if (
new_thread_state
== kRunnable) {
53
self_->TransitionFromRunnableToSuspended(
new_thread_state
);
56
self_->SetState(
new_thread_state
);
/external/v8/src/
v8threads.cc
217
ThreadState*
new_thread_state
= new ThreadState(this);
local
218
new_thread_state
->AllocateSpace();
219
return
new_thread_state
;
Completed in 181 milliseconds