• Home
  • Raw
  • Download

Lines Matching refs:DefaultPlatform

41   std::unique_ptr<DefaultPlatform> platform(  in NewDefaultPlatform()
42 new DefaultPlatform(idle_task_support, std::move(tracing_controller))); in NewDefaultPlatform()
60 return static_cast<DefaultPlatform*>(platform)->PumpMessageLoop(isolate, in PumpMessageLoop()
66 static_cast<DefaultPlatform*>(platform)->RunIdleTasks(isolate, in RunIdleTasks()
73 static_cast<DefaultPlatform*>(platform)->SetTracingController( in SetTracingController()
77 const int DefaultPlatform::kMaxThreadPoolSize = 8;
79 DefaultPlatform::DefaultPlatform( in DefaultPlatform() function in v8::platform::DefaultPlatform
94 DefaultPlatform::~DefaultPlatform() { in ~DefaultPlatform()
102 void DefaultPlatform::SetThreadPoolSize(int thread_pool_size) { in SetThreadPoolSize()
112 void DefaultPlatform::EnsureBackgroundTaskRunnerInitialized() { in EnsureBackgroundTaskRunnerInitialized()
129 void DefaultPlatform::SetTimeFunctionForTesting( in SetTimeFunctionForTesting()
130 DefaultPlatform::TimeFunction time_function) { in SetTimeFunctionForTesting()
137 bool DefaultPlatform::PumpMessageLoop(v8::Isolate* isolate, in PumpMessageLoop()
157 void DefaultPlatform::RunIdleTasks(v8::Isolate* isolate, in RunIdleTasks()
179 std::shared_ptr<TaskRunner> DefaultPlatform::GetForegroundTaskRunner( in GetForegroundTaskRunner()
193 void DefaultPlatform::CallOnWorkerThread(std::unique_ptr<Task> task) { in CallOnWorkerThread()
198 void DefaultPlatform::CallDelayedOnWorkerThread(std::unique_ptr<Task> task, in CallDelayedOnWorkerThread()
205 void DefaultPlatform::CallOnForegroundThread(v8::Isolate* isolate, Task* task) { in CallOnForegroundThread()
209 void DefaultPlatform::CallDelayedOnForegroundThread(Isolate* isolate, in CallDelayedOnForegroundThread()
216 void DefaultPlatform::CallIdleOnForegroundThread(Isolate* isolate, in CallIdleOnForegroundThread()
222 bool DefaultPlatform::IdleTasksEnabled(Isolate* isolate) { in IdleTasksEnabled()
226 double DefaultPlatform::MonotonicallyIncreasingTime() { in MonotonicallyIncreasingTime()
231 double DefaultPlatform::CurrentClockTimeMillis() { in CurrentClockTimeMillis()
235 TracingController* DefaultPlatform::GetTracingController() { in GetTracingController()
239 void DefaultPlatform::SetTracingController( in SetTracingController()
245 int DefaultPlatform::NumberOfWorkerThreads() { return thread_pool_size_; } in NumberOfWorkerThreads()
247 Platform::StackTracePrinter DefaultPlatform::GetStackTracePrinter() { in GetStackTracePrinter()
251 v8::PageAllocator* DefaultPlatform::GetPageAllocator() { in GetPageAllocator()