Home
last modified time | relevance | path

Searched refs:DefaultPlatform (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/libplatform/
Ddefault-platform.cc21 DefaultPlatform* platform = new DefaultPlatform(); in CreateDefaultPlatform()
29 return reinterpret_cast<DefaultPlatform*>(platform)->PumpMessageLoop(isolate); in PumpMessageLoop()
33 const int DefaultPlatform::kMaxThreadPoolSize = 4;
36 DefaultPlatform::DefaultPlatform() in DefaultPlatform() function in v8::platform::DefaultPlatform
40 DefaultPlatform::~DefaultPlatform() { in ~DefaultPlatform()
65 void DefaultPlatform::SetThreadPoolSize(int thread_pool_size) { in SetThreadPoolSize()
76 void DefaultPlatform::EnsureInitialized() { in EnsureInitialized()
86 Task* DefaultPlatform::PopTaskInMainThreadQueue(v8::Isolate* isolate) { in PopTaskInMainThreadQueue()
97 Task* DefaultPlatform::PopTaskInMainThreadDelayedQueue(v8::Isolate* isolate) { in PopTaskInMainThreadDelayedQueue()
112 bool DefaultPlatform::PumpMessageLoop(v8::Isolate* isolate) { in PumpMessageLoop()
[all …]
Ddefault-platform.h25 class DefaultPlatform : public Platform {
27 DefaultPlatform();
28 virtual ~DefaultPlatform();
76 DISALLOW_COPY_AND_ASSIGN(DefaultPlatform);
/external/v8/test/unittests/libplatform/
Ddefault-platform-unittest.cc23 class DefaultPlatformWithMockTime : public DefaultPlatform {
42 DefaultPlatform platform; in TEST()