Home
last modified time | relevance | path

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

12345678910>>...40

/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_control_string.phpt65 if (!strstr($trace, 'SELECT * FROM test') && !strstr($trace, 'mysql_real_query'))
81 …"[035] Process ID has not been found, first characters from trace are '%s'\n", substr($trace, 0, 8…
85 if (!preg_match("@^[\d]+@ismU", $trace))
86 …45] Line numbers have not been found, first characters from trace are '%s'\n", substr($trace, 0, 8…
92 …"[055] File names seem to be missing, first characters from trace are '%s'\n", substr($trace, 0, 8…
96 if (!preg_match("@^\d+:@ismU", $trace))
97 …65] Nesting level seem to be missing, first characters from trace are '%s'\n", substr($trace, 0, 8…
101 $lines = explode("\n", $trace);
117 $lines = explode("\n", $trace);
207 // m - trace memory allocations
[all …]
H A Dmysqli_debug_mysqlnd_only.phpt72 …trace_file = sprintf('%s%s%s', sys_get_temp_dir(), DIRECTORY_SEPARATOR, 'mysqli_debug_phpt.trace');
74 $trace = try_control_string($link, 't:m:O,' . $trace_file, $trace_file, 10);
75 if (!strstr($trace, 'SELECT * FROM test') && !strstr($trace, 'mysql_real_query'))
76 printf("[015] SELECT query cannot be found in trace. Trace contents seems wrong.\n");
78 $lines_trace = explode("\n", $trace);
95 var_dump($trace);
98 $trace = try_control_string($link, 't:O,' . $trace_file, $trace_file, 20);
99 if (!strstr($trace, 'SELECT * FROM test') && !strstr($trace, 'mysql_real_query'))
100 printf("[025] SELECT query cannot be found in trace. Trace contents seems wrong.\n");
102 $lines_trace = explode("\n", $trace);
[all …]
H A Dmysqli_debug_append.phpt2 mysqli_debug() - append to trace file
26 …if (true !== ($tmp = mysqli_debug(sprintf('d:t:O,%s/mysqli_debug_phpt.trace', sys_get_temp_dir()))…
34 $trace_file = sprintf('%s/mysqli_debug_phpt.trace', sys_get_temp_dir());
42 // will mysqli_debug() mind if the trace file gets removed?
47 printf("[004] Cannot create trace file to test append mode\n");
51 printf("[005] Cannot write to trace file.\n");
62 $trace = file_get_contents($trace_file);
63 if (!strstr($trace, 'mysqli_debug.phpt test line'))
74 if (!strstr(file_get_contents($trace_file), $trace))
78 // what will happen if we create new trace entries...?
[all …]
H A Dmysqli_debug_ini.phpt2 mysqli_debug() - enabling trace with ini setting
21 if (!$fp = @fopen('/tmp/mysqli_debug_phpt.trace', 'w'))
25 @unlink("/tmp/mysqli_debug_phpt.trace");
28 mysqlnd.debug="t:O,/tmp/mysqli_debug_phpt.trace"
36 $trace_file = '/tmp/mysqli_debug_phpt.trace';
51 string(32) "t:O,/tmp/mysqli_debug_phpt.trace"
/PHP-8.0/Zend/tests/typehints/
H A Dor_null.phpt223 Stack trace:
227 Stack trace:
231 Stack trace:
235 Stack trace:
239 Stack trace:
243 Stack trace:
247 Stack trace:
251 Stack trace:
255 Stack trace:
259 Stack trace:
[all …]
/PHP-8.0/ext/standard/tests/serialize/
H A Dbug70963.phpt5 var_dump(unserialize('a:2:{i:0;O:9:"exception":1:{s:16:"'."\0".'Exception'."\0".'trace";s:4:"test";…
6 var_dump(unserialize('a:2:{i:0;O:9:"exception":1:{s:16:"'."\0".'Exception'."\0".'trace";s:4:"test";…
9 Fatal error: Uncaught TypeError: Cannot assign string to property Exception::$trace of type array i…
10 Stack trace:
H A Dbug69152.phpt5 $x = unserialize('O:9:"exception":1:{s:16:"'."\0".'Exception'."\0".'trace";s:4:"ryat";}');
12 Fatal error: Uncaught TypeError: Cannot assign string to property Exception::$trace of type array i…
13 Stack trace:
/PHP-8.0/ext/xsl/tests/
H A Dbug49634.phpt55 Stack trace:
60 Stack trace:
65 Stack trace:
70 Stack trace:
75 Stack trace:
80 Stack trace:
85 Stack trace:
90 Stack trace:
95 Stack trace:
100 Stack trace:
/PHP-8.0/Zend/tests/
H A Dexception_007.phpt22 Stack trace:
26 Stack trace:
30 Stack trace:
34 Stack trace:
H A Dexception_025.phpt26 Stack trace:
30 Stack trace:
35 Stack trace:
39 Stack trace:
H A Dbug70944.phpt29 Stack trace:
32 Stack trace:
36 Stack trace:
H A Dexception_017.phpt28 Stack trace:
32 Stack trace:
38 Stack trace:
H A Drope_with_exception.phpt42 Stack trace:
46 Stack trace:
50 Stack trace:
H A Dbug28377.phpt7 $trace = debug_backtrace();
8 custom_callback('dereferenced', $trace);
H A Dthrowable_002.phpt11 Stack trace:
15 Stack trace:
H A Dthrowable_001.phpt11 Stack trace:
15 Stack trace:
/PHP-8.0/ext/pgsql/tests/
H A D80_bug36625.phpt17 $tracefile = __DIR__ . '/trace.tmp';
35 $trace = file($tracefile);
36 array_walk($trace, 'search_trace_file');
46 $tracefile = __DIR__ . '/trace.tmp';
/PHP-8.0/Zend/tests/generators/
H A Dbasic_yield_from_exception_handling.phpt36 Stack trace:
41 Stack trace:
46 Stack trace:
51 Stack trace:
56 Stack trace:
/PHP-8.0/tests/lang/
H A D038.phpt30 $trace = $e->getTrace();
31 var_dump($trace[0]['function']);
32 var_dump($trace[1]['function']);
/PHP-8.0/scripts/dev/
H A Dbless_tests.php171 list($trace, $x, $y) = $this->calculateTrace($old, $new);
172 return $this->extractDiff($trace, $x, $y, $old, $new);
180 $trace = [];
182 $trace[] = $v;
198 return [$trace, $x, $y];
205 private function extractDiff(array $trace, int $x, int $y, array $a, array $b) { argument
207 for ($d = \count($trace) - 1; $d >= 0; $d--) {
208 $v = $trace[$d];
/PHP-8.0/ext/com_dotnet/
H A Dcom_wrapper.c68 static inline void trace(char *fmt, ...) in trace() function
129 trace("-- refcount now %d\n", ret); in disp_release()
228 trace("found it\n"); in disp_getdispid()
269 trace("alloc zval for arg %d VT=%08x\n", i, V_VT(arg)); in disp_invokeex()
275 trace("arguments processed, prepare to do some work\n"); in disp_invokeex()
290 trace("function called ok\n"); in disp_invokeex()
298 trace("percolate modified value for arg %d VT=%08x\n", i, V_VT(dstvar)); in disp_invokeex()
303 trace("failed to call func\n"); in disp_invokeex()
307 trace("something blew up\n"); in disp_invokeex()
311 trace("Don't know how to handle this invocation %08x\n", wFlags); in disp_invokeex()
[all …]
/PHP-8.0/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-8.0/Zend/tests/match/
H A D037.phpt57 Stack trace:
60 Stack trace:
63 Stack trace:
/PHP-8.0/Zend/tests/try/
H A Dtry_finally_026.phpt30 Stack trace:
35 Stack trace:
H A Dtry_finally_027.phpt27 Stack trace:
32 Stack trace:

Completed in 95 milliseconds

12345678910>>...40