HomeSort by relevance Sort by last modified time
    Searched full:profiler (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /external/webkit/JavaScriptGlue/ForwardingHeaders/profiler/
Profiler.h 1 #include <JavaScriptCore/Profiler.h>
  /external/webkit/WebCore/ForwardingHeaders/profiler/
Profiler.h 3 #include <JavaScriptCore/Profiler.h>
  /external/chromium/base/
profiler.cc 5 #include "base/profiler.h"
13 // instead of profiler.h
20 void Profiler::StartRecording() {
26 void Profiler::StopRecording() {
32 void Profiler::ClearData() {
38 void Profiler::SetThreadName(const char *name) {
profiler.h 16 class Profiler {
29 // Sets the name of the current thread for display in the profiler's UI.
33 DISALLOW_IMPLICIT_CONSTRUCTORS(Profiler);
  /external/webkit/WebKit/chromium/src/js/
ProfilerProcessor.js 32 * @fileoverview Profiler processor is used to process log file produced
39 * Creates a Profile View builder object compatible with WebKit Profiler UI.
41 * @param {number} samplingRate Number of ms between profiler ticks.
44 devtools.profiler.WebKitViewBuilder = function(samplingRate)
46 devtools.profiler.ViewBuilder.call(this, samplingRate);
48 devtools.profiler.WebKitViewBuilder.prototype.__proto__ = devtools.profiler.ViewBuilder.prototype;
54 devtools.profiler.WebKitViewBuilder.prototype.createViewNode = function(funcName, totalTime, selfTime, head)
56 return new devtools.profiler.WebKitViewNode(funcName, totalTime, selfTime, head);
61 * Constructs a Profile View node object for displaying in WebKit Profiler UI
    [all...]
ProfilerAgent.js 32 * @fileoverview Provides communication interface to remote v8 profiler.
44 * Active profiler modules flags.
50 * Interval for polling profiler state.
56 * Profiler log position.
74 * Profiler processor instance.
75 * @type {devtools.profiler.Processor}
77 this._profilerProcessor = new devtools.profiler.Processor();
191 * Handles current profiler status.
210 * Handles a portion of a profiler log retrieved by getLogLines call.
212 * @param {string} log A portion of profiler log
    [all...]
  /external/webkit/JavaScriptCore/API/
JSProfilerPrivate.cpp 31 #include "Profiler.h"
37 Profiler::profiler()->startProfiling(toJS(ctx), title->ustring());
43 Profiler* profiler = Profiler::profiler(); local
44 profiler->stopProfiling(exec, title->ustring());
  /external/v8/tools/
codemap.js 31 devtools.profiler = devtools.profiler || {};
39 devtools.profiler.CodeMap = function() {
48 this.dynamicsNameGen_ = new devtools.profiler.CodeMap.NameGenerator();
70 devtools.profiler.CodeMap.PAGE_ALIGNMENT = 12;
76 devtools.profiler.CodeMap.PAGE_SIZE =
77 1 << devtools.profiler.CodeMap.PAGE_ALIGNMENT;
84 * @param {devtools.profiler.CodeMap.CodeEntry} codeEntry Code entry object.
86 devtools.profiler.CodeMap.prototype.addCode = function(start, codeEntry) {
98 devtools.profiler.CodeMap.prototype.moveCode = function(from, to)
    [all...]
profile_view.js 31 devtools.profiler = devtools.profiler || {};
37 * @param {number} samplingRate Number of ms between profiler ticks.
40 devtools.profiler.ViewBuilder = function(samplingRate) {
48 * @param {devtools.profiler.CallTree} callTree A call tree.
52 devtools.profiler.ViewBuilder.prototype.buildView = function(
83 * @param {devtools.profiler.ProfileView.Node} head View head node.
84 * @return {devtools.profiler.ProfileView} Profile view.
86 devtools.profiler.ViewBuilder.prototype.createView = function(head) {
87 return new devtools.profiler.ProfileView(head)
    [all...]
profile.js 31 devtools.profiler = devtools.profiler || {};
40 devtools.profiler.Profile = function() {
41 this.codeMap_ = new devtools.profiler.CodeMap();
42 this.topDownTree_ = new devtools.profiler.CallTree();
43 this.bottomUpTree_ = new devtools.profiler.CallTree();
47 * Version of profiler log.
49 devtools.profiler.Profile.VERSION = 2;
58 devtools.profiler.Profile.prototype.skipThisFunction = function(name) {
64 * Enum for profiler operations that involve looking up existin
    [all...]
csvparser.js 31 devtools.profiler = devtools.profiler || {};
37 devtools.profiler.CsvParser = function() {
45 devtools.profiler.CsvParser.CSV_FIELD_RE_ = /^"((?:[^"]|"")*)"|([^,]*)/;
52 devtools.profiler.CsvParser.DOUBLE_QUOTE_RE_ = /""/g;
60 devtools.profiler.CsvParser.prototype.parseLine = function(line) {
61 var fieldRe = devtools.profiler.CsvParser.CSV_FIELD_RE_;
62 var doubleQuoteRe = devtools.profiler.CsvParser.DOUBLE_QUOTE_RE_;
logreader.js 34 devtools.profiler = devtools.profiler || {};
44 devtools.profiler.LogReader = function(dispatchTable) {
88 * @type {devtools.profiler.CsvParser}
90 this.csvParser_ = new devtools.profiler.CsvParser();
100 devtools.profiler.LogReader.prototype.createAddressParser = function(
125 devtools.profiler.LogReader.prototype.expandAlias = function(symbol) {
135 devtools.profiler.LogReader.prototype.printError = function(str) {
141 * Processes a portion of V8 profiler event log.
145 devtools.profiler.LogReader.prototype.processLogChunk = function(chunk)
    [all...]
  /external/webkit/WebCore/bindings/js/
ScriptProfiler.cpp 33 #include <profiler/Profiler.h>
39 JSC::Profiler::profiler()->startProfiling(state, title);
44 return JSC::Profiler::profiler()->stopProfiling(state, title);
  /dalvik/vm/mterp/c/
OP_INVOKE_DIRECT_EMPTY.c 8 FINISH(3); // don't want it to show up in profiler output
  /external/webkit/JavaScriptCore/profiler/
Profiler.cpp 30 #include "Profiler.h"
51 Profiler* Profiler::s_sharedProfiler = 0;
52 Profiler* Profiler::s_sharedEnabledProfilerReference = 0;
54 Profiler* Profiler::profiler() function in class:JSC::Profiler
57 s_sharedProfiler = new Profiler();
61 void Profiler::startProfiling(ExecState* exec, const UString& title
    [all...]
Profiler.h 47 class Profiler : public FastAllocBase {
49 static Profiler** enabledProfilerReference()
54 static Profiler* profiler();
69 static Profiler* s_sharedProfiler;
70 static Profiler* s_sharedEnabledProfilerReference;
  /external/webkit/WebKit/chromium/src/
ProfilerAgent.h 38 // Profiler agent provides API for retrieving profiler data.
39 // These methods are handled on the IO thread, so profiler can
42 /* Requests current profiler state. */ \
45 /* Retrieves portion of profiler log. */ \
  /libcore/dalvik/src/test/java/dalvik/system/
SamplingProfilerTest.java 30 SamplingProfiler profiler = new SamplingProfiler(12, threadSet); local
31 profiler.start(10);
33 profiler.stop();
34 profiler.shutdown();
35 profiler.writeHprofData(System.out);
  /external/v8/test/mjsunit/tools/
tickprocessor-test-func-info.log 4 profiler,"begin",1
13 profiler,"end"
tickprocessor-test.log 4 profiler,"begin",1
25 profiler,"end"
  /external/clearsilver/python/examples/trans/
db_trans.py 4 import profiler namespace
62 self._cursor = profiler.ProfilerCursor(self.db.cursor())
77 if debug: p = profiler.Profiler("SQL", "Connect -- %s:trans" % (host))
  /packages/apps/Phone/src/com/android/phone/
Profiler.java 28 public class Profiler {
35 // Profiler.PROFILE first, so the method calls will get optimized out
51 private Profiler() {
124 Log.d(LOG_TAG, "[Profiler] " + msg);
  /libcore/dalvik/src/main/java/dalvik/system/
SamplingProfiler.java 39 * A sampling profiler. It currently is implemented without any
56 * SamplingProfiler profiler = new SamplingProfiler(12, threadSet);
57 * profiler.start(10);
59 * profiler.stop();
61 * profiler.start(10);
63 * profiler.stop();
64 * profiler.shutdown();
65 * profiler.writeHprofData(System.out);
100 * Timer that is used for the lifetime of the profiler
124 * Create a sampling profiler that collects stacks with th
    [all...]
  /external/webkit/JavaScriptCore/
JavaScriptCore.pri 18 MMP_RULES += "USERINCLUDE ../JavaScriptCore/profiler"
32 $$PWD/profiler \
115 profiler/Profile.cpp \
116 profiler/ProfileGenerator.cpp \
117 profiler/ProfileNode.cpp \
118 profiler/Profiler.cpp \
  /external/webkit/WebCore/manual-tests/inspector/
profiler-test-call.html 3 <script src="resources/profiler-test-JS-resources.js"></script>

Completed in 336 milliseconds

1 2 3 4 5 6 7 8