| /PHP_5_4/Zend/ |
| H A D | zend_dtrace.c | 49 int lineno; local 53 /* we need filename and lineno for both execute and function probes */ 57 lineno = zend_get_executed_lineno(TSRMLS_C); 64 lineno = zend_get_executed_lineno(TSRMLS_C); 68 DTRACE_EXECUTE_ENTRY(filename, lineno); 72 DTRACE_FUNCTION_ENTRY(funcname, filename, lineno, classname, scope); 78 DTRACE_FUNCTION_RETURN(funcname, filename, lineno, classname, scope); 82 DTRACE_EXECUTE_RETURN(filename, lineno); 88 int lineno; local 92 lineno [all...] |
| 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* scope); 32 probe function__return(char* function_name, char* request_file, int lineno, char* classname, char* scope);
|
| H A D | zend_alloc.h | 48 uint lineno; member in struct:_zend_leak_info
|
| H A D | zend_globals.h | 282 int lineno; member in struct:_zend_ini_scanner_globals
|
| H A D | zend_ini_scanner.c | 182 SCNG(lineno) = 1; 214 return SCNG(lineno); 305 SCNG(lineno)++; 498 SCNG(lineno)++; 932 SCNG(lineno)++; 1017 zend_error(E_DEPRECATED, "Comments starting with '#' are deprecated in %s on line %d", zend_ini_scanner_get_filename(TSRMLS_C), SCNG(lineno)); 1019 SCNG(lineno)++; 1967 SCNG(lineno)++; 2001 SCNG(lineno)++; 2124 SCNG(lineno) [all...] |
| H A D | zend_ini_scanner.l | 180 SCNG(lineno) = 1; 212 return SCNG(lineno); 303 SCNG(lineno)++; 379 SCNG(lineno)++; 491 SCNG(lineno)++; 581 SCNG(lineno)++; 587 SCNG(lineno)++; 592 zend_error(E_DEPRECATED, "Comments starting 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 | 36 uint lineno; member in struct:_zend_lex_state
|
| H A D | zend_vm_gen.php | 481 function gen_handler($f, $spec, $kind, $name, $op1, $op2, $use, $code, $lineno) { 485 out($f, "#line $lineno \"$definition_file\"\n"); 516 function gen_helper($f, $spec, $kind, $name, $op1, $op2, $param, $code, $lineno) { 520 out($f, "#line $lineno \"$definition_file\"\n"); 715 foreach ($list as $lineno => $dsc) { 722 gen_handler($f, 1, $kind, $opcodes[$num]["op"], $op1, $op2, isset($opcodes[$num]["use"]), $opcodes[$num]["code"], $lineno); 730 gen_helper($f, 1, $kind, $num, $op1, $op2, $helpers[$num]["param"], $helpers[$num]["code"], $lineno); 743 foreach ($list as $lineno => $dsc) { 747 gen_handler($f, 0, $kind, $opcodes[$num]["op"], "ANY", "ANY", isset($opcodes[$num]["use"]), $opcodes[$num]["code"], $lineno); 751 gen_helper($f, 0, $kind, $num, "ANY", "ANY", $helpers[$num]["param"], $helpers[$num]["code"], $lineno); 790 $lineno = 0; variable 1067 $lineno = 0; variable [all...] |
| H A D | zend.c | 865 ZEND_API void _zend_bailout(char *filename, uint lineno) /* {{{ */ argument 870 zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!", filename, lineno); 1046 active_opline->lineno = error_lineno; 1054 /* Obtain relevant filename and lineno */
|
| H A D | zend.h | 602 ZEND_API void _zend_bailout(char *filename, uint lineno);
|
| H A D | zend_builtin_functions.c | 2075 int lineno, frameno = 0; local 2115 lineno = skip->opline->lineno; 2118 lineno = 0; 2209 zend_printf(") called at [%s:%d]\n", filename, lineno); 2220 zend_printf(") called at [%s:%d]\n", prev->op_array->filename, prev->opline->lineno); 2243 int lineno, frameno = 0; local 2282 lineno = skip->opline->lineno; 2284 add_assoc_long_ex(stack_frame, "line", sizeof("line"), lineno); [all...] |
| H A D | zend_compile.h | 112 uint lineno; member in struct:_zend_op
|
| H A D | zend_execute_API.c | 410 active_opline->lineno == 0 && EG(opline_before_exception)) { 411 return EG(opline_before_exception)->lineno; 414 return active_opline->lineno;
|
| H A D | zend_alloc.c | 348 uint lineno; member in struct:_zend_mm_debug_info 577 ((zend_mm_block*)(block))->debug.lineno = __zend_lineno; \ 1254 if (p->debug.filename==b->debug.filename && p->debug.lineno==b->debug.lineno) { 1298 leak.lineno = p->debug.lineno; 1434 zend_debug_alloc_output("OK (allocated on %s:%d, %d bytes)\n", p->debug.filename, p->debug.lineno, (int)p->debug.size); 1744 uint lineno, 1761 error_lineno = EG(opline_ptr)?(*EG(opline_ptr))->lineno:0; 1776 lineno, 1739 zend_mm_safe_error(zend_mm_heap *heap, const char *format, size_t limit, const char *filename, uint lineno, size_t size) argument [all...] |
| H A D | zend_exceptions.c | 221 /* {{{ proto ErrorException::__construct(string message, int code, int severity [, string filename [, int lineno [, Exception previous]]]) 226 long code = 0, severity = E_ERROR, lineno; local 230 if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, argc TSRMLS_CC, "|sllslO!", &message, &message_len, &code, &severity, &filename, &filename_len, &lineno, &previous, default_exception_ce) == FAILURE) { 231 zend_error(E_ERROR, "Wrong parameters for ErrorException([string $exception [, long $code, [ long $severity, [ string $filename, [ long $lineno [, Exception $previous = NULL]]]]]])"); 253 lineno = 0; /* invalidate lineno */ 255 zend_update_property_long(default_exception_ce, object, "line", sizeof("line")-1, lineno TSRMLS_CC); 687 ZEND_ARG_INFO(0, lineno) 786 static void zend_error_va(int type, const char *file, uint lineno, const char *format, ...) /* {{{ */ argument 791 zend_error_cb(type, file, lineno, forma [all...] |
| H A D | zend_language_scanner.l | 214 lex_state->lineno = CG(zend_lineno); 239 CG(zend_lineno) = lex_state->lineno;
|
| H A D | zend_opcode.c | 414 op->lineno = CG(zend_lineno); 466 opline->lineno = (opline+1)->lineno;
|
| /PHP_5_4/sapi/fpm/fpm/ |
| H A D | fpm_php_trace.c | 73 uint lineno = 0; local 115 if (0 > fpm_trace_get_long(opline + offsetof(struct _zend_op, lineno), &l)) { 119 lineno = *lu; 122 fprintf(slowlog, " %s:%u\n", *buf ? buf : "unknown", lineno);
|
| /PHP_5_4/ext/mbstring/ucgendat/ |
| H A D | ucgendat.c | 822 ac_uint4 i, lineno, skip, code, ccl_code; local 826 lineno = skip = 0; 829 lineno++;
|
| /PHP_5_4/ext/standard/ |
| H A D | assert.c | 206 uint lineno = zend_get_executed_lineno(TSRMLS_C); local 214 ZVAL_LONG (args[1], lineno);
|
| /PHP_5_4/sapi/cli/ |
| H A D | php_cli.c | 616 static int cli_seek_file_begin(zend_file_handle *file_handle, char *script_file, int *lineno TSRMLS_DC) 620 *lineno = 1; 644 *lineno = 2; 667 int lineno = 0; local 928 if (cli_seek_file_begin(&file_handle, script_file, &lineno TSRMLS_CC) != SUCCESS) { 966 CG(start_lineno) = lineno; 1067 if (cli_seek_file_begin(&file_handle, script_file, &lineno TSRMLS_CC) != SUCCESS) { 1070 CG(start_lineno) = lineno;
|
| /PHP_5_4/ext/fileinfo/libmagic/ |
| H A D | file.h | 290 uint32_t lineno; /* line number in magic file */ member in struct:magic
|
| H A D | funcs.c | 88 size_t lineno) 95 if (lineno != 0) { 98 file_printf(ms, "line %" SIZE_T_FORMAT "u: ", lineno); 87 file_error_core(struct magic_set *ms, int error, const char *f, va_list va, size_t lineno) argument
|
| H A D | apprentice.c | 941 size_t lineno = 0; local 969 lineno++; 1009 switch (parse(ms, &me, line, lineno, action)) { 1082 ms->line = me[i].mp->lineno; 1491 size_t lineno, int action) 1563 m->lineno = CAST(uint32_t, lineno); 2942 m->lineno = swap4((uint32_t)m->lineno); 1490 parse(struct magic_set *ms, struct magic_entry *me, const char *line, size_t lineno, int action) argument
|
| H A D | softmagic.c | 154 ms->line = m->lineno; 220 ms->line = m->lineno; /* for messages */
|