Home
last modified time | relevance | path

Searched refs:tmpname (Results 1 – 7 of 7) sorted by relevance

/linux/scripts/dtc/
H A Dfstree.c25 char *tmpname; in read_fstree() local
31 tmpname = join_path(dirname, de->d_name); in read_fstree()
33 if (stat(tmpname, &st) < 0) in read_fstree()
34 die("stat(%s): %s\n", tmpname, strerror(errno)); in read_fstree()
40 pfile = fopen(tmpname, "rb"); in read_fstree()
44 tmpname, strerror(errno)); in read_fstree()
56 newchild = read_fstree(tmpname); in read_fstree()
61 free(tmpname); in read_fstree()
/linux/fs/isofs/
H A Dnamei.c38 char *tmpname, struct iso_directory_record *tmpde) in isofs_find_entry() argument
110 ((i = get_rock_ridge_filename(de, tmpname, dir)))) { in isofs_find_entry()
112 dpnt = tmpname; in isofs_find_entry()
115 dlen = get_joliet_filename(de, tmpname, dir); in isofs_find_entry()
116 dpnt = tmpname; in isofs_find_entry()
119 dlen = get_acorn_filename(de, tmpname, dir); in isofs_find_entry()
120 dpnt = tmpname; in isofs_find_entry()
122 dlen = isofs_name_translate(de, tmpname, dir); in isofs_find_entry()
123 dpnt = tmpname; in isofs_find_entry()
/linux/tools/testing/selftests/mm/
H A Dcheck_config.sh10 tmpname=$(mktemp)
11 tmpfile_c=${tmpname}.c
12 tmpfile_o=${tmpname}.o
31 rm ${tmpname}.*
/linux/scripts/kconfig/
H A Dconfdata.c810 char tmpname[PATH_MAX + 1], oldname[PATH_MAX + 1]; in conf_write() local
832 *tmpname = 0; in conf_write()
835 snprintf(tmpname, sizeof(tmpname), "%s.%d.tmp", in conf_write()
837 out = fopen(tmpname, "w"); in conf_write()
898 if (*tmpname) { in conf_write()
899 if (is_same(name, tmpname)) { in conf_write()
901 unlink(tmpname); in conf_write()
908 if (rename(tmpname, name)) in conf_write()
/linux/sound/synth/emux/
H A Demux_oss.c101 char tmpname[64]; in snd_emux_open_seq_oss() local
114 sprintf(tmpname, "%s OSS Port", emu->name); in snd_emux_open_seq_oss()
115 p = snd_emux_create_port(emu, tmpname, 32, in snd_emux_open_seq_oss()
/linux/kernel/
H A Drelay.c359 char *tmpname; in relay_create_buf_file() local
361 tmpname = kasprintf(GFP_KERNEL, "%s%d", chan->base_filename, cpu); in relay_create_buf_file()
362 if (!tmpname) in relay_create_buf_file()
366 dentry = chan->cb->create_buf_file(tmpname, chan->parent, in relay_create_buf_file()
372 kfree(tmpname); in relay_create_buf_file()
/linux/security/apparmor/
H A Dpolicy_unpack.c848 const char *tmpname, *tmpns = NULL, *name = NULL; in unpack_profile() local
868 tmpname = aa_splitn_fqname(name, strlen(name), &tmpns, &ns_len); in unpack_profile()
870 if (!tmpname) { in unpack_profile()
880 name = tmpname; in unpack_profile()