OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:per_thread
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/
isolate.cc
289
PerIsolateThreadData*
per_thread
= new PerIsolateThreadData(this, thread_id);
local
293
thread_data_table_->Insert(
per_thread
);
294
ASSERT(thread_data_table_->Lookup(this, thread_id) ==
per_thread
);
296
return
per_thread
;
303
PerIsolateThreadData*
per_thread
= NULL;
local
306
per_thread
= thread_data_table_->Lookup(this, thread_id);
307
if (
per_thread
== NULL) {
308
per_thread
= AllocatePerIsolateThreadData(thread_id);
311
return
per_thread
;
v8threads.cc
170
Isolate::PerIsolateThreadData*
per_thread
=
local
172
if (
per_thread
== NULL ||
per_thread
->thread_state() == NULL) {
177
ThreadState* state =
per_thread
->thread_state();
188
per_thread
->set_thread_state(NULL);
Completed in 68 milliseconds