Home
last modified time | relevance | path

Searched refs:lineno (Results 1 – 25 of 50) sorted by relevance

12

/PHP-7.3/Zend/
H A Dzend_dtrace.c57 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 Dzend_dtrace.d26 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 Dzend_ast.c155 ast->lineno = lineno; in zend_ast_create_1()
156 ast->lineno = lineno; in zend_ast_create_1()
178 ast->lineno = lineno; in zend_ast_create_2()
203 ast->lineno = lineno; in zend_ast_create_3()
231 ast->lineno = lineno; in zend_ast_create_4()
269 list->lineno = lineno; in zend_ast_create_list_1()
300 list->lineno = lineno; in zend_ast_create_list_2()
318 if (lineno < ast->lineno) { in zend_ast_create_from_va_list()
319 ast->lineno = lineno; in zend_ast_create_from_va_list()
373 if (lineno < ast->lineno) { in zend_ast_create_list()
[all …]
H A Dzend_vm_gen.php1110 out($f, "#line $lineno \"$definition_file\"\n");
1691 foreach ($list as $lineno => $dsc) {
1723 foreach ($list as $lineno => $dsc) {
1793 $lineno = 0;
2238 function parse_ext_spec($def, $lineno, $str) { argument
2253 function parse_spec_rules($def, $lineno, $str) { argument
2325 $lineno = 0;
2333 ++$lineno;
2385 $list[$lineno] = array("handler"=>$handler);
2432 $list[$lineno] = array("handler"=>$handler);
[all …]
H A Dzend_ini_scanner.l229 SCNG(lineno) = 1; in init_ini_scanner()
261 return SCNG(lineno); in zend_ini_scanner_get_lineno()
352 SCNG(lineno)++; in zend_ini_escape_string()
428 SCNG(lineno)++;
551 SCNG(lineno)++;
641 SCNG(lineno)++;
647 SCNG(lineno)++;
H A Dzend_language_scanner.h35 uint32_t lineno; member
H A Dzend_ast.h160 uint32_t lineno; /* Line number */ member
168 uint32_t lineno; member
196 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_zval_with_lineno(zval *zv, uint32_t lineno);
313 return ast->lineno; in zend_ast_get_lineno()
H A Dzend_alloc.c369 uint32_t lineno, in zend_mm_safe_error() argument
381 lineno, in zend_mm_safe_error()
1366 dbg->lineno = __zend_lineno;
2062 if (dbg->filename == leak->filename && dbg->lineno == leak->lineno) {
2066 dbg->lineno = 0;
2095 if (dbg->filename == leak->filename && dbg->lineno == leak->lineno) {
2118 if (p->dbg.filename == list->dbg.filename && p->dbg.lineno == list->dbg.lineno) {
2150 leak.lineno = list->dbg.lineno;
2183 leak.lineno = dbg->lineno;
2191 dbg->lineno = 0;
[all …]
H A Dzend_exceptions.c344 zend_long code = 0, severity = E_ERROR, lineno; in ZEND_METHOD() local
348 …_PARAMS_QUIET, argc, "|SllSlO!", &message, &code, &severity, &filename, &lineno, &previous, zend_c… in ZEND_METHOD()
387 lineno = 0; /* invalidate lineno */ in ZEND_METHOD()
389 ZVAL_LONG(&tmp, lineno); in ZEND_METHOD()
812 ZEND_ARG_INFO(0, lineno)
959 static void zend_error_va(int type, const char *file, uint32_t lineno, const char *format, ...) /* … in zend_error_va() argument
964 zend_error_cb(type, file, lineno, format, args); in zend_error_va()
969 static void zend_error_helper(int type, const char *filename, const uint32_t lineno, const char *fo… in zend_error_helper() argument
974 zend_error_cb(type, filename, lineno, format, va); in zend_error_helper()
H A Dzend_builtin_functions.c2253 int lineno, frameno = 0; in ZEND_FUNCTION() local
2302 lineno = EG(opline_before_exception)->lineno; in ZEND_FUNCTION()
2304 lineno = skip->func->op_array.line_end; in ZEND_FUNCTION()
2307 lineno = skip->opline->lineno; in ZEND_FUNCTION()
2311 lineno = 0; in ZEND_FUNCTION()
2451 int lineno, frameno = 0; in zend_fetch_debug_backtrace() local
2511 lineno = EG(opline_before_exception)->lineno; in zend_fetch_debug_backtrace()
2513 lineno = skip->func->op_array.line_end; in zend_fetch_debug_backtrace()
2516 lineno = skip->opline->lineno; in zend_fetch_debug_backtrace()
2520 ZVAL_LONG(&tmp, lineno); in zend_fetch_debug_backtrace()
[all …]
H A Dzend_globals.h254 int lineno; member
H A Dzend_opcode.c436 opline->lineno = (opline+1)->lineno; in zend_update_extended_info()
464 CG(zend_lineno) = op_array->opcodes[op_num].lineno; in zend_check_finally_breakout()
472 CG(zend_lineno) = op_array->opcodes[op_num].lineno; in zend_check_finally_breakout()
H A Dzend_ini_scanner.c232 SCNG(lineno) = 1; in init_ini_scanner()
264 return SCNG(lineno); in zend_ini_scanner_get_lineno()
355 SCNG(lineno)++; in zend_ini_escape_string()
556 SCNG(lineno)++; in ini_lex()
755 SCNG(lineno)++; in ini_lex()
1720 SCNG(lineno)++; in ini_lex()
2040 SCNG(lineno)++; in ini_lex()
2634 SCNG(lineno)++; in ini_lex()
3451 SCNG(lineno)++; in ini_lex()
3815 SCNG(lineno)++; in ini_lex()
[all …]
/PHP-7.3/sapi/cli/tests/
H A Dbug67741.phpt13 echo "primary lineno: ", __LINE__, "\n";
16 prepend lineno: 2
17 primary lineno: 3
H A Dbug67741_stub.inc2 echo "prepend lineno: ", __LINE__, "\n";
/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_php_trace.c81 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.3/Zend/tests/
H A Dflexible-heredoc-nowdoc-lineno.phpt2 Flexible heredoc lineno: ensure the compiler globals line number is correct
H A Dexception_020.phpt11 …ng $message [, long $code, [ long $severity, [ string $filename, [ long $lineno [, Throwable $pre…
/PHP-7.3/sapi/cli/
H A Dphp_cli.c605 static int cli_seek_file_begin(zend_file_handle *file_handle, char *script_file, int *lineno) in cli_seek_file_begin() argument
609 *lineno = 1; in cli_seek_file_begin()
633 *lineno = 2; in cli_seek_file_begin()
667 int lineno = 0; in do_cli() local
940 if (cli_seek_file_begin(&file_handle, script_file, &lineno) != SUCCESS) { in do_cli()
978 CG(start_lineno) = lineno; in do_cli()
1062 if (cli_seek_file_begin(&file_handle, script_file, &lineno) != SUCCESS) { in do_cli()
1065 CG(start_lineno) = lineno; in do_cli()
/PHP-7.3/ext/tokenizer/
H A Dtokenizer.c108 unsigned char *text, size_t leng, int lineno) { in add_token() argument
114 add_next_index_long(&keyword, lineno); in add_token()
/PHP-7.3/sapi/phpdbg/
H A Dphpdbg_opcode.c160 opline->lineno, in phpdbg_print_opline_ex()
168 opline->lineno, in phpdbg_print_opline_ex()
H A Dphpdbg_bp.h128 PHPDBG_API void phpdbg_set_breakpoint_file(const char* filename, size_t path_len, long lineno);
/PHP-7.3/ext/standard/
H A Dassert.c219 uint32_t lineno = zend_get_executed_lineno(); in PHP_FUNCTION() local
223 ZVAL_LONG (&args[1], lineno); in PHP_FUNCTION()
/PHP-7.3/ext/fileinfo/libmagic/
H A Dfuncs.c89 size_t lineno) in file_error_core() argument
96 if (lineno != 0) { in file_error_core()
99 file_printf(ms, "line %" SIZE_T_FORMAT "u:", lineno); in file_error_core()
H A Dprint.c58 (void) fprintf(stderr, "%u: %.*s %u", m->lineno, in file_mdump()

Completed in 97 milliseconds

12