• Home
  • Raw
  • Download

Lines Matching refs:V8

78           i::V8::FatalProcessOutOfMemory(NULL);                                \
129 void i::V8::FatalProcessOutOfMemory(const char* location) { in FatalProcessOutOfMemory()
172 i::V8::SetFatalError(); in FatalProcessOutOfMemory()
183 void V8::SetFatalErrorHandler(FatalErrorCallback that) { in SetFatalErrorHandler()
191 i::V8::SetFatalError(); in ReportApiFailure()
196 bool V8::IsDead() { in IsDead()
197 return i::V8::IsDead(); in IsDead()
235 return !i::V8::IsRunning() in IsDeadCheck()
236 && i::V8::IsDead() ? ReportV8Dead(location) : false; in IsDeadCheck()
256 if (i::V8::IsRunning()) { in EnsureInitialized()
262 return ApiCheck(v8::V8::Initialize(), location, "Error initializing V8"); in EnsureInitialized()
304 void V8::SetFlagsFromString(const char* str, int length) { in SetFlagsFromString()
309 void V8::SetFlagsFromCommandLine(int* argc, char** argv, bool remove_flags) { in SetFlagsFromCommandLine()
403 i::Object** V8::GlobalizeReference(i::Object** obj) { in GlobalizeReference()
412 void V8::MakeWeak(i::Object** object, void* parameters, in MakeWeak()
419 void V8::ClearWeak(i::Object** obj) { in ClearWeak()
425 bool V8::IsGlobalNearDeath(i::Object** obj) { in IsGlobalNearDeath()
427 if (!i::V8::IsRunning()) return false; in IsGlobalNearDeath()
432 bool V8::IsGlobalWeak(i::Object** obj) { in IsGlobalWeak()
434 if (!i::V8::IsRunning()) return false; in IsGlobalWeak()
439 void V8::DisposeGlobal(i::Object** obj) { in DisposeGlobal()
441 if (!i::V8::IsRunning()) return; in DisposeGlobal()
484 if (!i::V8::IsRunning()) return; in Exit()
2297 hash_value = i::V8::Random() & i::Smi::kMaxValue; in GetIdentityHash()
2793 bool v8::V8::Initialize() { in Initialize()
2794 if (i::V8::IsRunning()) return true; in Initialize()
2798 return i::V8::Initialize(NULL); in Initialize()
2802 bool v8::V8::Dispose() { in Dispose()
2803 i::V8::TearDown(); in Dispose()
2811 void v8::V8::GetHeapStatistics(HeapStatistics* heap_statistics) { in GetHeapStatistics()
2817 bool v8::V8::IdleNotification() { in IdleNotification()
2820 if (!i::V8::IsRunning()) return true; in IdleNotification()
2821 return i::V8::IdleNotification(); in IdleNotification()
2825 void v8::V8::LowMemoryNotification() { in LowMemoryNotification()
2826 if (!i::V8::IsRunning()) return; in LowMemoryNotification()
2831 const char* v8::V8::GetVersion() { in GetVersion()
3396 void V8::IgnoreOutOfMemoryException() { in IgnoreOutOfMemoryException()
3401 bool V8::AddMessageListener(MessageCallback that, Handle<Value> data) { in AddMessageListener()
3417 void V8::RemoveMessageListeners(MessageCallback that) { in RemoveMessageListeners()
3435 void V8::SetCounterFunction(CounterLookupCallback callback) { in SetCounterFunction()
3440 void V8::SetCreateHistogramFunction(CreateHistogramCallback callback) { in SetCreateHistogramFunction()
3445 void V8::SetAddHistogramSampleFunction(AddHistogramSampleCallback callback) { in SetAddHistogramSampleFunction()
3450 void V8::EnableSlidingStateWindow() { in EnableSlidingStateWindow()
3456 void V8::SetFailedAccessCheckCallbackFunction( in SetFailedAccessCheckCallbackFunction()
3463 void V8::AddObjectGroup(Persistent<Value>* objects, size_t length) { in AddObjectGroup()
3470 int V8::AdjustAmountOfExternalAllocatedMemory(int change_in_bytes) { in AdjustAmountOfExternalAllocatedMemory()
3476 void V8::SetGlobalGCPrologueCallback(GCCallback callback) { in SetGlobalGCPrologueCallback()
3482 void V8::SetGlobalGCEpilogueCallback(GCCallback callback) { in SetGlobalGCEpilogueCallback()
3488 void V8::PauseProfiler() { in PauseProfiler()
3495 void V8::ResumeProfiler() { in ResumeProfiler()
3502 bool V8::IsProfilerPaused() { in IsProfilerPaused()
3511 void V8::ResumeProfilerEx(int flags, int tag) { in ResumeProfilerEx()
3531 void V8::PauseProfilerEx(int flags, int tag) { in PauseProfilerEx()
3538 int V8::GetActiveProfilerModules() { in GetActiveProfilerModules()
3547 int V8::GetLogLines(int from_pos, char* dest_buf, int max_size) { in GetLogLines()
3555 int V8::GetCurrentThreadId() { in GetCurrentThreadId()
3562 void V8::TerminateExecution(int thread_id) { in TerminateExecution()
3563 if (!i::V8::IsRunning()) return; in TerminateExecution()
3576 void V8::TerminateExecution() { in TerminateExecution()
3577 if (!i::V8::IsRunning()) return; in TerminateExecution()
3766 if (!i::V8::IsRunning()) return; in DebugBreak()
3808 if (!i::V8::IsRunning()) return; in SendCommand()
3832 if (!i::V8::IsRunning()) return Local<Value>(); in Call()
3852 if (!i::V8::IsRunning()) return Local<Value>(); in GetMirror()