| /PHP_5_4/ext/spl/ |
| H A D | spl.php | 275 /** The stack trace */ 276 private $trace; variable 294 $this->trace = debug_backtrace(); variable 326 /** @return the stack trace as array 330 return $this->trace; 333 /** @return the stack trace as string
|
| /PHP_5_4/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 9446 void *pTraceArg; /* Argument to the trace function */ 9526 #define SQLITE_VdbeTrace 0x00000100 /* True to trace VDBE execution */ 12805 FILE *trace; /* Write an execution trace here, if not NULL */ member in struct:Vdbe 17082 int trace; /* True to trace changes */ member in struct:sqlite3_mutex 17253 printf("%s mutex %p (%d) with nRef=%ld\n", pAction, (void*)p, p->trace, ulCount); 17272 if( p->trace ) os2MutexTrace(p, "enter"); 17281 if( p->trace ) os2MutexTrace(p, "try"); 17297 if( p->trace ) os2MutexTrac 17370 int trace; /* True to trace changes */ member in struct:sqlite3_mutex 17707 int trace; /* True to trace changes */ member in struct:sqlite3_mutex 57645 sqlite3VdbeTrace(Vdbe *p, FILE *trace) argument 77536 FILE *trace = (db->flags & SQLITE_VdbeTrace)!=0 ? stdout : 0; local [all...] |
| H A D | sqlite3ext.h | 133 void * (*trace)(sqlite3*,void(*xTrace)(void*,const char*),void*); member in struct:sqlite3_api_routines 336 #define sqlite3_trace sqlite3_api->trace
|
| /PHP_5_4/ext/com_dotnet/ |
| H A D | com_wrapper.c | 71 /* {{{ trace */ 72 static inline void trace(char *fmt, ...) function 93 trace(" PHP Object:%p (name:unknown) %s\n", disp->object, methname); \ 95 trace(" PHP Object:%p (name:%s) %s\n", disp->object, Z_OBJCE_P(disp->object)->name, methname); \ 134 trace("-- refcount now %d\n", ret); 229 trace("Looking for %s, namelen=%d in %p\n", name, namelen, disp->name_to_dispid); 233 trace("found it\n"); 263 trace("-- Invoke: %d %20s [%d] flags=%08x args=%d\n", id, Z_STRVAL_PP(name), Z_STRLEN_PP(name), wFlags, pdp->cArgs); 275 trace("alloc zval for arg %d VT=%08x\n", i, V_VT(arg)); 284 trace("argument [all...] |
| /PHP_5_4/ext/soap/ |
| H A D | php_http.c | 282 zval **trace, **tmp; local 787 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "trace", sizeof("trace"), (void **) &trace) == SUCCESS && 788 Z_LVAL_PP(trace) > 0) { 832 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "trace", sizeof("trace"), (void **) &trace) == SUCCESS && 833 Z_LVAL_PP(trace) > 0) {
|
| H A D | soap.c | 893 zval *faultcode, *faultstring, *file, *line, *trace; local 915 fci.retval_ptr_ptr = &trace; 922 len = spprintf(&str, 0, "SoapFault exception: [%s] %s in %s:%ld\nStack trace:\n%s", 924 Z_STRLEN_P(trace) ? Z_STRVAL_P(trace) : "#0 {main}\n"); 926 zval_ptr_dtor(&trace); 2420 if (zend_hash_find(ht, "trace", sizeof("trace"), (void**)&tmp) == SUCCESS && 2423 add_property_long(this_ptr, "trace", 1); 2540 zval **trace; local 2616 zval **trace; local [all...] |
| /PHP_5_4/ext/mysqlnd/ |
| H A D | mysqlnd_bt.c | 450 zval *trace; local 457 MAKE_STD_ZVAL(trace); 458 zend_fetch_debug_backtrace(trace, 0, 0, 0 TSRMLS_CC); 460 zend_hash_apply_with_arguments(Z_ARRVAL_P(trace) TSRMLS_CC, (apply_func_args_t)mysqlnd_build_trace_string, 4, &max_levels, str, len, &num); 461 zval_ptr_dtor(&trace);
|
| /PHP_5_4/Zend/ |
| H A D | zend_exceptions.c | 151 zval *trace; local 158 ALLOC_ZVAL(trace); 159 Z_UNSET_ISREF_P(trace); 160 Z_SET_REFCOUNT_P(trace, 0); 161 zend_fetch_debug_backtrace(trace, skip_top_traces, 0, 0 TSRMLS_CC); 165 zend_update_property(default_exception_ce, &obj, "trace", sizeof("trace")-1, trace TSRMLS_CC); 318 Get the stack trace for the location in which the exception occurred */ 323 _default_exception_get_entry(getThis(), "trace", sizeo 529 zval *trace; local 579 zval message, file, line, *trace, *exception; local [all...] |