OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:interrupt_flags_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/v8/src/
execution.cc
416
return (thread_local_.
interrupt_flags_
& INTERRUPT) != 0;
422
thread_local_.
interrupt_flags_
|= INTERRUPT;
429
return thread_local_.
interrupt_flags_
& PREEMPT;
435
thread_local_.
interrupt_flags_
|= PREEMPT;
442
return (thread_local_.
interrupt_flags_
& TERMINATE) != 0;
455
thread_local_.
interrupt_flags_
|= TERMINATE;
462
return (thread_local_.
interrupt_flags_
& GC_REQUEST) != 0;
468
thread_local_.
interrupt_flags_
|= GC_REQUEST;
478
return (thread_local_.
interrupt_flags_
& INSTALL_CODE) != 0;
484
thread_local_.
interrupt_flags_
|= INSTALL_CODE
[
all
...]
execution.h
256
return thread_local_.
interrupt_flags_
!= 0;
309
int
interrupt_flags_
;
member in class:v8::internal::StackGuard::ThreadLocal
/external/v8/src/
execution.cc
387
return (thread_local_.
interrupt_flags_
& INTERRUPT) != 0;
393
thread_local_.
interrupt_flags_
|= INTERRUPT;
400
return thread_local_.
interrupt_flags_
& PREEMPT;
406
thread_local_.
interrupt_flags_
|= PREEMPT;
413
return (thread_local_.
interrupt_flags_
& TERMINATE) != 0;
419
thread_local_.
interrupt_flags_
|= TERMINATE;
426
return (thread_local_.
interrupt_flags_
& RUNTIME_PROFILER_TICK) != 0;
433
thread_local_.
interrupt_flags_
|= RUNTIME_PROFILER_TICK;
445
return (thread_local_.
interrupt_flags_
& GC_REQUEST) != 0;
451
thread_local_.
interrupt_flags_
|= GC_REQUEST
[
all
...]
execution.h
239
return thread_local_.
interrupt_flags_
!= 0;
292
int
interrupt_flags_
;
member in class:v8::internal::StackGuard::ThreadLocal
Completed in 30 milliseconds