OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:per_thread
(Results
1 - 3
of
3
) sorted by null
/external/v8/src/
v8threads.cc
162
Isolate::PerIsolateThreadData*
per_thread
=
local
164
ASSERT(
per_thread
!= NULL);
165
ASSERT(
per_thread
->thread_state() == lazily_archived_thread_state_);
169
per_thread
->set_thread_state(NULL);
182
Isolate::PerIsolateThreadData*
per_thread
=
local
184
if (
per_thread
== NULL ||
per_thread
->thread_state() == NULL) {
189
ThreadState* state =
per_thread
->thread_state();
200
per_thread
->set_thread_state(NULL);
320
Isolate::PerIsolateThreadData*
per_thread
local
[
all
...]
isolate.cc
326
PerIsolateThreadData*
per_thread
= new PerIsolateThreadData(this, thread_id);
local
330
thread_data_table_->Insert(
per_thread
);
331
ASSERT(thread_data_table_->Lookup(this, thread_id) ==
per_thread
);
333
return
per_thread
;
340
PerIsolateThreadData*
per_thread
= NULL;
local
343
per_thread
= thread_data_table_->Lookup(this, thread_id);
344
if (
per_thread
== NULL) {
345
per_thread
= AllocatePerIsolateThreadData(thread_id);
348
return
per_thread
;
354
PerIsolateThreadData*
per_thread
= NULL
local
[
all
...]
execution.cc
523
Isolate::PerIsolateThreadData*
per_thread
=
local
525
per_thread
->set_stack_limit(thread_local_.real_climit_);
569
Isolate::PerIsolateThreadData*
per_thread
=
local
571
uintptr_t stored_limit =
per_thread
->stack_limit();
Completed in 91 milliseconds