Home
last modified time | relevance | path

Searched refs:lineno (Results 26 – 49 of 49) sorted by relevance

12

/PHP-7.0/Zend/
H A Dzend_alloc.h53 uint lineno; member
62 uint lineno; member
H A Dzend.h246 ZEND_API ZEND_COLD void _zend_bailout(char *filename, uint lineno);
H A Dzend_compile.h101 uint32_t lineno; member
161 uint32_t lineno; member
H A Dzend_execute_API.c515 ex->opline->lineno == 0 && EG(opline_before_exception)) { in zend_get_executed_lineno()
516 return EG(opline_before_exception)->lineno; in zend_get_executed_lineno()
518 return ex->opline->lineno; in zend_get_executed_lineno()
H A Dzend.c911 ZEND_API ZEND_COLD void _zend_bailout(char *filename, uint lineno) /* {{{ */ in BEGIN_EXTERN_C()
915 zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!", filename, lineno); in BEGIN_EXTERN_C()
H A Dzend_compile.c978 old_function->op_array.opcodes[0].lineno); in do_bind_function()
3750 CG(zend_lineno) = opline->lineno; in zend_resolve_goto_label()
3762 CG(zend_lineno) = opline->lineno; in zend_resolve_goto_label()
4102 CG(zend_lineno) = case_ast->lineno; in zend_compile_switch()
4229 CG(zend_lineno) = catch_ast->lineno; in zend_compile_try()
4261 CG(zend_lineno) = finally_ast->lineno; in zend_compile_try()
4957 opline_ext->lineno = decl->start_lineno; in zend_compile_func_decl()
5379 CG(zend_lineno) = ast->lineno; in zend_compile_class_decl()
5789 ZVAL_LONG(zv, ast->lineno); in zend_try_ct_eval_magic_const()
7087 CG(zend_lineno) = ast->lineno; in zend_compile_stmt()
H A Dzend_language_scanner.l217 lex_state->lineno = CG(zend_lineno); in zend_save_lexical_state()
251 CG(zend_lineno) = lex_state->lineno; in zend_restore_lexical_state()
H A Dzend_types.h137 uint32_t lineno; /* line number (for ast nodes) */ member
H A Dzend_generators.c162 fast_call->u2.lineno = (uint32_t)-1; in zend_generator_dtor_storage()
H A Dzend_execute.c662 ZSTR_VAL(ptr->func->op_array.filename), ptr->opline->lineno); in zend_verify_arg_error()
916 …rg_num, class_name, space, func_name, ZSTR_VAL(ptr->func->op_array.filename), ptr->opline->lineno); in zend_verify_missing_arg()
H A Dzend_vm_def.h7208 fast_call->u2.lineno = (uint32_t)-1;
7617 fast_call->u2.lineno = (uint32_t)-1;
7621 fast_call->u2.lineno = opline - EX(func)->op_array.opcodes;
7632 if (fast_call->u2.lineno != (uint32_t)-1) {
7633 const zend_op *fast_ret = EX(func)->op_array.opcodes + fast_call->u2.lineno;
7636 fast_call->u2.lineno = fast_ret->op2.opline_num;
H A Dzend_language_scanner.c219 lex_state->lineno = CG(zend_lineno); in zend_save_lexical_state()
253 CG(zend_lineno) = lex_state->lineno; in zend_restore_lexical_state()
H A Dzend_vm_execute.h1507 fast_call->u2.lineno = (uint32_t)-1;
1596 fast_call->u2.lineno = (uint32_t)-1;
1600 fast_call->u2.lineno = opline - EX(func)->op_array.opcodes;
1611 if (fast_call->u2.lineno != (uint32_t)-1) {
1612 const zend_op *fast_ret = EX(func)->op_array.opcodes + fast_call->u2.lineno;
1615 fast_call->u2.lineno = fast_ret->op2.opline_num;
/PHP-7.0/ext/mbstring/ucgendat/
H A Ducgendat.c822 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-7.0/ext/fileinfo/libmagic/
H A Dfile.h291 uint32_t lineno; /* line number in magic file */ member
H A Dsoftmagic.c187 ms->line = m->lineno; in match()
255 ms->line = m->lineno; /* for messages */ in match()
/PHP-7.0/sapi/phpdbg/
H A Dphpdbg_print.c86 opline->lineno, in phpdbg_print_function_helper()
H A Dphpdbg_bp.c904 …%.*s %d\n", ZSTR_LEN(op_array->filename), ZSTR_VAL(op_array->filename), (*EG(opline_ptr))->lineno); in phpdbg_find_breakpoint_file()
912 …te_data) && (brake = zend_hash_index_find_ptr(breaks, EG(current_execute_data)->opline->lineno))) { in phpdbg_find_breakpoint_file()
H A Dphpdbg.c490 insert_idx = cur->lineno; in phpdbg_oplog_fill_executable()
692 insert_idx = cur->op->lineno; in PHP_FUNCTION()
/PHP-7.0/ext/fileinfo/
H A Dlibmagic.patch394 - size_t lineno = 0, llen = 0;
399 + size_t lineno = 0;
919 m->lineno = swap4((uint32_t)m->lineno);
2093 size_t lineno)
2100 if (lineno != 0) {
2104 file_printf(ms, "line %" SIZE_T_FORMAT "u: ", lineno);
2896 - (void) fprintf(stderr, "%u: %.*s %u", m->lineno,
/PHP-7.0/
H A D.gdbinit138 printf "%s:%d ", $func->op_array.filename->val, $ex->opline->lineno
/PHP-7.0/main/
H A Dmain.c1465 …2, "%s(%d) : Freeing 0x%.8lX (%zu bytes), script=%s\n", t->filename, t->lineno, (zend_uintptr_t)t… in php_message_handler_for_zend()
/PHP-7.0/ext/reflection/
H A Dphp_reflection.c2251 ZVAL_LONG(return_value, ex->opline->lineno); in ZEND_METHOD()
/PHP-7.0/ext/sqlite3/libsqlite/
H A Dsqlite3.c30512 pFile ? pFile->zPath : 0, lineno);
39239 static void winLogIoerr(int nRetry, int lineno){
39243 winIoerrRetryDelay*nRetry*(nRetry+1)/2, lineno
139800 zType, lineno, 20+sqlite3_sourceid());
139803 SQLITE_PRIVATE int sqlite3CorruptError(int lineno){
139807 SQLITE_PRIVATE int sqlite3MisuseError(int lineno){
139809 return reportError(SQLITE_MISUSE, lineno, "misuse");
139811 SQLITE_PRIVATE int sqlite3CantopenError(int lineno){
139816 SQLITE_PRIVATE int sqlite3NomemError(int lineno){
139818 return reportError(SQLITE_NOMEM, lineno, "OOM");
[all …]

Completed in 583 milliseconds

12