/PHP-5.6/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 | 527 out($f, "#line $lineno \"$definition_file\"\n"); 562 out($f, "#line $lineno \"$definition_file\"\n"); 758 foreach ($list as $lineno => $dsc) { 786 foreach ($list as $lineno => $dsc) { 835 $lineno = 0; 1080 $lineno = 0; 1087 ++$lineno; 1118 $list[$lineno] = array("handler"=>$handler); 1135 $list[$lineno] = array("helper"=>$helper); 1157 $list[$lineno] = array("helper"=>$helper); [all …]
|
H A D | zend_ini_scanner.l | 227 SCNG(lineno) = 1; in init_ini_scanner() 259 return SCNG(lineno); in zend_ini_scanner_get_lineno() 350 SCNG(lineno)++; in zend_ini_escape_string() 426 SCNG(lineno)++; 542 SCNG(lineno)++; 632 SCNG(lineno)++; 638 SCNG(lineno)++; 643 … with '#' are deprecated in %s on line %d", zend_ini_scanner_get_filename(TSRMLS_C), SCNG(lineno)); 645 SCNG(lineno)++;
|
H A D | zend_language_scanner.h | 37 uint lineno; member
|
H A D | zend_exceptions.c | 261 long code = 0, severity = E_ERROR, lineno; in ZEND_METHOD() local 265 …!", &message, &message_len, &code, &severity, &filename, &filename_len, &lineno, &previous, defaul… in ZEND_METHOD() 288 lineno = 0; /* invalidate lineno */ in ZEND_METHOD() 290 …zend_update_property_long(default_exception_ce, object, "line", sizeof("line")-1, lineno TSRMLS_CC… in ZEND_METHOD() 799 ZEND_ARG_INFO(0, lineno) 898 static void zend_error_va(int type, const char *file, uint lineno, const char *format, ...) /* {{{ … in zend_error_va() argument 903 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 | 2073 int lineno, frameno = 0; in ZEND_FUNCTION() local 2113 lineno = skip->opline->lineno; in ZEND_FUNCTION() 2116 lineno = 0; in ZEND_FUNCTION() 2207 zend_printf(") called at [%s:%d]\n", filename, lineno); in ZEND_FUNCTION() 2218 zend_printf(") called at [%s:%d]\n", prev->op_array->filename, prev->opline->lineno); in ZEND_FUNCTION() 2241 int lineno, frameno = 0; in zend_fetch_debug_backtrace() local 2280 lineno = skip->opline->lineno; in zend_fetch_debug_backtrace() 2282 add_assoc_long_ex(stack_frame, "line", sizeof("line"), lineno); in zend_fetch_debug_backtrace() 2299 add_assoc_long_ex(stack_frame, "line", sizeof("line"), prev->opline->lineno); in zend_fetch_debug_backtrace()
|
H A D | zend_globals.h | 284 int lineno; member
|
H A D | zend_ini_scanner.c | 229 SCNG(lineno) = 1; in init_ini_scanner() 352 SCNG(lineno)++; in zend_ini_escape_string() 545 SCNG(lineno)++; in ini_lex() 1036 SCNG(lineno)++; in ini_lex() 1122 SCNG(lineno)++; in ini_lex() 2070 SCNG(lineno)++; in ini_lex() 2104 SCNG(lineno)++; in ini_lex() 2227 SCNG(lineno)++; in ini_lex() 2503 SCNG(lineno)++; in ini_lex() 3060 SCNG(lineno)++; in ini_lex() [all …]
|
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 | 884 ZEND_API void _zend_bailout(char *filename, uint lineno) /* {{{ */ in BEGIN_EXTERN_C() 889 zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!", filename, lineno); in BEGIN_EXTERN_C() 1068 active_opline->lineno = error_lineno; in zend_error()
|
/PHP-5.6/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.6/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.6/sapi/cli/ |
H A D | php_cli.c | 626 static int cli_seek_file_begin(zend_file_handle *file_handle, char *script_file, int *lineno TSRMLS… in cli_seek_file_begin() 630 *lineno = 1; in cli_seek_file_begin() 654 *lineno = 2; in cli_seek_file_begin() 677 int lineno = 0; in do_cli() local 938 if (cli_seek_file_begin(&file_handle, script_file, &lineno TSRMLS_CC) != SUCCESS) { in do_cli() 976 CG(start_lineno) = lineno; in do_cli() 1077 if (cli_seek_file_begin(&file_handle, script_file, &lineno TSRMLS_CC) != SUCCESS) { in do_cli() 1080 CG(start_lineno) = lineno; in do_cli()
|
/PHP-5.6/ext/fileinfo/libmagic/ |
H A D | funcs.c | 91 size_t lineno) in file_error_core() argument 98 if (lineno != 0) { in file_error_core() 101 file_printf(ms, "line %" SIZE_T_FORMAT "u: ", lineno); in file_error_core()
|
H A D | apprentice.c | 958 size_t lineno = 0; in load_1() local 982 lineno++; in load_1() 1022 switch (parse(ms, &me, line, lineno, action)) { in load_1() 1095 ms->line = me[i].mp->lineno; in set_last_default() 1496 size_t lineno, int action) in parse() argument 1568 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.6/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.6/sapi/phpdbg/ |
H A D | phpdbg_prompt.c | 438 if (EG(active_op_array)->opcodes[next].lineno != opline->lineno) { in PHPDBG_COMMAND() 537 zend_uint lineno = zend_get_executed_lineno(TSRMLS_C); in phpdbg_handle_exception() local 571 EG(active_op_array)->opcodes, filename, lineno); in phpdbg_handle_exception() 1277 …EPPING && (PHPDBG_G(flags) & PHPDBG_STEP_OPCODE || execute_data->opline->lineno != PHPDBG_G(last_l… 1295 … && (brake->type != PHPDBG_BREAK_FILE || execute_data->opline->lineno != PHPDBG_G(last_line))) { 1309 PHPDBG_G(last_line) = execute_data->opline->lineno;
|
H A D | phpdbg_bp.h | 112 PHPDBG_API void phpdbg_set_breakpoint_file(const char* filename, long lineno TSRMLS_DC);
|
H A D | phpdbg_opcode.c | 157 opline->lineno, in phpdbg_print_opline_ex() 166 opline->lineno, in phpdbg_print_opline_ex()
|
H A D | phpdbg_print.c | 84 opline->lineno, in phpdbg_print_function_helper()
|
/PHP-5.6/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()
|