Searched defs:debug (Results 1 - 25 of 66) sorted by relevance

123

/vbox/src/libs/libxml2-2.6.31/
H A DtestURI.c21 static int debug = 0; variable
35 if (debug) {
90 ((!strcmp(argv[arg], "-debug")) || (!strcmp(argv[arg], "--debug")))) {
92 debug++;
H A DtestRelax.c48 static int debug = 0; variable
64 if ((!strcmp(argv[i], "-debug")) || (!strcmp(argv[i], "--debug")))
65 debug++;
128 if (debug)
169 printf("Usage : %s [--debug] [--noout] schemas XMLfiles ...\n",
173 printf("\t--debug : dump a debug tree of the in-memory document\n");
H A DtestSchemas.c49 static int debug = 0; variable
64 if ((!strcmp(argv[i], "-debug")) || (!strcmp(argv[i], "--debug")))
65 debug++;
119 if (debug)
160 printf("Usage : %s [--debug] [--noout] schemas XMLfiles ...\n",
164 printf("\t--debug : dump a debug tree of the in-memory document\n");
H A DtestReader.c37 static int debug = 0; variable
114 if ((!strcmp(argv[i], "-debug")) || (!strcmp(argv[i], "--debug")))
115 debug++;
H A DtestXPath.c44 static int debug = 0; variable
155 if ((!strcmp(argv[i], "-debug")) || (!strcmp(argv[i], "--debug")))
156 debug++;
198 printf("Usage : %s [--debug] [--copy] stringsorfiles ...\n",
201 printf("\t--debug : dump a debug version of the result\n");
206 printf("\t--expr : debug XPath expressions only\n");
H A Dcheck-relaxng-test-suite.py10 # Memory debug specific
12 debug = 0 variable
270 if debug:
386 # Memory debug specific
H A Dcheck-relaxng-test-suite2.py10 # Memory debug specific
12 debug = 0 variable
84 if debug:
137 if debug:
284 if debug:
410 # Memory debug specific
H A Dcheck-xsddata-test-suite.py10 # Memory debug specific
12 debug = 0 variable
83 if debug:
136 if debug:
282 if debug:
412 # Memory debug specific
H A DtestRegexp.c17 static int debug = 0; variable
261 fprintf(stderr, " --debug: switch on debugging\n");
293 if ((!strcmp(argv[i], "-debug")) || (!strcmp(argv[i], "--debug"))) {
294 debug++;
337 if (debug) {
360 if (debug)
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dappend.c58 PRIntn debug = 0; variable
82 case 'd': /* debug */
83 debug = 1;
97 if (debug) printf("PR_Open() failed for writing: %d\n", PR_GetError());
105 if (debug) printf("PR_Write() failed: %d\n", PR_GetError());
111 if (debug) printf("PR_Seek() failed: %d\n", PR_GetError());
118 if (debug) printf("PR_Close() failed after writing: %d\n", PR_GetError());
125 if (debug) printf("PR_Open() failed for reading: %d\n", PR_GetError());
133 if (debug) printf("PR_Write() failed: %d\n", PR_GetError());
142 if (debug) print
[all...]
H A Denv.c49 PRIntn debug = 0; variable
83 case 'd': /* debug */
84 debug = 1;
106 if (debug) printf("env: Shit! SetEnvironmentVariable() failed\n");
113 if (debug) printf("env: Shit! GetEnvironmentVariable() failed. Found: %s\n", envBuf );
120 if (debug) printf( "env: PR_GetEnv() failed retrieving WinNative. Found: %s\n", value);
132 if (debug) printf( "env: PR_SetEnv() failed setting\n");
140 if (debug) printf( "env: PR_GetEnv() Failed after setting\n" );
154 if (debug) printf("env: PR_SetEnv() un-set using RAW name. Bad!\n" );
160 if (debug) print
[all...]
H A Dop_excl.c58 PRIntn debug = 0; variable
68 printf("-d enables debug messages");
95 case 'd': /* debug */
96 debug = 1;
116 if (debug) fprintf( stderr, "Open exclusive. Expected success, got failure\n");
123 if (debug) fprintf( stderr, "Write after open exclusive failed\n");
130 if (debug) fprintf( stderr, "Close after open exclusive failed\n");
140 if (debug) fprintf( stderr, "Open exclusive. Expected failure, got success\n");
147 if (debug) fprintf( stderr, "PR_Delete() failed\n");
152 if (debug) print
[all...]
H A Dparent.c71 PRFileDesc *debug = NULL; local
85 debug = PR_GetSpecialFD(PR_StandardError);
103 if (NULL != debug) PR_fprintf(debug, "Forking %s\n", child->name);
121 if (NULL != debug)
124 debug, "Child was %sforked\n",
128 debug, "PR_CreateProcess took %lu microseconds\n",
134 if (NULL != debug) PR_fprintf(debug, "Waiting for child to exit\n");
138 if (NULL != debug)
[all...]
H A Dmbcs.c80 PRIntn debug = 0; variable
159 case 'd': /* debug */
160 debug = 1;
184 if (debug) printf("%s\n", (failed_already)? "FAIL" : "PASS");
H A Drandseed.c60 PRIntn debug = 0; variable
129 case 'd': /* debug */
130 debug = 1;
155 if (debug) PrintRand( buf, rSize );
158 if (debug) printf("%s\n", (failed_already)? "FAIL" : "PASS");
H A Dconcur.c96 PRBool debug = PR_FALSE; local
111 case 'd': /* debug mode */
112 debug = PR_TRUE;
132 if (debug)
167 if (debug)
173 if (debug)
H A Dtpd.c59 static PRIntn debug = 0; variable
69 if (debug > 0)
85 if (debug > 0)
322 case 'd': /* debug mode */
323 debug = PR_TRUE;
H A Danonfm.c45 ** -d enable debug mode
77 PRIntn debug = 0; variable
91 printf("-d -- enable debug mode\n");
245 if ( debug )
249 if ( debug )
310 case 'd': /* debug */
311 debug = 1;
338 if ( debug )
H A Ddbmalloc.c46 ** The debug mode will print all of the printfs associated with this test.
93 int debug
96 if( (node_pt)0 != node->prev ) dump(name, node->prev, mf, debug);
97 if( 0 != debug ) printf("[%s]: %6d: %s", name, node->line, node->value);
99 if( (node_pt)0 != node->next ) dump(name, node->next, mf, debug);
119 int debug
196 dump(name, head, mf, debug);
207 int debug = 0; variable
217 extern int nf, debug;
220 n = t2(name, 0, debug);
[all...]
H A Dwritev.c62 PRFileDesc *clientSock, *debug = NULL; local
103 case 'd': /* debug mode */
104 debug = PR_GetSpecialFD(PR_StandardError);
129 if (NULL != debug) PR_fprintf(debug,
149 if (NULL != debug)
150 PR_fprintf(debug, "[%d]socket ... ", loop);
155 if (NULL != debug)
156 PR_fprintf(debug, "connecting ... ");
171 if (NULL != debug) PR_fprint
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddrti.c64 dprintf(int debug, const char *fmt, ...) argument
68 if (debug && !dof_init_debug)
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprvrsion.h77 PRBool debug; /* true if this is a debug component */ member in struct:__anon17204
/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/
H A Dintel_bufmgr_priv.h210 int debug; /**< Enables verbose debugging printouts */ member in struct:_drm_intel_bufmgr
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/tests/
H A Dtpd.cpp83 static PRIntn debug = 0; variable
93 if (debug > 0)
103 if (debug > 0)
124 case 'd': /* debug mode */
125 debug = PR_TRUE;
225 if (debug) PR_fprintf(fout, "Creating thread\n");
227 if (debug) PR_fprintf(fout, "Starting thread\n");
229 if (debug) PR_fprintf(fout, "Joining thread\n");
231 if (debug) PR_fprintf(fout, "Joined thread\n");
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DEdkLogger.py61 _DebugMessageTemplate = '%(file)s(%(line)s): debug: \n %(msg)s'
69 ## Log debug message
75 def debug(Level, Message, ExtraData=None): function

Completed in 69 milliseconds

123