full_path_len    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_len    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_len    1220 ext/opcache/ZendAccelerator.c 		    (new_persistent_script->full_path_len != key_length ||
full_path_len    1452 ext/opcache/ZendAccelerator.c 		new_persistent_script->full_path_len = strlen(file_handle->opened_path);
full_path_len    1453 ext/opcache/ZendAccelerator.c 		new_persistent_script->full_path = estrndup(file_handle->opened_path, new_persistent_script->full_path_len);
full_path_len    1455 ext/opcache/ZendAccelerator.c 		new_persistent_script->full_path_len = strlen(file_handle->filename);
full_path_len    1456 ext/opcache/ZendAccelerator.c 		new_persistent_script->full_path = estrndup(file_handle->filename, new_persistent_script->full_path_len);
full_path_len    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_len    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_len    1674 ext/opcache/ZendAccelerator.c 						char *fname = emalloc(sizeof("phar://") + persistent_script->full_path_len);
full_path_len    1677 ext/opcache/ZendAccelerator.c 						memcpy(fname + sizeof("phar://") - 1, persistent_script->full_path, persistent_script->full_path_len + 1);
full_path_len    1871 ext/opcache/ZendAccelerator.c 					handle->opened_path = estrndup(persistent_script->full_path, persistent_script->full_path_len);
full_path_len    1873 ext/opcache/ZendAccelerator.c 					memcpy(ZCG(key), persistent_script->full_path, persistent_script->full_path_len + 1);
full_path_len    1874 ext/opcache/ZendAccelerator.c 					ZCG(key_len) = persistent_script->full_path_len;
full_path_len    1887 ext/opcache/ZendAccelerator.c 					handle->opened_path = estrndup(persistent_script->full_path, persistent_script->full_path_len);
full_path_len    1966 ext/opcache/ZendAccelerator.c 				handle->opened_path = estrndup(persistent_script->full_path, persistent_script->full_path_len);
full_path_len    1979 ext/opcache/ZendAccelerator.c 					handle->opened_path = estrndup(persistent_script->full_path, persistent_script->full_path_len);
full_path_len    1981 ext/opcache/ZendAccelerator.c 					memcpy(ZCG(key), persistent_script->full_path, persistent_script->full_path_len + 1);
full_path_len    1982 ext/opcache/ZendAccelerator.c 					ZCG(key_len) = persistent_script->full_path_len;
full_path_len    2032 ext/opcache/ZendAccelerator.c 					memcpy(ZCG(key), persistent_script->full_path, persistent_script->full_path_len + 1);
full_path_len    2033 ext/opcache/ZendAccelerator.c 					ZCG(key_len) = persistent_script->full_path_len;
full_path_len    2036 ext/opcache/ZendAccelerator.c 					return estrndup(persistent_script->full_path, persistent_script->full_path_len);
full_path_len    2053 ext/opcache/ZendAccelerator.c 				return estrndup(persistent_script->full_path, persistent_script->full_path_len);
full_path_len     188 ext/opcache/ZendAccelerator.h 	unsigned int   full_path_len;
full_path_len     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_len     712 ext/opcache/zend_persist.c 	zend_accel_store(script->full_path, script->full_path_len + 1);
full_path_len     370 ext/opcache/zend_persist_calc.c 	ADD_DUP_SIZE(new_persistent_script->full_path, new_persistent_script->full_path_len + 1);