Home | History | Annotate | Download | only in windowsRuntimeInstaller

Lines Matching refs:extension

168 // name (input) - The name (excuding file extension) of the file to be updated
169 // extension (input) - The file extensions of the file to be updated
175 int update_system_file(FILE* log, const char* name, const char* extension, const char* path,
627 //int update_system_file(FILE* log, const char* name, const char* extension, const char* path,
629 int update_system_file(FILE* log, const char* name, const char* extension, const char* path,
634 int filter_size = snprintf(NULL, 0, pattern, path, name, abi_major, extension) + 1;
639 snprintf(filter, filter_size, pattern, path, name, abi_major, extension);
671 fprintf(log, "Didn't find any version of %s%s\n", name, extension);
675 fprintf(log, "Found latest version of %s%s: %ld.%ld.%ld.%ld\n", name, extension, latest_version->major,
682 int out_size = snprintf(NULL, 0, outPattern, path, name, abi_major, extension) + 1;
688 snprintf(output_filename, out_size, outPattern, path, name, abi_major, extension);
691 int out_size = snprintf(NULL, 0, outPattern, path, name, extension) + 1;
697 snprintf(output_filename, out_size, outPattern, path, name, extension);