Lines Matching defs:library_path
2127 char *name, *type, *library_path, *api_version;
2136 * (required) ?library_path?
2182 GET_JSON_ITEM(layer_node, library_path)
2226 if (loader_platform_is_path(library_path)) {
2231 loader_expand_path(library_path, rel_base, MAX_STRING_SIZE, fullpath);
2234 loader_get_fullpath(library_path
2970 item = cJSON_GetObjectItem(itemICD, "library_path");
2975 "Can't find \"library_path\" in ICD JSON file "
2988 char *library_path = loader_stack_alloc(strlen(temp) + 1);
2989 if (NULL == library_path) {
2992 "Can't allocate space for \"library_path\" in ICD "
3001 strcpy(library_path, &temp[1]);
3003 if (strlen(library_path) == 0) {
3005 "Can't find \"library_path\" in ICD JSON file "
3017 library_path, DEFAULT_VK_DRIVERS_PATH);
3018 if (loader_platform_is_path(library_path)) {
3024 loader_expand_path(library_path, rel_base, sizeof(fullpath),
3028 loader_get_fullpath(library_path, DEFAULT_VK_DRIVERS_PATH,
3052 "Can't find \"library_path\" object in ICD JSON "