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

  /external/v8/test/cctest/
profiler-extension.h 45 static void StopProfiling(const v8::FunctionCallbackInfo<v8::Value>& args);
profiler-extension.cc 40 "native function stopProfiling();";
47 } else if (name->Equals(v8::String::NewFromUtf8(isolate, "stopProfiling"))) {
49 ProfilerExtension::StopProfiling);
67 void ProfilerExtension::StopProfiling(
70 last_profile = cpu_profiler->StopProfiling((args.Length() > 0)
test-cpu-profiler.cc 226 CpuProfile* profile = profiles->StopProfiling("");
255 profiler->StopProfiling("2");
257 profiler->StopProfiling("");
291 CpuProfile* profile = profiles->StopProfiling("");
314 profiler->StopProfiling("1");
320 profiler->StopProfiling("2");
321 profiler->StopProfiling("1");
358 v8::CpuProfile* p1 = cpu_profiler->StopProfiling(name1);
367 v8::CpuProfile* p2 = cpu_profiler->StopProfiling(name2);
373 v8::CpuProfile* p3 = cpu_profiler->StopProfiling(name3)
    [all...]
test-profile-generator.cc 440 CpuProfile* profile = profiles.StopProfiling("");
503 CpuProfile* profile = profiles.StopProfiling("");
532 CpuProfile* profile = profiles.StopProfiling("");
567 "stopProfiling();");
645 "stopProfiling();\n"));
727 profiler->StopProfiling("LineNumber");
753 "stopProfiling();"));
  /external/v8/src/
cpu-profiler.h 206 CpuProfile* StopProfiling(const char* title);
207 CpuProfile* StopProfiling(String* title);
cpu-profiler.cc 455 CpuProfile* CpuProfiler::StopProfiling(const char* title) {
458 CpuProfile* result = profiles_->StopProfiling(title);
466 CpuProfile* CpuProfiler::StopProfiling(String* title) {
470 return profiles_->StopProfiling(profile_title);
profile-generator.h 262 CpuProfile* StopProfiling(const char* title);
profile-generator.cc 479 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) {
api.cc     [all...]
  /external/v8/include/
v8-profiler.h 160 CpuProfile* StopProfiling(Handle<String> title);
162 /** Deprecated. Use StopProfiling instead. */
163 V8_DEPRECATED("Use StopProfiling",

Completed in 246 milliseconds