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

  /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.h 16 class Profiler {
29 // Sets the name of the current thread for display in the profiler's UI.
33 DISALLOW_IMPLICIT_CONSTRUCTORS(Profiler);
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) {
  /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);
  /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...]
ProfileGenerator.cpp 36 #include "Profiler.h"
66 m_currentNode = ProfileNode::create(Profiler::createCallIdentifier(exec, function ? function.toThisObject(exec) : 0, sourceURL, lineNumber), m_head.get(), m_head.get());
  /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);
InCallScreen.java 529 Profiler.callScreenOnCreate();
637 Profiler.callScreenCreated();
    [all...]
PhoneApp.java 649 Profiler.callScreenRequested();
    [all...]
  /external/clearsilver/python/examples/base/
profiler.py 37 class Profiler:
67 p = Profiler("SQL", query)
  /external/webkit/JavaScriptCore/jit/
JITCode.h 36 #include "Profiler.h"
79 return JSValue::decode(ctiTrampoline(m_ref.m_code.executableAddress(), registerFile, callFrame, exception, Profiler::enabledProfilerReference(), globalData));
JITStubs.h 53 class Profiler;
96 Profiler** enabledProfilerReference;
132 Profiler** enabledProfilerReference;
164 Profiler** enabledProfilerReference;
188 Profiler** enabledProfilerReference;
241 extern "C" EncodedJSValue ctiTrampoline(void* code, RegisterFile*, CallFrame*, JSValue* exception, Profiler**, JSGlobalData*);
JITStubs.cpp 54 #include "Profiler.h"
350 __declspec(naked) EncodedJSValue ctiTrampoline(void* code, RegisterFile*, CallFrame*, JSValue* exception, Profiler**, JSGlobalData*)
646 __asm EncodedJSValue ctiTrampoline(void*, RegisterFile*, CallFrame*, JSValue*, Profiler**, JSGlobalData*)
697 __declspec(naked) EncodedJSValue ctiTrampoline(void* code, RegisterFile*, CallFrame*, JSValue* exception, Profiler**, JSGlobalData*)
    [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/v8/src/
log.h 69 // tick profiler requires code events, so --prof implies --log-code.
73 class Profiler;
293 // Profiler's sampling interval (in milliseconds).
299 // Emits the profiler's first message.
325 // Emits a profiler tick event. Used by the profiler thread.
336 // Returns whether profiler's sampler is active.
339 // The sampler used by the profiler and the sliding state window.
343 // points to a Profiler, that handles collection
345 static Profiler* profiler_
    [all...]
log.cc 74 // The Profiler samples pc and sp values for the main thread.
79 class Profiler: public Thread {
81 Profiler();
129 // Tells whether profiler is engaged, that is, processing thread is stated.
139 bool Profiler::paused_ = false;
183 // Ticker used to provide ticks to the profiler and the sliding state
212 void SetProfiler(Profiler* profiler) {
213 profiler_ = profiler;
224 Profiler* profiler_
    [all...]
  /external/webkit/JavaScriptCore/
Android.mk 69 profiler/Profile.cpp \
70 profiler/ProfileGenerator.cpp \
71 profiler/ProfileNode.cpp \
72 profiler/Profiler.cpp \
  /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/webkit/JavaScriptCore/runtime/
JSGlobalObject.cpp 62 #include "Profiler.h"
102 Profiler** profiler = Profiler::enabledProfilerReference(); local
103 if (UNLIKELY(*profiler != 0)) {
104 (*profiler)->stopProfiling(globalExec(), UString());

Completed in 262 milliseconds