Lines Matching defs:file

11  * you may not use this file except in compliance with the License.
74 // Generated file containing all the extension data
1146 // The extension itself should be in a separate file that will be linked directly
1899 // Get next file or dirname given a string list or registry key path
1987 // Given a filename (file) and a list of paths (in_dirs), try to find an existing
1988 // file in the paths. If filename already is a path then no searching in the given paths.
1990 // @return - A string in out_fullpath of either the full path or file.
1991 void loader_get_fullpath(const char *file, const char *in_dirs, size_t out_size, char *out_fullpath) {
1992 if (!loader_platform_is_path(file) && *in_dirs) {
1997 // find if file exists after prepending paths in given list
2002 int path_concat_ret = snprintf(out_fullpath, out_size, "%s%c%s", dir, DIRECTORY_SYMBOL, file);
2014 (void)snprintf(out_fullpath, out_size, "%s", file);
2253 "Layer located at %s didn't find required layer value \"name\" in manifest JSON file, skipping this layer",
2274 "Layer located at %s didn't find required layer value \"type\" in manifest JSON file, skipping this layer",
2304 "Layer located at %s didn't find required layer value \"api_version\" in manifest JSON file, skipping this layer",
2327 "Layer located at %s didn't find required layer value \"implementation_version\" in manifest JSON file, "
2342 "Layer located at %s didn't find required layer value \"description\" in manifest JSON file, skipping this layer",
2367 "Skipping layer due to problem accessing the library_path value in manifest JSON file %s", filename);
2382 "Indicating meta-layer-specific component_layers, but using older JSON file version.");
2418 "Indicating meta-layer-specific override paths, but using older JSON file version.");
2427 "Didn't find required layer object disable_environment in manifest JSON file, skipping this layer");
2434 "Didn't find required layer child value disable_environment in manifest JSON file, skipping this layer "
2455 // vkNegotiateLoaderLayerInterfaceVersion (starting with JSON file 1.1.0)
2469 "file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for "
2480 "file version 1.1.0. The new vkNegotiateLoaderLayerInterfaceVersion function is preferred, though for "
2652 // file, add entry to the layer_list. Fill out the layer_properties in this list
2662 // The following Fields in layer manifest file that are required:
2683 loader_log(inst, VULKAN_LOADER_INFO_BIT, 0, "Found manifest file %s (file version %s)", filename, file_vers);
2689 "loader_add_layer_properties: %s has unknown layer manifest file version %d.%d.%d. May cause errors.", filename,
2700 "loader_add_layer_properties: \'layers\' tag not supported until file version 1.0.1, but %s is reporting "
2708 "loader_add_layer_properties: Can not find 'layers' array element %d object in manifest JSON file %s. "
2709 "Skipping this file",
2720 "loader_add_layer_properties: Can not find 'layer' object in manifest JSON file %s. Skipping this file.",
2724 // Loop through all "layer" objects in the file to get a count of them
2733 // Throw a warning if we encounter multiple "layer" objects in file
2738 "loader_add_layer_properties: Multiple 'layer' nodes are deprecated starting in file version \"1.0.1\". "
2793 // If this is a specific JSON file, just add it and don't add any
2815 // If the file found is a manifest file name, add it to the out_files manifest list.
2860 // Is this a JSON file, then try to open it.
2888 // Incomplete means this was not a valid data file.
2913 // Incomplete means this was not a valid data file.
3183 // file system. (RSW)
3425 // Takes a json file, opens, reads, and parses an ICD Manifest out of it.
3466 loader_log(inst, VULKAN_LOADER_DRIVER_BIT, 0, "Found ICD manifest file %s, version %s", file_str, file_vers_str);
3474 "loader_parse_icd_manifest: %s has unknown icd manifest file version %d.%d.%d. May cause errors.", file_str,
3481 "loader_parse_icd_manifest: Can not find \'ICD\' object in ICD JSON file %s. Skipping ICD JSON", file_str);
3489 "loader_parse_icd_manifest: Failed to find \'library_path\' object in ICD JSON file %s. Skipping ICD JSON.",
3746 // Parse file into JSON struct
4940 // The Get*ProcAddr pointers will already be filled in if they were received from either the json file or the
5102 "loader_validate_layers: Layer %d was explicitly prevented from being enabled by the loader settings file",