Lines Matching defs:config
218 struct anv_performance_configuration_intel *config;
220 config = vk_object_alloc(&device->vk, NULL, sizeof(*config),
222 if (!config)
226 config->register_config =
229 if (!config->register_config) {
230 vk_object_free(&device->vk, NULL, config);
236 config->register_config, NULL /* guid */);
238 ralloc_free(config->register_config);
239 vk_object_free(&device->vk, NULL, config);
243 config->config_id = ret;
246 *pConfiguration = anv_performance_configuration_intel_to_handle(config);
256 ANV_FROM_HANDLE(anv_performance_configuration_intel, config, _configuration);
259 intel_ioctl(device->fd, DRM_IOCTL_I915_PERF_REMOVE_CONFIG, &config->config_id);
261 ralloc_free(config->register_config);
263 vk_object_free(&device->vk, NULL, config);
273 ANV_FROM_HANDLE(anv_performance_configuration_intel, config, _configuration);
278 device->perf_fd = anv_device_perf_open(device, config->config_id);
283 (void *)(uintptr_t) config->config_id);
285 return vk_device_set_lost(&device->vk, "i915-perf config failed: %m");