Lines Matching refs:out_fullpath
1923 * The output is stored in out_fullpath by allocating a string - so its the caller's responsibility to free it
1930 const char *manifest_file_path, char **out_fullpath) {
1931 assert(library_path && manifest_file_path && out_fullpath);
1933 *out_fullpath = library_path;
1949 *out_fullpath = library_path;
1955 *out_fullpath = loader_instance_heap_calloc(inst, new_str_len, VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE);
1956 if (NULL == *out_fullpath) {
1973 loader_strncpy(*out_fullpath, new_str_len, manifest_file_path, last_directory_symbol);
1976 loader_strncpy(&(*out_fullpath)[cur_loc_in_out_fullpath], new_str_len - cur_loc_in_out_fullpath, library_path,
1979 (*out_fullpath)[cur_loc_in_out_fullpath] = '\0';
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) {
2002 int path_concat_ret = snprintf(out_fullpath, out_size, "%s%c%s", dir, DIRECTORY_SYMBOL, file);
2006 if (loader_platform_file_exists(out_fullpath)) {
2014 (void)snprintf(out_fullpath, out_size, "%s", file);