HomeSort by relevance Sort by last modified time
    Searched defs:Debug (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 23 import android.os.Debug;
32 @TestTargetClass(Debug.class)
39 Debug.stopAllocCounting();
40 Debug.resetAllCounts();
74 Debug.printLoadedClasses(Debug.SHOW_FULL_DETAIL);
75 Debug.printLoadedClasses(Debug.SHOW_CLASSLOADER);
76 Debug.printLoadedClasses(Debug.SHOW_INITIALIZED)
    [all...]
  /external/v8/test/mjsunit/
debug-clearbreakpointgroup.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 var Debug = debug.Debug
32 // Simple function which stores the last debug event.
61 if (event == Debug.DebugEvent.Break) {
62 // Get the debug command processor
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
Debug.java 19 public class Debug {
21 public final static boolean DEBUG = false;
  /external/v8/src/
debug-debugger.js 31 const Debug = {};
38 // Debug events which can occour in the V8 JavaScript engine. These originate
39 // from the API include file debug.h.
40 Debug.DebugEvent = { Break: 1,
48 Debug.ExceptionBreak = { Caught : 0,
52 Debug.StepAction = { StepOut: 0,
59 Debug.ScriptType = { Native: 0,
65 Debug.ScriptCompilationType = { Host: 0,
70 Debug.ScriptBreakPointType = { ScriptId: 0,
92 getValue: function() { return Debug.isBreakOnException(); }
    [all...]
d8.js 62 var mirror = new $debug.ObjectMirror(current);
76 const Debug = {};
79 // Debug events which can occour in the V8 JavaScript engine. These originate
80 // from the API include file v8-debug.h.
81 Debug.DebugEvent = { Break: 1,
89 Debug.ScriptType = { Native: 0,
96 Debug.ScriptCompilationType = { Host: 0,
102 Debug.ScopeType = { Global: 0,
109 // Current debug state.
111 Debug.State =
    [all...]
  /frameworks/base/core/java/android/ddm/
DdmHandleProfiling.java 22 import android.os.Debug;
106 Debug.startMethodTracing(fileName, bufferSize, flags);
120 Debug.stopMethodTracing();
147 Debug.startMethodTracingDdms(bufferSize, flags);
165 Debug.stopMethodTracing();
181 int result = Debug.isMethodTracingActive() ? 1 : 0;
DdmHandleHeap.java 23 import android.os.Debug;
166 Debug.dumpHprofData(fileName);
199 Debug.dumpHprofDataDdms();
  /frameworks/base/tools/preload/loadclass/
LoadClass.java 18 import android.os.Debug;
34 Debug.startAllocCounting();
51 int allocCount = Debug.getGlobalAllocCount();
52 int allocSize = Debug.getGlobalAllocSize();
53 int freedCount = Debug.getGlobalFreedCount();
54 int freedSize = Debug.getGlobalFreedSize();
55 long nativeHeapSize = Debug.getNativeHeapSize();
57 Debug.stopAllocCounting();
62 Debug.MemoryInfo memoryInfo = new Debug.MemoryInfo()
    [all...]
  /frameworks/compile/libbcc/runtime/make/platform/
darwin_fat.mk 7 # example, Debug and Release builds, or builds with and without
26 Configs := Debug Release Profile
43 CFLAGS.Debug := $(CFLAGS) -g
53 OPTIMIZED.Debug := 0
  /external/nist-sip/java/gov/nist/core/
Debug.java 33 * A class to do debug printfs
35 public class Debug {
37 public static boolean debug = false; field in class:Debug
43 Debug.stackLogger = stackLogger;
47 if ((parserDebug || debug )&& stackLogger != null )
51 if ((parserDebug || debug ) && stackLogger != null) {
57 if ((parserDebug || debug) && stackLogger != null ) {
  /external/webkit/Source/WebKit/android/nav/
CachedLayer.h 72 class Debug {
CachedColor.h 77 class Debug {
CachedHistory.h 78 class Debug {
CachedRoot.h 132 class Debug {
CachedFrame.h 261 class Debug {
263 Debug() {
272 ~Debug() { mInUse = false; }
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
AsyncChannelTest.java 19 import android.os.Debug;
36 if (WAIT_FOR_DEBUGGER) Debug.waitForDebugger();
  /packages/apps/Browser/src/com/android/browser/
Performance.java 20 import android.os.Debug;
70 Debug.startMethodTracing(host, 20 * 1024 * 1024);
77 Debug.stopMethodTracing();
  /frameworks/base/core/tests/coretests/src/android/os/
TraceTest.java 19 import android.os.Debug;
41 Debug.startNativeTracing();
47 Debug.stopNativeTracing();
74 Debug.startMethodTracing("traceTest");
76 Debug.stopMethodTracing();
  /packages/apps/Phone/src/com/android/phone/
CallTime.java 20 import android.os.Debug;
218 Debug.startMethodTracing(baseName, 8 * 1024 * 1024);
227 Debug.stopMethodTracing();
  /frameworks/base/core/java/android/os/
PerformanceCollector.java 488 long nativeMax = Debug.getNativeHeapSize() / 1024;
489 long nativeAllocated = Debug.getNativeHeapAllocatedSize() / 1024;
490 long nativeFree = Debug.getNativeHeapFreeSize() / 1024;
492 Debug.MemoryInfo memInfo = new Debug.MemoryInfo();
493 Debug.getMemoryInfo(memInfo);
539 // Before we start trigger a GC and reset the debug counts. Run the
547 Debug.resetAllCounts();
550 Debug.startAllocCounting();
560 Debug.stopAllocCounting()
    [all...]
  /external/v8/include/
v8-debug.h 72 // Debug events which can occur in the V8 JavaScript engine.
84 class EXPORT Debug {
97 * A message object passed to the debug message handler.
117 * debugger event that started the debug message loop.
128 * Get the context active when the debug event happened. Note this is not
136 * client_data data value passed into Debug::SendCommand along with the
148 * An event details object passed to the debug event listener.
158 * Access to execution state and event data of the debug event. Don't store
165 * Get the context active when the debug event happened. Note this is not
188 * Debug event callback function
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactAggregatorPerformanceTest.java 22 import android.os.Debug;
104 Debug.startMethodTracing("aggregation");
111 Debug.stopMethodTracing();
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 24 import android.os.Debug;
266 Debug.startAllocCounting();
286 if (Debug.getGlobalAllocSize() > PRELOAD_GC_THRESHOLD) {
289 " GC at " + Debug.getGlobalAllocSize());
293 Debug.resetGlobalAllocSize();
319 Debug.stopAllocCounting();
338 Debug.startAllocCounting();
365 Debug.stopAllocCounting();
372 if (Debug.getGlobalAllocSize() > PRELOAD_GC_THRESHOLD) {
374 Log.v(TAG, " GC at " + Debug.getGlobalAllocSize())
    [all...]
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon/
RecurrenceProcessorTest.java 20 import android.os.Debug;
103 Debug.startMethodTracing(fn, 8 * 1024 * 1024);
113 Debug.stopMethodTracing();
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 36 Debug = 0x80,
69 flags & RegState::Debug));

Completed in 522 milliseconds

1 2 3 4