HomeSort by relevance Sort by last modified time
    Searched refs:debug (Results 226 - 250 of 936) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/netperf/
netcpu_pstat.c 79 if(debug) {
171 if(debug) {
186 if(debug) {
202 if(debug) {
215 if(debug) {
268 if (debug) {
281 if (debug) {
288 if (debug) {
netserver.c 144 #define DEBUG_LOG_FILE "/tmp/netperf.debug"
146 #define DEBUG_LOG_FILE "c:\\temp\\netperf.debug"
163 /* perhaps one day we will use this as part of only opening a debug
164 log file if debug is set, of course we have to be wary of the base
174 char FileName[PATH_MAX]; /* for opening the debug log file */
181 perror("netserver: debug file");
200 if (debug) open_debug_file();
211 if (!debug) {
212 debug++;
220 if (debug)
    [all...]
  /external/oprofile/daemon/
Android.mk 33 LOCAL_MODULE_TAGS := debug
  /external/srec/make/asr/
Makefile.config 33 ifeq ($(TARGET_BUILD_TYPE),debug)
34 ASR_BUILD = DEBUG
  /external/webkit/WebKitTools/Scripts/
set-webkit-configuration 39 --debug Set the default configuration to debug
  /hardware/ril/rild/
Android.mk 37 LOCAL_MODULE_TAGS := debug
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
PERF.awk 43 # debug - debug flag
57 else if (gsub("^debug=", "",arg)) { debug = arg }
91 if (debug > 1) {
122 # debug
123 if (debug) { print $0 }
147 # debug
148 if (debug) { print $0 }
  /prebuilt/android-arm/gdbserver/
Android.mk 10 LOCAL_MODULE_TAGS := debug
  /external/v8/test/mjsunit/
debug-constructor.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
35 if (event == Debug.DebugEvent.Break)
42 // Add the debug event listener.
43 Debug.setListener(listener)
    [all...]
debug-evaluate-bool-constructor.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
37 if (event == Debug.DebugEvent.Break) {
38 // Get the debug command processor.
66 // Add the debug event listener.
    [all...]
debug-referenced-by.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
36 var mirror = debug.MakeMirror(a);
97 mirror = debug.MakeMirror(x);
106 mirror = debug.MakeMirror(y)
    [all...]
debug-step-stub-callfunction.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
32 // Simple debug event handler which counts the number of breaks hit and steps.
35 if (event == Debug.DebugEvent.Break) {
39 exec_state.prepareStep(Debug.StepAction.StepIn)
    [all...]
debug-stepin-builtin.js 28 // Flags: --expose-debug-as debug
30 // Get the Debug object exposed from the debug context global object.
31 Debug = debug.Debug
38 // Simple debug event handler which first time will cause 'step in' action
43 if (event == Debug.DebugEvent.Break) {
45 exec_state.prepareStep(Debug.StepAction.StepIn, 2);
    [all...]
debug-stepin-constructor.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
32 // Simple debug event handler which counts the number of breaks hit and steps.
35 if (event == Debug.DebugEvent.Break) {
39 exec_state.prepareStep(Debug.StepAction.StepIn)
    [all...]
debug-stepout-recursive-function.js 28 // Flags: --expose-debug-as debug
29 // Get the Debug object exposed from the debug context global object.
30 Debug = debug.Debug
35 // Simple debug event handler which counts the number of breaks hit and steps.
39 if (event == Debug.DebugEvent.Break) {
43 exec_state.prepareStep(Debug.StepAction.StepOut, step_out_count);
    [all...]
debug-stepout-to-builtin.js 28 // Flags: --expose-debug-as debug
30 // Get the Debug object exposed from the debug context global object.
31 Debug = debug.Debug
38 // Simple debug event handler which first time will cause 'step out' action
43 if (event == Debug.DebugEvent.Break) {
45 exec_state.prepareStep(Debug.StepAction.StepOut, 2);
    [all...]
mirror-number.js 28 // Flags: --expose-debug-as debug
33 var mirror = debug.MakeMirror(n);
34 var serializer = debug.MakeMirrorSerializer();
38 assertTrue(mirror instanceof debug.Mirror);
39 assertTrue(mirror instanceof debug.ValueMirror);
40 assertTrue(mirror instanceof debug.NumberMirror);
mirror-string.js 28 // Flags: --expose-debug-as debug
35 var mirror = debug.MakeMirror(s);
36 var serializer = debug.MakeMirrorSerializer();
40 assertTrue(mirror instanceof debug.Mirror);
41 assertTrue(mirror instanceof debug.ValueMirror);
42 assertTrue(mirror instanceof debug.StringMirror);