Home
last modified time | relevance | path

Searched refs:new_compiled_filename (Results 1 – 3 of 3) sorted by relevance

/PHP-7.4/Zend/
H A Dzend_language_scanner.l694 zend_string *new_compiled_filename; in zend_prepare_string_for_scanning() local
727 new_compiled_filename = zend_string_init(filename, strlen(filename), 0); in zend_prepare_string_for_scanning()
728 zend_set_compiled_filename(new_compiled_filename); in zend_prepare_string_for_scanning()
729 zend_string_release_ex(new_compiled_filename, 0); in zend_prepare_string_for_scanning()
H A Dzend_compile.h731 ZEND_API zend_string *zend_set_compiled_filename(zend_string *new_compiled_filename);
H A Dzend_compile.c394 ZEND_API zend_string *zend_set_compiled_filename(zend_string *new_compiled_filename) /* {{{ */ in zend_set_compiled_filename() argument
398 if ((p = zend_hash_find(&CG(filenames_table), new_compiled_filename))) { in zend_set_compiled_filename()
404 new_compiled_filename = zend_new_interned_string(zend_string_copy(new_compiled_filename)); in zend_set_compiled_filename()
405 ZVAL_STR(&rv, new_compiled_filename); in zend_set_compiled_filename()
406 zend_hash_add_new(&CG(filenames_table), new_compiled_filename, &rv); in zend_set_compiled_filename()
408 CG(compiled_filename) = new_compiled_filename; in zend_set_compiled_filename()
409 return new_compiled_filename; in zend_set_compiled_filename()

Completed in 40 milliseconds