Home
last modified time | relevance | path

Searched refs:trace (Results 1 – 25 of 362) sorted by relevance

12345678910>>...15

/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_control_string.phpt66 if (!strstr($trace, 'SELECT * FROM test') && !strstr($trace, 'mysql_real_query'))
82 …"[035] Process ID has not been found, first characters from trace are '%s'\n", substr($trace, 0, 8…
86 if (!preg_match("@^[\d]+@ismU", $trace))
87 …45] Line numbers have not been found, first characters from trace are '%s'\n", substr($trace, 0, 8…
93 …"[055] File names seem to be missing, first characters from trace are '%s'\n", substr($trace, 0, 8…
97 if (!preg_match("@^\d+:@ismU", $trace))
98 …65] Nesting level seem to be missing, first characters from trace are '%s'\n", substr($trace, 0, 8…
102 $lines = explode("\n", $trace);
118 $lines = explode("\n", $trace);
208 // m - trace memory allocations
[all …]
H A Dmysqli_debug_append.phpt2 mysqli_debug() - append to trace file
25 …if (true !== ($tmp = mysqli_debug(sprintf('d:t:O,%s/mysqli_debug_phpt.trace', sys_get_temp_dir()))…
33 $trace_file = sprintf('%s/mysqli_debug_phpt.trace', sys_get_temp_dir());
41 // will mysqli_debug() mind if the trace file gets removed?
46 printf("[004] Cannot create trace file to test append mode\n");
50 printf("[005] Cannot write to trace file.\n");
61 $trace = file_get_contents($trace_file);
62 if (!strstr($trace, 'mysqli_debug.phpt test line'))
73 if (!strstr(file_get_contents($trace_file), $trace))
77 // what will happen if we create new trace entries...?
[all …]
H A Dmysqli_debug_mysqlnd_only.phpt73 …$trace_file = sprintf('%s%s%s', sys_get_temp_dir(), DIRECTORY_SEPARATOR, 'mysqli_debug_phpt.trace'…
75 $trace = try_control_string($link, 't:m:O,' . $trace_file, $trace_file, 10);
76 if (!strstr($trace, 'SELECT * FROM test') && !strstr($trace, 'mysql_real_query'))
77 printf("[015] SELECT query cannot be found in trace. Trace contents seems wrong.\n");
79 $lines_trace = explode("\n", $trace);
97 $trace = try_control_string($link, 't:O,' . $trace_file, $trace_file, 20);
98 if (!strstr($trace, 'SELECT * FROM test') && !strstr($trace, 'mysql_real_query'))
99 printf("[025] SELECT query cannot be found in trace. Trace contents seems wrong.\n");
101 $lines_trace = explode("\n", $trace);
H A Dmysqli_debug_ini.phpt2 mysqli_debug() - enabling trace with ini setting
22 if (!$fp = @fopen('/tmp/mysqli_debug_phpt.trace', 'w'))
26 @unlink("/tmp/mysqli_debug_phpt.trace");
29 mysqlnd.debug="t:O,/tmp/mysqli_debug_phpt.trace"
37 $trace_file = '/tmp/mysqli_debug_phpt.trace';
52 string(32) "t:O,/tmp/mysqli_debug_phpt.trace"
H A Dmysqli_debug.phpt26 …if (true !== ($tmp = mysqli_debug(sprintf('d:t:O,%s/mysqli_debug_phpt.trace', sys_get_temp_dir()))…
37 $trace_file = sprintf('%s/mysqli_debug_phpt.trace', sys_get_temp_dir());
45 // will mysqli_debug() mind if the trace file gets removed?
/PHP-5.3/Zend/tests/
H A Dexception_007.phpt22 Stack trace:
26 Stack trace:
30 Stack trace:
34 Stack trace:
H A Dbug28377.phpt7 $trace = debug_backtrace();
8 custom_callback('dereferenced', $trace);
H A Dbug52361.phpt27 Stack trace:
32 Stack trace:
H A Dexception_008.phpt28 Stack trace:
33 Stack trace:
H A Dgc_030.phpt24 Stack trace:
30 Stack trace:
H A Dexception_003.phpt12 Stack trace:
H A Dbug63762.phpt2 Bug #63762 - Sigsegv when Exception::$trace is changed by user
7 $ref = new ReflectionProperty($e, 'trace');
H A Dbug50005.phpt17 Stack trace:
H A Dbug64821.2.phpt17 Stack trace:
H A Dbug64821.3.phpt18 Stack trace:
/PHP-5.3/tests/lang/
H A D038.phpt30 $trace = $e->getTrace();
31 var_dump($trace[0]['function']);
32 var_dump($trace[1]['function']);
/PHP-5.3/ext/com_dotnet/
H A Dcom_wrapper.c72 static inline void trace(char *fmt, ...) in trace() function
99 trace(" PHP Object:%p (name:unknown) %s\n", disp->object, methname); \
140 trace("-- refcount now %d\n", ret); in disp_release()
239 trace("found it\n"); in disp_getdispid()
281 trace("alloc zval for arg %d VT=%08x\n", i, V_VT(arg)); in disp_invokeex()
290 trace("arguments processed, prepare to do some work\n"); in disp_invokeex()
304 trace("function called ok\n"); in disp_invokeex()
317 trace("failed to call func\n"); in disp_invokeex()
321 trace("something blew up\n"); in disp_invokeex()
325 trace("Don't know how to handle this invocation %08x\n", wFlags); in disp_invokeex()
[all …]
/PHP-5.3/ext/pgsql/tests/
H A D80_bug36625.phpt17 $tracefile = dirname(__FILE__) . '/trace.tmp';
35 $trace = file($tracefile);
36 array_walk($trace, 'search_trace_file');
/PHP-5.3/ext/reflection/tests/
H A DReflectionMethod_constructor_error1.phpt69 Stack trace:
74 Stack trace:
79 Stack trace:
84 Stack trace:
89 Stack trace:
94 Stack trace:
99 Stack trace:
/PHP-5.3/Zend/
H A Dzend_exceptions.c136 zval *trace; in zend_default_exception_new_ex() local
145 ALLOC_ZVAL(trace); in zend_default_exception_new_ex()
146 Z_UNSET_ISREF_P(trace); in zend_default_exception_new_ex()
147 Z_SET_REFCOUNT_P(trace, 0); in zend_default_exception_new_ex()
516 zval *trace; in ZEND_METHOD() local
602 zval_ptr_dtor(&trace); in ZEND_METHOD()
603 trace = NULL; in ZEND_METHOD()
609 (trace && Z_STRLEN_P(trace)) ? Z_STRVAL_P(trace) : "#0 {main}\n", in ZEND_METHOD()
614 (trace && Z_STRLEN_P(trace)) ? Z_STRVAL_P(trace) : "#0 {main}\n", in ZEND_METHOD()
624 if (trace) { in ZEND_METHOD()
[all …]
/PHP-5.3/ext/soap/tests/bugs/
H A Dbug29795.phpt26 $client = new LocalSoapClient(dirname(__FILE__)."/bug29795.wsdl",array("trace"=>1));
29 $client = new LocalSoapClient(dirname(__FILE__)."/bug29795.wsdl",array("trace"=>1));
H A Dbug32941.phpt34 $client = new TestSoapClient(dirname(__FILE__).'/bug32941.wsdl', array("trace" => 1, 'exceptions' =…
36 $client = new TestSoapClient(dirname(__FILE__).'/bug32941.wsdl', array("trace" => 1, 'exceptions' =…
/PHP-5.3/ext/spl/tests/
H A Dspl_autoload_012.phpt53 Stack trace:
60 Stack trace:
H A DSplTempFileObject_constructor_error.phpt9 Stack trace:
/PHP-5.3/ext/dom/tests/
H A Ddom003.phpt37 ["trace":"Exception":private]=>
66 Stack trace:

Completed in 30 milliseconds

12345678910>>...15