/PHP-7.4/Zend/ |
H A D | zend_dtrace.c | 57 int lineno; in dtrace_execute_ex() local 65 lineno = zend_get_executed_lineno(); in dtrace_execute_ex() 74 DTRACE_EXECUTE_ENTRY((char *)filename, lineno); in dtrace_execute_ex() 78 …DTRACE_FUNCTION_ENTRY((char *)funcname, (char *)filename, lineno, (char *)classname, (char *)scope… in dtrace_execute_ex() 84 …DTRACE_FUNCTION_RETURN((char *)funcname, (char *)filename, lineno, (char *)classname, (char *)scop… in dtrace_execute_ex() 88 DTRACE_EXECUTE_RETURN((char *)filename, lineno); in dtrace_execute_ex() 94 int lineno; in dtrace_execute_internal() local 98 lineno = zend_get_executed_lineno(); in dtrace_execute_internal() 102 DTRACE_EXECUTE_ENTRY((char *)filename, lineno); in dtrace_execute_internal() 108 DTRACE_EXECUTE_RETURN((char *)filename, lineno); in dtrace_execute_internal()
|
H A D | zend_dtrace.d | 26 probe error(char *errormsg, char *request_file, int lineno); 27 probe execute__entry(char* request_file, int lineno); 28 probe execute__return(char* request_file, int lineno); 29 …probe function__entry(char* function_name, char* request_file, int lineno, char* classname, char* … 30 …probe function__return(char* function_name, char* request_file, int lineno, char* classname, char*…
|
H A D | zend_ast.c | 165 ast->lineno = lineno; in zend_ast_create_1() 166 ast->lineno = lineno; in zend_ast_create_1() 188 ast->lineno = lineno; in zend_ast_create_2() 213 ast->lineno = lineno; in zend_ast_create_3() 241 ast->lineno = lineno; in zend_ast_create_4() 279 list->lineno = lineno; in zend_ast_create_list_1() 310 list->lineno = lineno; in zend_ast_create_list_2() 328 if (lineno < ast->lineno) { in zend_ast_create_from_va_list() 329 ast->lineno = lineno; in zend_ast_create_from_va_list() 383 if (lineno < ast->lineno) { in zend_ast_create_list() [all …]
|
H A D | zend_vm_gen.php | 1119 out($f, "#line $lineno \"$definition_file\"\n"); 1212 out($f, "#line $lineno \"$definition_file\"\n"); 1732 foreach ($list as $lineno => $dsc) { 1764 foreach ($list as $lineno => $dsc) { 1838 $lineno = 0; 2303 function parse_ext_spec($def, $lineno, $str) { argument 2318 function parse_spec_rules($def, $lineno, $str) { argument 2387 $lineno = 0; 2395 ++$lineno; 2449 $list[$lineno] = array("handler"=>$handler); [all …]
|
H A D | zend_ini_scanner.l | 230 SCNG(lineno) = 1; in init_ini_scanner() 262 return SCNG(lineno); in zend_ini_scanner_get_lineno() 353 SCNG(lineno)++; in zend_ini_escape_string() 429 SCNG(lineno)++; 552 SCNG(lineno)++; 642 SCNG(lineno)++; 648 SCNG(lineno)++;
|
H A D | zend.c | 1432 *lineno = 0; in get_filename_lineno() 1449 *lineno = zend_get_compiled_lineno(); in get_filename_lineno() 1454 *lineno = 0; in get_filename_lineno() 1456 *lineno = zend_get_executed_lineno(); in get_filename_lineno() 1460 *lineno = 0; in get_filename_lineno() 1465 *lineno = 0; in get_filename_lineno() 1483 zend_error_va_list(type, filename, lineno, format, args); in zend_error_at() 1489 uint32_t lineno; in zend_error() local 1492 get_filename_lineno(type, &filename, &lineno); in zend_error() 1519 uint32_t lineno; in zend_error_noreturn() local [all …]
|
H A D | zend_language_scanner.h | 35 uint32_t lineno; member
|
H A D | zend_ast.h | 164 uint32_t lineno; /* Line number */ member 172 uint32_t lineno; member 200 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_zval_with_lineno(zval *zv, uint32_t lineno); 322 return ast->lineno; in zend_ast_get_lineno()
|
H A D | zend_alloc.c | 374 uint32_t lineno, in zend_mm_safe_error() argument 386 lineno, in zend_mm_safe_error() 1332 dbg->lineno = __zend_lineno; 2024 if (dbg->filename == leak->filename && dbg->lineno == leak->lineno) { 2028 dbg->lineno = 0; 2057 if (dbg->filename == leak->filename && dbg->lineno == leak->lineno) { 2080 if (p->dbg.filename == list->dbg.filename && p->dbg.lineno == list->dbg.lineno) { 2112 leak.lineno = list->dbg.lineno; 2145 leak.lineno = dbg->lineno; 2153 dbg->lineno = 0; [all …]
|
H A D | zend_exceptions.c | 348 zend_long code = 0, severity = E_ERROR, lineno; in ZEND_METHOD() local 352 …_PARAMS_QUIET, argc, "|SllSlO!", &message, &code, &severity, &filename, &lineno, &previous, zend_c… in ZEND_METHOD() 391 lineno = 0; /* invalidate lineno */ in ZEND_METHOD() 393 ZVAL_LONG(&tmp, lineno); in ZEND_METHOD() 816 ZEND_ARG_INFO(0, lineno) 963 static void zend_error_va(int type, const char *file, uint32_t lineno, const char *format, ...) /* … in zend_error_va() argument 968 zend_error_cb(type, file, lineno, format, args); in zend_error_va() 973 static void zend_error_helper(int type, const char *filename, const uint32_t lineno, const char *fo… in zend_error_helper() argument 978 zend_error_cb(type, filename, lineno, format, va); in zend_error_helper()
|
H A D | zend_builtin_functions.c | 2213 int lineno, frameno = 0; in ZEND_FUNCTION() local 2254 lineno = EG(opline_before_exception)->lineno; in ZEND_FUNCTION() 2256 lineno = skip->func->op_array.line_end; in ZEND_FUNCTION() 2259 lineno = skip->opline->lineno; in ZEND_FUNCTION() 2263 lineno = 0; in ZEND_FUNCTION() 2403 int lineno, frameno = 0; in zend_fetch_debug_backtrace() local 2455 lineno = EG(opline_before_exception)->lineno; in zend_fetch_debug_backtrace() 2457 lineno = skip->func->op_array.line_end; in zend_fetch_debug_backtrace() 2460 lineno = skip->opline->lineno; in zend_fetch_debug_backtrace() 2464 ZVAL_LONG(&tmp, lineno); in zend_fetch_debug_backtrace() [all …]
|
H A D | zend.h | 235 ZEND_API ZEND_COLD ZEND_NORETURN void _zend_bailout(const char *filename, uint32_t lineno); 301 ZEND_API ZEND_COLD void zend_error_at(int type, const char *filename, uint32_t lineno, const char *… 302 …URN void zend_error_at_noreturn(int type, const char *filename, uint32_t lineno, const char *forma…
|
H A D | zend_globals.h | 265 int lineno; member
|
/PHP-7.4/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-7.4/sapi/fpm/fpm/ |
H A D | fpm_php_trace.c | 81 uint32_t lineno = 0; in fpm_php_trace_dump() local 168 if (0 > fpm_trace_get_long(opline + offsetof(struct _zend_op, lineno), &l)) { in fpm_php_trace_dump() 172 lineno = *lu; in fpm_php_trace_dump() 184 fprintf(slowlog, " %s:%u\n", *buf ? buf : "unknown", lineno); in fpm_php_trace_dump()
|
/PHP-7.4/Zend/tests/ |
H A D | bug80972.phpt | 6 function exceptions_error_handler($severity, $message, $filename, $lineno) { 8 throw new ErrorException($message, 0, $severity, $filename, $lineno);
|
H A D | flexible-heredoc-nowdoc-lineno.phpt | 2 Flexible heredoc lineno: ensure the compiler globals line number is correct
|
H A D | exception_020.phpt | 11 …ng $message [, long $code, [ long $severity, [ string $filename, [ long $lineno [, Throwable $pre…
|
/PHP-7.4/ext/tokenizer/ |
H A D | tokenizer.c | 108 unsigned char *text, size_t leng, int lineno) { in add_token() argument 118 add_next_index_long(&keyword, lineno); in add_token()
|
/PHP-7.4/sapi/phpdbg/ |
H A D | phpdbg_opcode.c | 160 opline->lineno, in phpdbg_print_opline_ex() 168 opline->lineno, in phpdbg_print_opline_ex()
|
H A D | phpdbg_bp.h | 128 PHPDBG_API void phpdbg_set_breakpoint_file(const char* filename, size_t path_len, long lineno);
|
/PHP-7.4/ext/standard/ |
H A D | assert.c | 219 uint32_t lineno = zend_get_executed_lineno(); in PHP_FUNCTION() local 223 ZVAL_LONG (&args[1], lineno); in PHP_FUNCTION()
|
/PHP-7.4/ext/fileinfo/libmagic/ |
H A D | funcs.c | 86 size_t lineno) in file_error_core() argument 93 if (lineno != 0) { in file_error_core() 96 file_printf(ms, "line %" SIZE_T_FORMAT "u:", lineno); in file_error_core()
|
/PHP-7.4/ext/opcache/ |
H A D | zend_accelerator_util_funcs.c | 450 CG(zend_lineno) = function1->op_array.opcodes[0].lineno; in zend_accel_function_hash_copy() 456 (int)function2->op_array.opcodes[0].lineno); in zend_accel_function_hash_copy() 494 CG(zend_lineno) = function1->op_array.opcodes[0].lineno; in zend_accel_function_hash_copy_from_shm() 500 (int)function2->op_array.opcodes[0].lineno); in zend_accel_function_hash_copy_from_shm()
|