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

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/scripts/
debug.in 3 cmake -DCMAKE_BUILD_TYPE=Debug .
  /frameworks/base/core/java/android/os/
Debug.aidl 19 parcelable Debug.MemoryInfo
  /frameworks/base/core/java/com/android/internal/util/
MemInfoReader.java 19 import android.os.Debug;
23 final long[] mInfos = new long[Debug.MEMINFO_COUNT];
31 Debug.getMemInfo(mInfos);
41 return mInfos[Debug.MEMINFO_TOTAL] * 1024;
48 return mInfos[Debug.MEMINFO_FREE] * 1024;
70 return mInfos[Debug.MEMINFO_TOTAL];
77 return mInfos[Debug.MEMINFO_FREE];
85 return mInfos[Debug.MEMINFO_BUFFERS] + mInfos[Debug.MEMINFO_SLAB_RECLAIMABLE]
86 + mInfos[Debug.MEMINFO_CACHED] - mInfos[Debug.MEMINFO_MAPPED]
    [all...]
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
Debug.java 19 public class Debug {
21 public final static boolean DEBUG = false;
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 19 import android.os.Debug;
39 Debug.stopAllocCounting();
40 Debug.resetAllCounts();
44 Debug.printLoadedClasses(Debug.SHOW_FULL_DETAIL);
45 Debug.printLoadedClasses(Debug.SHOW_CLASSLOADER);
46 Debug.printLoadedClasses(Debug.SHOW_INITIALIZED);
56 Debug.startMethodTracing()
    [all...]
Debug_InstructionCountTest.java 20 import android.os.Debug;
27 Debug.InstructionCount instructionCount = new Debug.InstructionCount();
  /hardware/qcom/display/msm8996/sdm/libs/utils/
debug.cpp 31 #include <utils/debug.h>
36 Debug Debug::debug_;
38 Debug::Debug() : debug_handler_(&default_debug_handler_) {
41 int Debug::GetSimulationFlag() {
48 int Debug::GetHDMIResolution() {
55 uint32_t Debug::GetIdleTimeoutMs() {
62 int Debug::GetBootAnimLayerCount() {
69 bool Debug::IsRotatorDownScaleDisabled()
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventListenerConstants.cs 33 namespace Antlr.Runtime.Debug
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventListenerConstants.cs 33 namespace Antlr.Runtime.Debug
  /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...]
  /hardware/qcom/display/msm8998/sdm/libs/utils/
debug.cpp 31 #include <utils/debug.h>
38 Debug Debug::debug_;
40 Debug::Debug() : debug_handler_(&default_debug_handler_) {
43 int Debug::GetSimulationFlag() {
50 int Debug::GetHDMIResolution() {
57 void Debug::GetIdleTimeoutMs(uint32_t *active_ms, uint32_t *inactive_ms) {
68 int Debug::GetBootAnimLayerCount() {
75 bool Debug::IsRotatorDownScaleDisabled()
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
DebugTest.java 19 import android.os.Debug;
38 return Debug.getCaller();
49 return Debug.getCallers(3);
72 Debug.MemoryInfo info = new Debug.MemoryInfo();
73 Debug.getMemoryInfo(-1, info);
  /hardware/qcom/display/msm8909/sdm/libs/utils/
debug.cpp 31 #include <utils/debug.h>
38 Debug Debug::debug_;
40 Debug::Debug() : debug_handler_(&default_debug_handler_) {
43 int Debug::GetSimulationFlag() {
50 int Debug::GetHDMIResolution() {
56 void Debug::GetIdleTimeoutMs(uint32_t *active_ms, uint32_t *inactive_ms) {
67 int Debug::GetBootAnimLayerCount() {
74 bool Debug::IsRotatorDownScaleDisabled()
    [all...]
  /hardware/qcom/display/msm8909w_3100/sdm/libs/utils/
debug.cpp 31 #include <utils/debug.h>
38 Debug Debug::debug_;
40 Debug::Debug() : debug_handler_(&default_debug_handler_) {
43 int Debug::GetSimulationFlag() {
50 int Debug::GetHDMIResolution() {
57 void Debug::GetIdleTimeoutMs(uint32_t *active_ms, uint32_t *inactive_ms) {
68 int Debug::GetBootAnimLayerCount() {
75 bool Debug::IsRotatorDownScaleDisabled()
    [all...]
  /external/ltp/pan/
debug.h 33 /* $Id: debug.h,v 1.1 2000/09/21 21:35:06 alaffin Exp $ */
40 * DEBUG support
46 extern int Debug[];
48 #define DEBUG(a,l) if (Debug[a] >= l)
49 #define DEBUGO(a,l,c) if (Debug[a] >= l || c)
53 #define DEBUG(a,l) if (0)
  /external/libunwind/src/dwarf/
Gstep.c 39 Debug (15, "returning %d\n", ret);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/
CAVLCWriter.java 23 import com.googlecode.mp4parser.h264.Debug;
41 Debug.print(string + "\t");
43 Debug.println("\t" + value);
62 Debug.print(string + "\t");
64 Debug.println("\t" + value);
68 Debug.print(string + "\t");
70 Debug.println("\t" + value);
74 Debug.print(string + "\t");
76 Debug.println("\t" + value);
84 Debug.print(string + "\t")
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowDebugTest.java 6 import android.os.Debug;
16 assertThat(Debug.getNativeHeapAllocatedSize()).isNotNegative();
22 assertThat(Debug.getRuntimeStats()).isNotNull();
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
SunCertPathBuilderResult.java 28 import sun.security.util.Debug;
39 * by the algorithm. It also contains the trust anchor and debug information
52 private static final Debug debug = Debug.getInstance("certpath"); field in class:SunCertPathBuilderResult
65 * @param adjList an Adjacency list containing debug information
  /external/libunwind/src/hppa/
Gstep.c 35 Debug (1, "(cursor=%p, ip=0x%08x)\n", c, (unsigned) c->dwarf.ip);
42 Debug (2, "returning %d\n", ret);
51 Debug (13, "dwarf_step() failed (ret=%d), trying fallback\n", ret);
67 Debug (2, "failed to read IAOQ[1] (ret=%d)\n", ret);
83 Debug (2, "failed to read SP (ret=%d)\n", ret);
94 Debug (2, "returning %d\n", ret);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
PipelinedMsgParser.java 102 * @param debug
106 Pipeline in, boolean debug, int maxMessageSize) {
223 if (Debug.parserDebug)
224 Debug.println("Starting parse!");
234 if (Debug.parserDebug) {
235 Debug.println("Discarding blank line. ");
241 Debug.printStackTrace(ex);
252 Debug.println("Reading Input Stream");
261 Debug.printStackTrace(ex);
275 if (Debug.debug)
    [all...]
  /external/llvm/test/Object/
coff-archive.test 7 CHECKIDX: ??0invalid_argument@std@@QAE@PBD@Z in Debug\mymath.obj
8 CHECKIDX: ??0logic_error@std@@QAE@PBD@Z in Debug\mymath.obj
9 CHECKIDX: ??1invalid_argument@std@@UAE@XZ in Debug\mymath.obj
10 CHECKIDX: ??1logic_error@std@@UAE@XZ in Debug\mymath.obj
11 CHECKIDX: ??_7invalid_argument@std@@6B@ in Debug\mymath.obj
12 CHECKIDX: ??_7logic_error@std@@6B@ in Debug\mymath.obj
13 CHECKIDX: ??_C@_0BC@IHENMCGI@b?5cannot?5be?5zero?$CB?$AA@ in Debug\mymath.obj
14 CHECKIDX: ??_Ginvalid_argument@std@@UAEPAXI@Z in Debug\mymath.obj
15 CHECKIDX: ??_Glogic_error@std@@UAEPAXI@Z in Debug\mymath.obj
16 CHECKIDX: ??_R0?AVexception@std@@@8 in Debug\mymath.ob
    [all...]
  /hardware/qcom/display/msm8909/sdm/include/utils/
debug.h 39 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \
45 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS__)
54 #define DTRACE_BEGIN(custom_string) Debug::Get()->BeginTrace(__CLASS__, __FUNCTION__, custom_string)
55 #define DTRACE_END() Debug::Get()->EndTrace()
56 #define DTRACE_SCOPED() ScopeTracer <Debug> scope_tracer(__CLASS__, __FUNCTION__)
60 class Debug {
88 Debug();
97 virtual void Debug(DebugTag /*tag*/, const char */*format*/, ...) { }
115 static Debug debug_;
  /hardware/qcom/display/msm8909w_3100/sdm/include/utils/
debug.h 38 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \
44 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS__)
53 #define DTRACE_BEGIN(custom_string) Debug::Get()->BeginTrace(__CLASS__, __FUNCTION__, custom_string)
54 #define DTRACE_END() Debug::Get()->EndTrace()
55 #define DTRACE_SCOPED() ScopeTracer <Debug> scope_tracer(__CLASS__, __FUNCTION__)
59 class Debug {
87 Debug();
96 virtual void Debug(DebugTag /*tag*/, const char */*format*/, ...) { }
114 static Debug debug_;
  /hardware/qcom/display/msm8996/sdm/include/utils/
debug.h 38 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \
44 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS__)
53 #define DTRACE_BEGIN(custom_string) Debug::Get()->BeginTrace(__CLASS__, __FUNCTION__, custom_string)
54 #define DTRACE_END() Debug::Get()->EndTrace()
55 #define DTRACE_SCOPED() ScopeTracer <Debug> scope_tracer(__CLASS__, __FUNCTION__)
59 class Debug {
81 Debug();
90 virtual void Debug(DebugTag /*tag*/, const char */*format*/, ...) { }
108 static Debug debug_;

Completed in 745 milliseconds

1 2 3 4 5 6 7 8 91011>>