Home
last modified time | relevance | path

Searched refs:filename (Results 1 – 25 of 1115) sorted by path

12345678910>>...45

/PHP-7.2/
H A D.gdbinit140 printf "%s:%d ", $func->op_array.filename->val, $ex->opline->lineno
H A DINSTALL1465 Two new INI directives, user_ini.filename and user_ini.cache_ttl
1468 user_ini.filename sets the name of the file PHP looks for in each
H A DNEWS3055 . Implemented FR #72653 (SQLite should allow opening with empty filename).
H A DREADME.EXT_SKEL46 --proto=filename.
H A DREADME.STREAMS245 PHPAPI php_stream * php_stream_fopen(const char * filename, const char * mode)
247 FILE * fp = fopen(filename, mode);
H A DREADME.TESTING288 PATH_TRANSLATED=$filename
95 $filename full native path to file, will become PATH_TRANSLATED
96 $filepath =dirname($filename)
H A DUPGRADING.INTERNALS27 …- PHPAPI void php_clear_stat_cache(zend_bool clear_realpath_cache, const char *filename, size_t fi…
28 …- PHPAPI void php_stat(const char *filename, size_t filename_length, int type, zval *return_value);
/PHP-7.2/TSRM/
H A Dtsrm_win32.c813 TSRM_API int win32_utime(const char *filename, struct utimbuf *buf) /* {{{ */ in win32_utime() argument
817 PHP_WIN32_IOUTIL_INIT_W(filename) in win32_utime()
H A Dtsrm_win32.h107 TSRM_API int win32_utime(const char *filename, struct utimbuf *buf);
/PHP-7.2/Zend/tests/
H A Dbug38047.phpt14 function kalus_error_handler($error_code, $error_string, $filename, $line, $symbols) {
H A Dbug38779_1.phpt33 $filename = dirname(__FILE__)."/bug38779.txt";
34 $fp1 = fopen($filename, "w");
38 include $filename;
45 $filename = dirname(__FILE__)."/bug38779.txt";
46 if (file_exists($filename)) {
H A Dclass_constants_003.phpt14 $filename = dirname(__FILE__)."/cc003.dat";
15 file_put_contents($filename, $class_data);
21 include $filename;
26 unlink($filename);
H A Dexception_020.phpt11 …orException([string $message [, long $code, [ long $severity, [ string $filename, [ long $lineno …
H A Duse_no_eval_conflict.phpt7 * as this forces them to have the same filename. */
/PHP-7.2/Zend/
H A Dzend.c70 ZEND_API FILE *(*zend_fopen)(const char *filename, zend_string **opened_path);
71 ZEND_API int (*zend_stream_open_function)(const char *filename, zend_file_handle *handle);
78 ZEND_API zend_string *(*zend_resolve_path)(const char *filename, int filename_len);
460 static FILE *zend_fopen_wrapper(const char *filename, zend_string **opened_path) /* {{{ */ in zend_fopen_wrapper() argument
463 *opened_path = zend_string_init(filename, strlen(filename), 0); in zend_fopen_wrapper()
465 return fopen(filename, "rb"); in zend_fopen_wrapper()
958 ZEND_API ZEND_COLD void _zend_bailout(const char *filename, uint32_t lineno) /* {{{ */ in BEGIN_EXTERN_C()
962 zend_output_debug_string(1, "%s(%d) : Bailed out without a bailout address!", filename, lineno); in BEGIN_EXTERN_C()
H A Dzend.h167 zend_string *filename; member
183 FILE *(*fopen_function)(const char *filename, zend_string **opened_path);
188 int (*stream_open_function)(const char *filename, zend_file_handle *handle);
192 zend_string *(*resolve_path_function)(const char *filename, int filename_len);
228 ZEND_API ZEND_COLD void _zend_bailout(const char *filename, uint32_t lineno);
263 extern ZEND_API FILE *(*zend_fopen)(const char *filename, zend_string **opened_path);
268 extern ZEND_API int (*zend_stream_open_function)(const char *filename, zend_file_handle *handle);
272 extern ZEND_API zend_string *(*zend_resolve_path)(const char *filename, int filename_len);
H A Dzend_alloc.c370 const char *filename, in zend_mm_safe_error() argument
382 filename, in zend_mm_safe_error()
1350 dbg->filename = __zend_filename;
1993 if (dbg->filename == leak->filename && dbg->lineno == leak->lineno) {
1996 dbg->filename = NULL;
2026 if (dbg->filename == leak->filename && dbg->lineno == leak->lineno) {
2048 if (p->dbg.filename == list->dbg.filename && p->dbg.lineno == list->dbg.lineno) {
2078 leak.filename = list->dbg.filename;
2111 leak.filename = dbg->filename;
2120 dbg->filename = NULL;
[all …]
H A Dzend_alloc.h51 const char *filename; member
60 const char *filename; member
H A Dzend_builtin_functions.c2210 const char *filename; in ZEND_FUNCTION() local
2253 filename = ZSTR_VAL(skip->func->op_array.filename); in ZEND_FUNCTION()
2264 filename = NULL; in ZEND_FUNCTION()
2368 if (filename) { in ZEND_FUNCTION()
2392 include_filename = filename; in ZEND_FUNCTION()
2408 zend_string *filename; in zend_fetch_debug_backtrace() local
2462 filename = skip->func->op_array.filename; in zend_fetch_debug_backtrace()
2472 ZVAL_STR_COPY(&tmp, filename); in zend_fetch_debug_backtrace()
2492 ZVAL_STR_COPY(&tmp, prev->func->op_array.filename); in zend_fetch_debug_backtrace()
2501 filename = NULL; in zend_fetch_debug_backtrace()
[all …]
H A Dzend_compile.c82 ZEND_API zend_op_array *(*zend_compile_string)(zval *source_string, char *filename);
126 zend_string *filename = CG(active_op_array)->filename; in zend_build_runtime_definition_key() local
129 result = zend_string_alloc(1 + ZSTR_LEN(name) + ZSTR_LEN(filename) + char_pos_len, 0); in zend_build_runtime_definition_key()
1101 ZSTR_VAL(old_function->op_array.filename), in do_bind_function()
6268 zend_string *filename = CG(active_op_array)->filename; in zend_generate_anon_class_name() local
6324 ce->info.user.filename = zend_get_compiled_filename(); in zend_compile_class_decl()
6774 zend_string *filename, *name; in zend_compile_halt_compiler() local
6782 filename = zend_get_compiled_filename(); in zend_compile_halt_compiler()
6784 ZSTR_VAL(filename), ZSTR_LEN(filename), 0); in zend_compile_halt_compiler()
6805 zend_string *filename = CG(compiled_filename); in zend_try_ct_eval_magic_const() local
[all …]
H A Dzend_compile.h393 zend_string *filename; member
716 extern ZEND_API zend_op_array *(*zend_compile_string)(zval *source_string, char *filename);
774 ZEND_API zend_op_array *compile_string(zval *source_string, char *filename);
775 ZEND_API zend_op_array *compile_filename(int type, zval *filename);
H A Dzend_dtrace.c40 return ZSTR_VAL(ex->func->op_array.filename); in dtrace_get_executed_filename()
49 DTRACE_COMPILE_FILE_ENTRY(ZSTR_VAL(file_handle->opened_path), (char *)file_handle->filename); in dtrace_compile_file()
60 const char *scope, *filename, *funcname, *classname; in dtrace_execute_ex() local
61 scope = filename = funcname = classname = NULL; in dtrace_execute_ex()
66 filename = dtrace_get_executed_filename(); in dtrace_execute_ex()
76 DTRACE_EXECUTE_ENTRY((char *)filename, lineno); in dtrace_execute_ex()
90 DTRACE_EXECUTE_RETURN((char *)filename, lineno); in dtrace_execute_ex()
97 const char *filename; in dtrace_execute_internal() local
99 filename = dtrace_get_executed_filename(); in dtrace_execute_internal()
104 DTRACE_EXECUTE_ENTRY((char *)filename, lineno); in dtrace_execute_internal()
[all …]
H A Dzend_exceptions.c208 zend_string *filename; in zend_default_exception_new_ex() local
224 if (EXPECTED(class_type != zend_ce_parse_error || !(filename = zend_get_compiled_filename()))) { in zend_default_exception_new_ex()
231 ZVAL_STR(&tmp, filename); in zend_default_exception_new_ex()
337 char *message = NULL, *filename = NULL; in ZEND_METHOD() local
343 …AMS_QUIET, argc, "|sllslO!", &message, &message_len, &code, &severity, &filename, &filename_len, &… in ZEND_METHOD()
378 ZVAL_STRING(&tmp, filename); in ZEND_METHOD()
806 ZEND_ARG_INFO(0, filename)
960 static void zend_error_helper(int type, const char *filename, const uint32_t lineno, const char *fo… in zend_error_helper() argument
965 zend_error_cb(type, filename, lineno, format, va); in zend_error_helper()
H A Dzend_execute.c733 ZSTR_VAL(ptr->func->op_array.filename), ptr->opline->lineno); in zend_verify_arg_error()
923 ZSTR_VAL(ptr->func->op_array.filename), in zend_missing_arg_error()
H A Dzend_execute_API.c469 return ZSTR_VAL(ex->func->op_array.filename); in zend_get_executed_filename()
484 return ex->func->op_array.filename; in zend_get_executed_filename_ex()

Completed in 124 milliseconds

12345678910>>...45