HomeSort by relevance Sort by last modified time
    Searched refs:StartProfiling (Results 1 - 11 of 11) sorted by null

  /external/v8/test/cctest/
profiler-extension.h 44 static void StartProfiling(const v8::FunctionCallbackInfo<v8::Value>& args);
profiler-extension.cc 39 "native function startProfiling();"
44 if (name->Equals(v8::String::NewFromUtf8(isolate, "startProfiling"))) {
46 ProfilerExtension::StartProfiling);
57 void ProfilerExtension::StartProfiling(
61 cpu_profiler->StartProfiling((args.Length() > 0)
test-cpu-profiler.cc 142 profiles->StartProfiling("", false);
203 profiles->StartProfiling("", false);
254 profiler->StartProfiling("1");
256 profiler->StartProfiling("1");
272 profiles->StartProfiling("", false);
313 profiler->StartProfiling("1");
318 profiler->StartProfiling("1");
319 profiler->StartProfiling("2");
327 profiler->StartProfiling("1");
328 profiler->StartProfiling("2")
    [all...]
test-profile-generator.cc 405 profiles.StartProfiling("", false);
471 profiles.StartProfiling("", true);
519 profiles.StartProfiling("", false);
563 "function c() { startProfiling(); }\n"
580 // startProfiling
593 current = PickChild(current, "startProfiling");
606 CHECK(collection.StartProfiling(title.start(), false));
609 CHECK(!collection.StartProfiling("maximum", false));
639 env->GetIsolate(), "function a() { startProfiling(); }\n"));
658 // startProfiling
    [all...]
test-api.cc 98 cpu_profiler->StartProfiling(profile_name);
    [all...]
  /external/v8/src/
cpu-profiler.h 204 void StartProfiling(const char* title, bool record_samples = false);
205 void StartProfiling(String* title, bool record_samples);
cpu-profiler.cc 413 void CpuProfiler::StartProfiling(const char* title, bool record_samples) {
414 if (profiles_->StartProfiling(title, record_samples)) {
420 void CpuProfiler::StartProfiling(String* title, bool record_samples) {
421 StartProfiling(profiles_->GetName(title), record_samples);
profile-generator.h 261 bool StartProfiling(const char* title, bool record_samples);
profile-generator.cc 458 bool CpuProfilesCollection::StartProfiling(const char* title,
api.cc     [all...]
  /external/v8/include/
v8-profiler.h 149 void StartProfiling(Handle<String> title, bool record_samples = false);
151 /** Deprecated. Use StartProfiling instead. */
152 V8_DEPRECATED("Use StartProfiling",

Completed in 459 milliseconds