Lines Matching defs:hwconfig
41 struct hwconfig {
131 const struct hwconfig *item);
135 const struct hwconfig *hwconfig,
139 assert(hwconfig);
141 const struct hwconfig *current = hwconfig;
142 const struct hwconfig *end =
143 (struct hwconfig*)(((uint32_t*)hwconfig) + (hwconfig_len / 4));
146 struct hwconfig *next =
147 (struct hwconfig*)((uint32_t*)current + 2 + current->len);
155 /* If devinfo->apply_hwconfig is true, then we apply the hwconfig value.
158 * hwconfig value with the current value in the devinfo and log a warning
160 * devinfo structures match what hwconfig is specified.
174 const struct hwconfig *item)
277 struct hwconfig *hwconfig;
279 hwconfig = intel_i915_query_alloc(fd, DRM_I915_QUERY_HWCONFIG_BLOB,
281 if (hwconfig) {
282 intel_process_hwconfig_table(devinfo, hwconfig, hwconfig_len,
284 free(hwconfig);
294 const struct hwconfig *item)
304 intel_print_hwconfig_table(const struct hwconfig *hwconfig,
307 intel_process_hwconfig_table(NULL, hwconfig, hwconfig_len,
314 struct hwconfig *hwconfig;
316 hwconfig = intel_i915_query_alloc(fd, DRM_I915_QUERY_HWCONFIG_BLOB,
318 if (hwconfig) {
319 intel_print_hwconfig_table(hwconfig, hwconfig_len);
320 free(hwconfig);