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

1 2

  /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/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);
ScriptProfile.h 31 #include <profiler/Profile.h>
  /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...]
  /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/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...]
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...]
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_;
tickprocessor.js 30 devtools.profiler.Profile.call(this);
35 Profile.prototype = devtools.profiler.Profile.prototype;
61 devtools.profiler.LogReader.call(this, {
77 var op = devtools.profiler.Profile.Operation;
93 inherits(SnapshotLogProcessor, devtools.profiler.LogReader);
132 devtools.profiler.LogReader.call(this, {
164 'profiler': null,
184 var op = devtools.profiler.Profile.Operation;
206 this.viewBuilder_ = new devtools.profiler.ViewBuilder(1);
212 inherits(TickProcessor, devtools.profiler.LogReader)
    [all...]
  /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))
  /external/webkit/JavaScriptCore/profiler/
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;
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...]
  /external/v8/test/mjsunit/tools/
codemap.js 33 return new devtools.profiler.CodeMap.CodeEntry(size, name);
50 var codeMap = new devtools.profiler.CodeMap();
100 var codeMap = new devtools.profiler.CodeMap();
126 var codeMap = new devtools.profiler.CodeMap();
142 var codeMap = new devtools.profiler.CodeMap();
155 var codeMap = new devtools.profiler.CodeMap();
166 var codeMap = new devtools.profiler.CodeMap();
logreader.js 33 var reader = new devtools.profiler.LogReader({});
67 var reader = new devtools.profiler.LogReader({});
76 var reader = new devtools.profiler.LogReader({});
profile_view.js 33 var node = new devtools.profiler.ProfileView.Node(name, time, time, null);
64 var view = new devtools.profiler.ProfileView(root);
  /external/webkit/JavaScriptCore/
Android.mk 69 profiler/Profile.cpp \
70 profiler/ProfileGenerator.cpp \
71 profiler/ProfileNode.cpp \
72 profiler/Profiler.cpp \
  /external/webkit/WebCore/inspector/
JavaScriptProfile.cpp 32 #include <profiler/Profile.h>
JavaScriptProfileNode.cpp 32 #include <profiler/ProfileNode.h>
  /dalvik/vm/mterp/x86-atom/
footer.S 24 * Check to see if the thread needs to be suspended or debugger/profiler
51 jne 3f # debugger or profiler active; switch interp
66 3: # debugger/profiler enabled, bail out
73 * Check to see if the thread needs to be suspended or debugger/profiler
98 jne 3f # debugger or profiler active; switch interp
112 3: # debugger/profiler enabled, bail out
377 jne 3f # debugger or profiler active; switch interp
388 3: # debugger/profiler enabled, bail out
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 56 #include "Profiler.h"
461 if (Profiler* profiler = *Profiler::enabledProfilerReference()) {
463 profiler->didExecute(callFrame, callFrame->callee());
465 profiler->didExecute(callFrame, codeBlock->ownerExecutable()->sourceURL(), codeBlock->ownerExecutable()->lineNo());
541 // the profiler manually that the call instruction has returned, since
543 if (Profiler* profiler = *Profiler::enabledProfilerReference())
610 Profiler** profiler = Profiler::enabledProfilerReference(); local
676 Profiler** profiler = Profiler::enabledProfilerReference(); local
744 Profiler** profiler = Profiler::enabledProfilerReference(); local
838 Profiler** profiler = Profiler::enabledProfilerReference(); local
    [all...]
  /external/v8/
Android.v8common.mk 36 src/heap-profiler.cc \
  /external/chromium/base/
base.scons 453 'profiler.cc',
454 'profiler.h',

Completed in 928 milliseconds

1 2