Lines Matching defs:out_files
2815 // If the file found is a manifest file name, add it to the out_files manifest list.
2816 VkResult add_if_manifest_file(const struct loader_instance *inst, const char *file_name, struct loader_string_list *out_files) {
2820 assert(NULL != out_files && "add_if_manifest_file: Received NULL pointer for out_files");
2831 vk_result = copy_str_to_string_list(inst, out_files, file_name, name_len);
2840 VkResult add_data_files(const struct loader_instance *inst, char *search_path, struct loader_string_list *out_files,
2886 local_res = add_if_manifest_file(inst, name, out_files);
2911 local_res = add_if_manifest_file(inst, name, out_files);
2926 if (use_first_found_manifest && out_files->count > 0) {
2939 const char *path_override, bool *override_active, struct loader_string_list *out_files) {
3297 vk_result = add_data_files(inst, search_path, out_files, use_first_found_manifest);
3299 if (log_flags != 0 && out_files->count > 0) {
3301 for (uint32_t cur_file = 0; cur_file < out_files->count; ++cur_file) {
3302 loader_log(inst, log_flags, 0, " %s", out_files->list[cur_file]);
3355 // A string list of manifest files to be opened in out_files param.
3357 // When done using the list in out_files, pointers should be freed.
3368 const char *path_override, struct loader_string_list *out_files) {
3372 // Free and init the out_files information so there's no false data left from uninitialized variables.
3373 free_string_list(inst, out_files);
3375 res = read_data_files_in_search_paths(inst, manifest_type, path_override, &override_active, out_files);
3402 windows_read_data_files_in_registry(inst, manifest_type, warn_if_not_present, registry_location, out_files);
3404 if (VK_SUCCESS != tmp_res && out_files->count == 0) {
3414 free_string_list(inst, out_files);