Home | History | Annotate | Download | only in libplatform

Lines Matching refs:Platform

10 #include "v8-platform.h"  // NOLINT(build/include)
13 namespace platform {
16 * Returns a new instance of the default v8::Platform implementation.
23 V8_PLATFORM_EXPORT v8::Platform* CreateDefaultPlatform(
31 * not block if no task is pending. The |platform| has to be created using
34 V8_PLATFORM_EXPORT bool PumpMessageLoop(v8::Platform* platform,
41 * This call does not block if no task is pending. The |platform| has to be
44 V8_PLATFORM_EXPORT void RunIdleTasks(v8::Platform* platform,
49 * Attempts to set the tracing controller for the given platform.
51 * The |platform| has to be created using |CreateDefaultPlatform|.
54 v8::Platform* platform,
55 v8::platform::tracing::TracingController* tracing_controller);
57 } // namespace platform