Lines Matching defs:out_path
1165 VkResult get_settings_path_if_exists_in_registry_key(const struct loader_instance *inst, char **out_path, HKEY key) {
1171 *out_path = NULL;
1192 if (*out_path && !loader_platform_file_exists(name)) {
1197 *out_path = loader_instance_heap_calloc(inst, name_size + 1, VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE);
1198 if (*out_path == NULL) {
1201 loader_strncpy(*out_path, name_size + 1, name, name_size);
1202 (*out_path)[name_size] = '\0';
1211 VkResult windows_get_loader_settings_file_path(const struct loader_instance *inst, char **out_path) {
1216 *out_path = NULL;
1227 result = get_settings_path_if_exists_in_registry_key(inst, out_path, key);
1231 result = get_settings_path_if_exists_in_registry_key(inst, out_path, key);
1245 result = get_settings_path_if_exists_in_registry_key(inst, out_path, key);