full_path         862 ext/opcache/ZendAccelerator.c 		if (persistent_script->full_path != file_handle->opened_path &&
full_path         863 ext/opcache/ZendAccelerator.c 		    (ZSTR_LEN(persistent_script->full_path) != ZSTR_LEN(file_handle->opened_path) ||
full_path         864 ext/opcache/ZendAccelerator.c 		     memcmp(ZSTR_VAL(persistent_script->full_path), ZSTR_VAL(file_handle->opened_path), ZSTR_LEN(file_handle->opened_path)) != 0)) {
full_path         870 ext/opcache/ZendAccelerator.c 		    persistent_script->full_path != full_path_ptr &&
full_path         871 ext/opcache/ZendAccelerator.c 		    (ZSTR_LEN(persistent_script->full_path) != ZSTR_LEN(full_path_ptr) ||
full_path         872 ext/opcache/ZendAccelerator.c 		     memcmp(ZSTR_VAL(persistent_script->full_path), ZSTR_VAL(full_path_ptr), ZSTR_LEN(full_path_ptr)) != 0)) {
full_path         900 ext/opcache/ZendAccelerator.c 	ps_handle.filename = ZSTR_VAL(persistent_script->full_path);
full_path         901 ext/opcache/ZendAccelerator.c 	ps_handle.opened_path = persistent_script->full_path;
full_path        1193 ext/opcache/ZendAccelerator.c 		new_persistent_script->full_path &&
full_path        1194 ext/opcache/ZendAccelerator.c 		strstr(ZSTR_VAL(new_persistent_script->full_path), ".phar") &&
full_path        1195 ext/opcache/ZendAccelerator.c 		!strstr(ZSTR_VAL(new_persistent_script->full_path), "://");
full_path        1202 ext/opcache/ZendAccelerator.c 			ZSTR_VAL(new_persistent_script->full_path),
full_path        1245 ext/opcache/ZendAccelerator.c 	bucket = zend_accel_hash_find_entry(&ZCSG(hash), new_persistent_script->full_path);
full_path        1287 ext/opcache/ZendAccelerator.c 		new_persistent_script->full_path &&
full_path        1288 ext/opcache/ZendAccelerator.c 		strstr(ZSTR_VAL(new_persistent_script->full_path), ".phar") &&
full_path        1289 ext/opcache/ZendAccelerator.c 		!strstr(ZSTR_VAL(new_persistent_script->full_path), "://");
full_path        1296 ext/opcache/ZendAccelerator.c 			ZSTR_VAL(new_persistent_script->full_path),
full_path        1305 ext/opcache/ZendAccelerator.c 	bucket = zend_accel_hash_update(&ZCSG(hash), ZSTR_VAL(new_persistent_script->full_path), ZSTR_LEN(new_persistent_script->full_path), 0, new_persistent_script);
full_path        1307 ext/opcache/ZendAccelerator.c 		zend_accel_error(ACCEL_LOG_INFO, "Cached script '%s'", new_persistent_script->full_path);
full_path        1311 ext/opcache/ZendAccelerator.c 		    (ZSTR_LEN(new_persistent_script->full_path) != key_length ||
full_path        1312 ext/opcache/ZendAccelerator.c 		     memcmp(ZSTR_VAL(new_persistent_script->full_path), key, key_length) != 0)) {
full_path        1539 ext/opcache/ZendAccelerator.c 		new_persistent_script->full_path = zend_string_copy(file_handle->opened_path);
full_path        1541 ext/opcache/ZendAccelerator.c 		new_persistent_script->full_path = zend_string_init(file_handle->filename, strlen(file_handle->filename), 0);
full_path        1543 ext/opcache/ZendAccelerator.c 	zend_string_hash_val(new_persistent_script->full_path);
full_path        1579 ext/opcache/ZendAccelerator.c 		if (persistent_script->full_path) {
full_path        1586 ext/opcache/ZendAccelerator.c 				if (zend_hash_add_empty_element(&EG(included_files), persistent_script->full_path) != NULL) {
full_path        1590 ext/opcache/ZendAccelerator.c 						char *fname = emalloc(sizeof("phar://") + ZSTR_LEN(persistent_script->full_path));
full_path        1593 ext/opcache/ZendAccelerator.c 						memcpy(fname + sizeof("phar://") - 1, ZSTR_VAL(persistent_script->full_path), ZSTR_LEN(persistent_script->full_path) + 1);
full_path        1760 ext/opcache/ZendAccelerator.c 							 persistent_script->full_path, persistent_script->dynamic_members.checksum, checksum);
full_path        1837 ext/opcache/ZendAccelerator.c 		if (persistent_script->full_path) {
full_path        1844 ext/opcache/ZendAccelerator.c 				if (zend_hash_add_empty_element(&EG(included_files), persistent_script->full_path) != NULL) {
full_path        1848 ext/opcache/ZendAccelerator.c 						char *fname = emalloc(sizeof("phar://") + ZSTR_LEN(persistent_script->full_path));
full_path        1851 ext/opcache/ZendAccelerator.c 						memcpy(fname + sizeof("phar://") - 1, ZSTR_VAL(persistent_script->full_path), ZSTR_LEN(persistent_script->full_path) + 1);
full_path        1890 ext/opcache/ZendAccelerator.c 			handle->opened_path = zend_string_copy(ZCG(cache_persistent_script)->full_path);
full_path        1932 ext/opcache/ZendAccelerator.c 							return zend_string_copy(persistent_script->full_path);
full_path         159 ext/opcache/ZendAccelerator.h 	zend_string   *full_path;              /* full real path with resolved symlinks */
full_path         556 ext/opcache/zend_accelerator_module.c 			add_assoc_str(&persistent_script_report, "full_path", zend_string_dup(script->full_path, 0));
full_path          98 ext/opcache/zend_accelerator_util_funcs.c 	if (persistent_script->full_path) {
full_path          99 ext/opcache/zend_accelerator_util_funcs.c 		zend_string_release(persistent_script->full_path);
full_path         713 ext/opcache/zend_accelerator_util_funcs.c 		    persistent_script->full_path) {
full_path         717 ext/opcache/zend_accelerator_util_funcs.c 			name = zend_mangle_property_name(haltoff, sizeof(haltoff) - 1, ZSTR_VAL(persistent_script->full_path), ZSTR_LEN(persistent_script->full_path), 0);
full_path         737 ext/opcache/zend_accelerator_util_funcs.c 		CG(compiled_filename) = persistent_script->full_path;
full_path         663 ext/opcache/zend_file_cache.c 	SERIALIZE_STR(new_script->full_path);
full_path         715 ext/opcache/zend_file_cache.c 	filename = zend_file_cache_get_bin_file_path(script->full_path);
full_path        1196 ext/opcache/zend_file_cache.c 	UNSERIALIZE_STR(script->full_path);
full_path        1209 ext/opcache/zend_file_cache.c 	zend_string *full_path = file_handle->opened_path;
full_path        1218 ext/opcache/zend_file_cache.c 	if (!full_path) {
full_path        1221 ext/opcache/zend_file_cache.c 	filename = zend_file_cache_get_bin_file_path(full_path);
full_path        1316 ext/opcache/zend_file_cache.c 		bucket = zend_accel_hash_find_entry(&ZCSG(hash), full_path);
full_path        1365 ext/opcache/zend_file_cache.c 		zend_accel_hash_update(&ZCSG(hash), ZSTR_VAL(script->full_path), ZSTR_LEN(script->full_path), 0, script);
full_path        1375 ext/opcache/zend_file_cache.c void zend_file_cache_invalidate(zend_string *full_path)
full_path        1379 ext/opcache/zend_file_cache.c 	filename = zend_file_cache_get_bin_file_path(full_path);
full_path          24 ext/opcache/zend_file_cache.h void zend_file_cache_invalidate(zend_string *full_path);
full_path         909 ext/opcache/zend_persist.c 	zend_accel_store_string(script->full_path);
full_path         400 ext/opcache/zend_persist_calc.c 	ADD_STRING(new_persistent_script->full_path);
full_path         688 sapi/fpm/fpm/fpm_conf.c 	char *full_path;
full_path         730 sapi/fpm/fpm/fpm_conf.c 		spprintf(&full_path, 0, "%s/%s", prefix, *path);
full_path         732 sapi/fpm/fpm/fpm_conf.c 		*path = strdup(full_path);
full_path         733 sapi/fpm/fpm/fpm_conf.c 		efree(full_path);