/PHP-5.5/Zend/ |
H A D | zend_dtrace.c | 49 int lineno; in dtrace_execute_ex() local 57 lineno = zend_get_executed_lineno(TSRMLS_C); in dtrace_execute_ex() 66 DTRACE_EXECUTE_ENTRY((char *)filename, lineno); in dtrace_execute_ex() 70 …DTRACE_FUNCTION_ENTRY((char *)funcname, (char *)filename, lineno, (char *)classname, (char *)scope… in dtrace_execute_ex() 76 …DTRACE_FUNCTION_RETURN((char *)funcname, (char *)filename, lineno, (char *)classname, (char *)scop… in dtrace_execute_ex() 80 DTRACE_EXECUTE_RETURN((char *)filename, lineno); in dtrace_execute_ex() 86 int lineno; in dtrace_execute_internal() local 90 lineno = zend_get_executed_lineno(TSRMLS_C); in dtrace_execute_internal() 94 DTRACE_EXECUTE_ENTRY((char *)filename, lineno); in dtrace_execute_internal() 100 DTRACE_EXECUTE_RETURN((char *)filename, lineno); in dtrace_execute_internal()
|
H A D | zend_dtrace.d | 28 probe error(char *errormsg, char *request_file, int lineno); 29 probe execute__entry(char* request_file, int lineno); 30 probe execute__return(char* request_file, int lineno); 31 …probe function__entry(char* function_name, char* request_file, int lineno, char* classname, char* … 32 …probe function__return(char* function_name, char* request_file, int lineno, char* classname, char*…
|
H A D | zend_vm_gen.php | 500 out($f, "#line $lineno \"$definition_file\"\n"); 535 out($f, "#line $lineno \"$definition_file\"\n"); 731 foreach ($list as $lineno => $dsc) { 759 foreach ($list as $lineno => $dsc) { 808 $lineno = 0; 1053 $lineno = 0; 1060 ++$lineno; 1091 $list[$lineno] = array("handler"=>$handler); 1108 $list[$lineno] = array("helper"=>$helper); 1130 $list[$lineno] = array("helper"=>$helper); [all …]
|
H A D | zend_ini_scanner.l | 180 SCNG(lineno) = 1; in init_ini_scanner() 212 return SCNG(lineno); in zend_ini_scanner_get_lineno() 303 SCNG(lineno)++; in zend_ini_escape_string() 379 SCNG(lineno)++; 491 SCNG(lineno)++; 581 SCNG(lineno)++; 587 SCNG(lineno)++; 592 … with '#' are deprecated in %s on line %d", zend_ini_scanner_get_filename(TSRMLS_C), SCNG(lineno)); 594 SCNG(lineno)++;
|
H A D | zend_language_scanner.h | 37 uint lineno; member
|
H A D | zend_exceptions.c | 253 long code = 0, severity = E_ERROR, lineno; in ZEND_METHOD() local 257 …!", &message, &message_len, &code, &severity, &filename, &filename_len, &lineno, &previous, defaul… in ZEND_METHOD() 280 lineno = 0; /* invalidate lineno */ in ZEND_METHOD() 282 …zend_update_property_long(default_exception_ce, object, "line", sizeof("line")-1, lineno TSRMLS_CC… in ZEND_METHOD() 775 ZEND_ARG_INFO(0, lineno) 874 static void zend_error_va(int type, const char *file, uint lineno, const char *format, ...) /* {{{ … in zend_error_va() argument 879 zend_error_cb(type, file, lineno, format, args); in zend_error_va()
|
H A D | zend_opcode.c | 423 op->lineno = CG(zend_lineno); in init_op() 475 opline->lineno = (opline+1)->lineno; in zend_update_extended_info() 503 CG(zend_lineno) = op_array->opcodes[op_num].lineno; in zend_check_finally_breakout() 511 CG(zend_lineno) = op_array->opcodes[op_num].lineno; in zend_check_finally_breakout() 781 CG(zend_lineno) = opline->lineno; in pass_two()
|
H A D | zend_builtin_functions.c | 2063 int lineno, frameno = 0; in ZEND_FUNCTION() local 2103 lineno = skip->opline->lineno; in ZEND_FUNCTION() 2106 lineno = 0; in ZEND_FUNCTION() 2197 zend_printf(") called at [%s:%d]\n", filename, lineno); in ZEND_FUNCTION() 2208 zend_printf(") called at [%s:%d]\n", prev->op_array->filename, prev->opline->lineno); in ZEND_FUNCTION() 2231 int lineno, frameno = 0; in zend_fetch_debug_backtrace() local 2270 lineno = skip->opline->lineno; in zend_fetch_debug_backtrace() 2272 add_assoc_long_ex(stack_frame, "line", sizeof("line"), lineno); in zend_fetch_debug_backtrace() 2289 add_assoc_long_ex(stack_frame, "line", sizeof("line"), prev->opline->lineno); in zend_fetch_debug_backtrace()
|
H A D | zend_ini_scanner.c | 182 SCNG(lineno) = 1; in init_ini_scanner() 305 SCNG(lineno)++; in zend_ini_escape_string() 498 SCNG(lineno)++; in ini_lex() 932 SCNG(lineno)++; in ini_lex() 1018 SCNG(lineno)++; in ini_lex() 1966 SCNG(lineno)++; in ini_lex() 2000 SCNG(lineno)++; in ini_lex() 2123 SCNG(lineno)++; in ini_lex() 2399 SCNG(lineno)++; in ini_lex() 2956 SCNG(lineno)++; in ini_lex() [all …]
|
H A D | zend_globals.h | 277 int lineno; member
|
H A D | zend_alloc.c | 348 uint lineno; member 577 ((zend_mm_block*)(block))->debug.lineno = __zend_lineno; \ 1258 if (p->debug.filename==b->debug.filename && p->debug.lineno==b->debug.lineno) { in zend_mm_find_leaks() 1302 leak.lineno = p->debug.lineno; in zend_mm_check_leaks() 1438 …utput("OK (allocated on %s:%d, %d bytes)\n", p->debug.filename, p->debug.lineno, (int)p->debug.siz… in zend_mm_check_ptr() 1748 uint lineno, in zend_mm_safe_error() argument 1765 error_lineno = EG(opline_ptr)?(*EG(opline_ptr))->lineno:0; in zend_mm_safe_error() 1780 lineno, in zend_mm_safe_error() 1791 lineno, in zend_mm_safe_error()
|
H A D | zend.c | 873 ZEND_API void _zend_bailout(char *filename, uint lineno) /* {{{ */ in BEGIN_EXTERN_C() 878 zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!", filename, lineno); in BEGIN_EXTERN_C() 1054 active_opline->lineno = error_lineno; in zend_error()
|
H A D | zend_alloc.h | 48 uint lineno; member
|
H A D | zend_execute_API.c | 404 active_opline->lineno == 0 && EG(opline_before_exception)) { in zend_get_executed_lineno() 405 return EG(opline_before_exception)->lineno; in zend_get_executed_lineno() 408 return active_opline->lineno; in zend_get_executed_lineno()
|
/PHP-5.5/sapi/cli/tests/ |
H A D | bug67741.phpt | 13 echo "primary lineno: ", __LINE__, "\n"; 16 prepend lineno: 2 17 primary lineno: 3
|
H A D | bug67741_stub.inc | 2 echo "prepend lineno: ", __LINE__, "\n";
|
/PHP-5.5/sapi/fpm/fpm/ |
H A D | fpm_php_trace.c | 73 uint lineno = 0; in fpm_php_trace_dump() local 115 if (0 > fpm_trace_get_long(opline + offsetof(struct _zend_op, lineno), &l)) { in fpm_php_trace_dump() 119 lineno = *lu; in fpm_php_trace_dump() 122 fprintf(slowlog, " %s:%u\n", *buf ? buf : "unknown", lineno); in fpm_php_trace_dump()
|
/PHP-5.5/sapi/cli/ |
H A D | php_cli.c | 622 static int cli_seek_file_begin(zend_file_handle *file_handle, char *script_file, int *lineno TSRMLS… in cli_seek_file_begin() 626 *lineno = 1; in cli_seek_file_begin() 650 *lineno = 2; in cli_seek_file_begin() 673 int lineno = 0; in do_cli() local 934 if (cli_seek_file_begin(&file_handle, script_file, &lineno TSRMLS_CC) != SUCCESS) { in do_cli() 972 CG(start_lineno) = lineno; in do_cli() 1073 if (cli_seek_file_begin(&file_handle, script_file, &lineno TSRMLS_CC) != SUCCESS) { in do_cli() 1076 CG(start_lineno) = lineno; in do_cli()
|
/PHP-5.5/ext/fileinfo/libmagic/ |
H A D | funcs.c | 88 size_t lineno) in file_error_core() argument 95 if (lineno != 0) { in file_error_core() 98 file_printf(ms, "line %" SIZE_T_FORMAT "u: ", lineno); in file_error_core()
|
H A D | apprentice.c | 943 size_t lineno = 0; in load_1() local 971 lineno++; in load_1() 1011 switch (parse(ms, &me, line, lineno, action)) { in load_1() 1084 ms->line = me[i].mp->lineno; in set_last_default() 1493 size_t lineno, int action) in parse() argument 1565 m->lineno = CAST(uint32_t, lineno); in parse() 2943 m->lineno = swap4((uint32_t)m->lineno);
|
H A D | file.h | 290 uint32_t lineno; /* line number in magic file */ member
|
/PHP-5.5/ext/standard/ |
H A D | assert.c | 206 uint lineno = zend_get_executed_lineno(TSRMLS_C); in PHP_FUNCTION() local 214 ZVAL_LONG (args[1], lineno); in PHP_FUNCTION()
|
/PHP-5.5/ext/mbstring/ucgendat/ |
H A D | ucgendat.c | 822 ac_uint4 i, lineno, skip, code, ccl_code; in read_cdata() local 826 lineno = skip = 0; in read_cdata() 829 lineno++; in read_cdata()
|
/PHP-5.5/ |
H A D | .gdbinit | 152 printf "%s:%d ", $t->op_array->filename, $t->opline->lineno 634 printf "%-06s %s:%d", $stat, $filename, $p->lineno
|
/PHP-5.5/ext/fileinfo/ |
H A D | libmagic.patch | 295 - size_t lineno = 0, llen = 0; 300 + size_t lineno = 0; 837 m->lineno = swap4((uint32_t)m->lineno); 1993 size_t lineno) 2000 if (lineno != 0) { 2004 file_printf(ms, "line %" SIZE_T_FORMAT "u: ", lineno); 2607 - (void) fprintf(stderr, "%u: %.*s %u", m->lineno, 2948 ms->line = m->lineno; /* for messages */
|