Lines Matching refs:full_path

899 		if (persistent_script->full_path != file_handle->opened_path &&  in do_validate_timestamps()
900 (ZSTR_LEN(persistent_script->full_path) != ZSTR_LEN(file_handle->opened_path) || in do_validate_timestamps()
901 …memcmp(ZSTR_VAL(persistent_script->full_path), ZSTR_VAL(file_handle->opened_path), ZSTR_LEN(file_h… in do_validate_timestamps()
907 persistent_script->full_path != full_path_ptr && in do_validate_timestamps()
908 (ZSTR_LEN(persistent_script->full_path) != ZSTR_LEN(full_path_ptr) || in do_validate_timestamps()
909 …memcmp(ZSTR_VAL(persistent_script->full_path), ZSTR_VAL(full_path_ptr), ZSTR_LEN(full_path_ptr)) !… in do_validate_timestamps()
937 ps_handle.filename = ZSTR_VAL(persistent_script->full_path); in do_validate_timestamps()
938 ps_handle.opened_path = persistent_script->full_path; in do_validate_timestamps()
1241 new_persistent_script->full_path && in cache_script_in_file_cache()
1242 strstr(ZSTR_VAL(new_persistent_script->full_path), ".phar") && in cache_script_in_file_cache()
1243 !strstr(ZSTR_VAL(new_persistent_script->full_path), "://"); in cache_script_in_file_cache()
1250 ZSTR_VAL(new_persistent_script->full_path), in cache_script_in_file_cache()
1293 bucket = zend_accel_hash_find_entry(&ZCSG(hash), new_persistent_script->full_path); in cache_script_in_shared_memory()
1335 new_persistent_script->full_path && in cache_script_in_shared_memory()
1336 strstr(ZSTR_VAL(new_persistent_script->full_path), ".phar") && in cache_script_in_shared_memory()
1337 !strstr(ZSTR_VAL(new_persistent_script->full_path), "://"); in cache_script_in_shared_memory()
1344 ZSTR_VAL(new_persistent_script->full_path), in cache_script_in_shared_memory()
1353 …date(&ZCSG(hash), ZSTR_VAL(new_persistent_script->full_path), ZSTR_LEN(new_persistent_script->full… in cache_script_in_shared_memory()
1355 …zend_accel_error(ACCEL_LOG_INFO, "Cached script '%s'", ZSTR_VAL(new_persistent_script->full_path)); in cache_script_in_shared_memory()
1359 (ZSTR_LEN(new_persistent_script->full_path) != key_length || in cache_script_in_shared_memory()
1360 memcmp(ZSTR_VAL(new_persistent_script->full_path), key, key_length) != 0)) { in cache_script_in_shared_memory()
1587 new_persistent_script->full_path = zend_string_copy(file_handle->opened_path); in opcache_compile_file()
1589 …new_persistent_script->full_path = zend_string_init(file_handle->filename, strlen(file_handle->fil… in opcache_compile_file()
1591 zend_string_hash_val(new_persistent_script->full_path); in opcache_compile_file()
1627 if (persistent_script->full_path) { in file_cache_compile_file()
1634 if (zend_hash_add_empty_element(&EG(included_files), persistent_script->full_path) != NULL) { in file_cache_compile_file()
1638 char *fname = emalloc(sizeof("phar://") + ZSTR_LEN(persistent_script->full_path)); in file_cache_compile_file()
1641 … sizeof("phar://") - 1, ZSTR_VAL(persistent_script->full_path), ZSTR_LEN(persistent_script->full_p… in file_cache_compile_file()
1786 UNEXPECTED(access(ZSTR_VAL(persistent_script->full_path), R_OK) != 0)) { in persistent_compile_file()
1825 … ZSTR_VAL(persistent_script->full_path), persistent_script->dynamic_members.checksum, checksum); in persistent_compile_file()
1902 if (persistent_script->full_path) { in persistent_compile_file()
1909 if (zend_hash_add_empty_element(&EG(included_files), persistent_script->full_path) != NULL) { in persistent_compile_file()
1913 char *fname = emalloc(sizeof("phar://") + ZSTR_LEN(persistent_script->full_path)); in persistent_compile_file()
1916 … sizeof("phar://") - 1, ZSTR_VAL(persistent_script->full_path), ZSTR_LEN(persistent_script->full_p… in persistent_compile_file()
1955 handle->opened_path = zend_string_copy(ZCG(cache_persistent_script)->full_path); in persistent_stream_open_function()
1997 return zend_string_copy(persistent_script->full_path); in persistent_zend_resolve_path()