Lines Matching defs:cur_path
2163 char cur_path[1024];
2164 char *ret = loader_platform_executable_path(cur_path, 1024);
2178 if (strcmp(props->app_key_paths.list[j], cur_path) == 0) {
2195 "--Override layer found but not used because app \'%s\' is not in \'app_keys\' list!", cur_path);
2197 // Remove non-global override layers that don't have an app_key that matches cur_path
2221 loader_log(inst, VULKAN_LOADER_INFO_BIT | VULKAN_LOADER_LAYER_BIT, 0, "Using the override layer for app key %s", cur_path);
2755 size_t determine_data_file_path_size(const char *cur_path, size_t relative_path_size) {
2758 if (NULL != cur_path) {
2759 // For each folder in cur_path, (detected by finding additional
2763 path_size += strlen(cur_path) + relative_path_size + 2;
2764 for (const char *x = cur_path; *x; ++x) {
2774 void copy_data_file_info(const char *cur_path, const char *relative_path, size_t relative_path_size, char **output_path) {
2775 if (NULL != cur_path) {
2780 while (cur_path[start] != '\0') {
2781 while (cur_path[start] == PATH_SEPARATOR) {
2785 while (cur_path[stop] != PATH_SEPARATOR && cur_path[stop] != '\0') {
2790 memcpy(cur_write, &cur_path[start], s);