full_path         843 ext/opcache/ZendAccelerator.c 		if (strcmp(persistent_script->full_path, file_handle->opened_path) != 0) {
full_path         852 ext/opcache/ZendAccelerator.c 		if (full_path_ptr && strcmp(persistent_script->full_path, full_path_ptr) != 0) {
full_path         880 ext/opcache/ZendAccelerator.c 	ps_handle.filename = persistent_script->full_path;
full_path         881 ext/opcache/ZendAccelerator.c 	ps_handle.opened_path = persistent_script->full_path;
full_path        1167 ext/opcache/ZendAccelerator.c 	bucket = zend_accel_hash_find_entry(&ZCSG(hash), new_persistent_script->full_path, new_persistent_script->full_path_len + 1);
full_path        1205 ext/opcache/ZendAccelerator.c 			new_persistent_script->full_path,
full_path        1214 ext/opcache/ZendAccelerator.c 	bucket = zend_accel_hash_update(&ZCSG(hash), new_persistent_script->full_path, new_persistent_script->full_path_len + 1, 0, new_persistent_script);
full_path        1216 ext/opcache/ZendAccelerator.c 		zend_accel_error(ACCEL_LOG_INFO, "Cached script '%s'", new_persistent_script->full_path);
full_path        1221 ext/opcache/ZendAccelerator.c 		     memcmp(new_persistent_script->full_path, key, key_length) != 0)) {
full_path        1453 ext/opcache/ZendAccelerator.c 		new_persistent_script->full_path = estrndup(file_handle->opened_path, new_persistent_script->full_path_len);
full_path        1456 ext/opcache/ZendAccelerator.c 		new_persistent_script->full_path = estrndup(file_handle->filename, new_persistent_script->full_path_len);
full_path        1458 ext/opcache/ZendAccelerator.c 	new_persistent_script->hash_value = zend_hash_func(new_persistent_script->full_path, new_persistent_script->full_path_len + 1);
full_path        1604 ext/opcache/ZendAccelerator.c 							 persistent_script->full_path, persistent_script->dynamic_members.checksum, checksum);
full_path        1658 ext/opcache/ZendAccelerator.c 		if (persistent_script->full_path) {
full_path        1670 ext/opcache/ZendAccelerator.c 				if (zend_hash_quick_add(&EG(included_files), persistent_script->full_path, persistent_script->full_path_len + 1, persistent_script->hash_value, &dummy, sizeof(void *), NULL) == SUCCESS) {
full_path        1672 ext/opcache/ZendAccelerator.c 					if (strstr(persistent_script->full_path, ".phar") && !strstr(persistent_script->full_path, "://")) {
full_path        1677 ext/opcache/ZendAccelerator.c 						memcpy(fname + sizeof("phar://") - 1, persistent_script->full_path, persistent_script->full_path_len + 1);
full_path        1871 ext/opcache/ZendAccelerator.c 					handle->opened_path = estrndup(persistent_script->full_path, persistent_script->full_path_len);
full_path        1873 ext/opcache/ZendAccelerator.c 					memcpy(ZCG(key), persistent_script->full_path, persistent_script->full_path_len + 1);
full_path        1887 ext/opcache/ZendAccelerator.c 					handle->opened_path = estrndup(persistent_script->full_path, persistent_script->full_path_len);
full_path        1966 ext/opcache/ZendAccelerator.c 				handle->opened_path = estrndup(persistent_script->full_path, persistent_script->full_path_len);
full_path        1979 ext/opcache/ZendAccelerator.c 					handle->opened_path = estrndup(persistent_script->full_path, persistent_script->full_path_len);
full_path        1981 ext/opcache/ZendAccelerator.c 					memcpy(ZCG(key), persistent_script->full_path, persistent_script->full_path_len + 1);
full_path        2032 ext/opcache/ZendAccelerator.c 					memcpy(ZCG(key), persistent_script->full_path, persistent_script->full_path_len + 1);
full_path        2036 ext/opcache/ZendAccelerator.c 					return estrndup(persistent_script->full_path, persistent_script->full_path_len);
full_path        2053 ext/opcache/ZendAccelerator.c 				return estrndup(persistent_script->full_path, persistent_script->full_path_len);
full_path         187 ext/opcache/ZendAccelerator.h 	char          *full_path;              /* full real path with resolved symlinks */
full_path         527 ext/opcache/zend_accelerator_module.c 			add_assoc_stringl(persistent_script_report, "full_path", script->full_path, script->full_path_len, 1);
full_path         149 ext/opcache/zend_accelerator_util_funcs.c 	if (persistent_script->full_path) {
full_path         150 ext/opcache/zend_accelerator_util_funcs.c 		efree(persistent_script->full_path);
full_path        1022 ext/opcache/zend_accelerator_util_funcs.c 		    persistent_script->full_path) {
full_path        1027 ext/opcache/zend_accelerator_util_funcs.c 			cfilename = persistent_script->full_path;
full_path        1054 ext/opcache/zend_accelerator_util_funcs.c 		CG(compiled_filename) = persistent_script->full_path;
full_path         712 ext/opcache/zend_persist.c 	zend_accel_store(script->full_path, script->full_path_len + 1);
full_path         370 ext/opcache/zend_persist_calc.c 	ADD_DUP_SIZE(new_persistent_script->full_path, new_persistent_script->full_path_len + 1);
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);