Lines Matching refs:common_path
299 char common_path[PATH_MAX]; in ucode_gen_files_amd() local
305 (void) snprintf(common_path, PATH_MAX, "%s/%s", path, "container"); in ucode_gen_files_amd()
307 dprintf("path = %s\n", common_path); in ucode_gen_files_amd()
308 fd = open(common_path, O_WRONLY | O_CREAT | O_TRUNC, in ucode_gen_files_amd()
312 ucode_perror(common_path, EM_SYS); in ucode_gen_files_amd()
318 ucode_perror(common_path, EM_SYS); in ucode_gen_files_amd()
330 (void) snprintf(common_path, PATH_MAX, "%s/%s", path, in ucode_gen_files_amd()
334 dprintf("path = %s\n", common_path); in ucode_gen_files_amd()
335 fd = open(common_path, O_WRONLY | O_CREAT | O_TRUNC, in ucode_gen_files_amd()
339 ucode_perror(common_path, EM_SYS); in ucode_gen_files_amd()
345 ucode_perror(common_path, EM_SYS); in ucode_gen_files_amd()
366 (void) snprintf(common_path, PATH_MAX, "%s/%04X-%02X", path, in ucode_gen_files_amd()
375 char common_path[PATH_MAX]; in ucode_gen_files_intel() local
379 (void) snprintf(common_path, PATH_MAX, "%s/%s", path, in ucode_gen_files_intel()
382 if (mkdirp(common_path, 0755) == -1 && errno != EEXIST) { in ucode_gen_files_intel()
383 ucode_perror(common_path, EM_SYS); in ucode_gen_files_intel()
404 common_path, uhp->uh_signature, uhp->uh_proc_flags); in ucode_gen_files_intel()
506 if ((dirp = opendir(common_path)) == NULL) { in ucode_gen_files_intel()
507 ucode_perror(common_path, EM_SYS); in ucode_gen_files_intel()
516 "%s/%s", common_path, dp->d_name); in ucode_gen_files_intel()