HomeSort by relevance Sort by last modified time
    Searched defs:Debug (Results 76 - 100 of 217) sorted by null

1 2 34 5 6 7 8 9

  /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_;
  /hardware/qcom/display/msm8998/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 {
86 Debug();
95 virtual void Debug(DebugTag /*tag*/, const char */*format*/, ...) { }
113 static Debug debug_;
  /hardware/qcom/display/msm8998/sdm/libs/core/drm/
hw_info_drm.cpp 42 #include <utils/debug.h>
82 Debug::Get()->method(kTagNone, "%s", buf);
87 void Debug(const char *format, ...) { PRINTLOG(Debug, format, buf_); }
  /libcore/ojluni/src/main/java/sun/security/util/
Debug.java 38 public class Debug {
44 private Debug(String prefix) {
104 * Get a Debug object corresponding to whether or not the given
108 public static Debug getInstance(String option)
114 * Get a Debug object corresponding to whether or not the given
117 public static Debug getInstance(String option, String prefix)
120 Debug d = new Debug(prefix);
128 * True if the system property "security.debug" contains the
  /packages/apps/Contacts/tests/src/com/android/contacts/
RunMethodInstrumentation.java 22 import android.os.Debug;
63 if (Log.isLoggable(TAG, Log.DEBUG)) {
68 if (arguments.containsKey("debug") && Boolean.parseBoolean(arguments.getString("debug"))) {
69 Debug.waitForDebugger();
76 if (Log.isLoggable(TAG, Log.DEBUG)) {
91 if (Log.isLoggable(TAG, Log.DEBUG)) {
  /prebuilts/go/darwin-x86/src/text/tabwriter/
tabwriter.go 170 Debug
283 if j > 0 && b.flags&Debug != 0 {
521 if ch == '\f' && b.flags&Debug != 0 {
  /prebuilts/go/linux-x86/src/text/tabwriter/
tabwriter.go 170 Debug
283 if j > 0 && b.flags&Debug != 0 {
521 if ch == '\f' && b.flags&Debug != 0 {
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RecurrenceProcessorTest.java 20 import android.os.Debug;
103 Debug.startMethodTracing(fn, 8 * 1024 * 1024);
113 Debug.stopMethodTracing();
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Logger/
Log.py 72 # For DEBUG level (All DEBUG_0~9 are applicable)
89 # String templates for ERROR/WARN/DEBUG log message
99 _DEBUG_MESSAGE_TEMPLATE = '%(file)s(%(line)s): debug: \n %(msg)s'
116 ## Log debug message
118 # @param Level DEBUG level (DEBUG0~9)
119 # @param Message Debug information
122 def Debug(Level, Message, ExtraData=None):
260 # For DEBUG level (All DEBUG_0~9 are applicable)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventSocketProxy.cs 35 namespace Antlr.Runtime.Debug {
46 * A proxy debug event listener that forwards events over a socket to
RemoteDebugEventSocketListener.cs 35 namespace Antlr.Runtime.Debug {
339 Console.Error.WriteLine("unknown debug event: " + line);
490 Console.Error.WriteLine("unknown debug event: " + line);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventSocketProxy.cs 33 namespace Antlr.Runtime.Debug
45 * A proxy debug event listener that forwards events over a socket to
RemoteDebugEventSocketListener.cs 33 namespace Antlr.Runtime.Debug
423 Console.Error.WriteLine( "unknown debug event: " + line );
638 Console.Error.WriteLine( "unknown debug event: " + line );
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
socket.rb 7 module Debug
10 =begin rdoc ANTLR3::Debug::EventSocketProxy
12 A proxy debug event listener that forwards events over a socket to
257 =begin rdoc ANTLR3::Debug::RemoteEventSocketListener
259 A debugging event listener which intercepts debug event messages sent by a EventSocketProxy
359 end # module Debug
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
debug.rb 39 =begin rdoc ANTLR3::Debug
45 module Debug
49 # since there are many components to the debug-mode
51 # are not used simultaneously, debug.rb contains the
52 # base of the debug library and the various listeners
54 autoload :EventSocketProxy, 'antlr3/debug/socket'
55 autoload :RemoteEventSocketListener, 'antlr3/debug/socket'
56 autoload :TraceEventListener, 'antlr3/debug/trace-event-listener'
57 autoload :RecordEventListener, 'antlr3/debug/record-event-listener'
58 autoload :RuleTracer, 'antlr3/debug/rule-tracer
149 def klass.debug? singleton method in class:ANTLR3.Debug.ParserEvents.included
    [all...]
  /external/libvncserver/webclients/novnc/include/
util.js 183 * Logging/debug routines
210 Util.Debug = Util.Info = Util.Warn = Util.Error = function (msg) {};
213 case 'debug':
214 Util.Debug = function (msg) { console.log(msg); };
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.h 48 unsigned Debug:2;
147 int dump; /* Dump the program if Debug == 1? */
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILDeviceInfo.h 52 // Debug mode implies that no hardware features or optimizations
55 Debug = 0x12, // Debug mode is enabled.
  /external/regex-re2/re2/
nfa.cc 54 static const int Debug = 0;
210 if (Debug)
270 if (Debug)
453 if (Debug) {
501 if (Debug) {
591 if (Debug)
611 if (Debug)
689 if (NFA::Debug)
onepass.cc 63 static const int Debug = 0;
451 if (Debug)
473 if (Debug) {
493 if (Debug) {
525 if (Debug) {
539 if (Debug) {
555 if (Debug) { // For debugging, dump one-pass NFA to LOG(ERROR).
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineInstrBuilder.h 36 Debug = 0x80,
69 flags & RegState::Debug));
  /frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
BenchmarkState.java 22 import android.os.Debug;
156 Debug.startMethodTracingSampling(f.getAbsolutePath(), 16 * 1024 * 1024, 100);
174 Debug.stopMethodTracing();
  /frameworks/base/core/java/android/app/
Instrumentation.java 30 import android.os.Debug;
341 Debug.startMethodTracing(file.toString(), 8 * 1024 * 1024);
350 Debug.stopMethodTracing();
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
DiagnosticEngine.h 43 Debug,
  /prebuilts/go/darwin-x86/src/encoding/gob/
debug.go 13 // To enable the Debug function, delete the +build ignore line above and do
30 debugFunc = Debug
164 // Debug prints a human-readable representation of the gob data read from r.
166 func Debug(r io.Reader) {
167 err := debug(r)
169 fmt.Fprintf(os.Stderr, "gob debug: %s\n", err)
173 // debug implements Debug, but catches panics and returns
174 // them as errors to be printed by Debug.
175 func debug(r io.Reader) (err error) func
    [all...]

Completed in 1398 milliseconds

1 2 34 5 6 7 8 9