Home
last modified time | relevance | path

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

/openbmc/u-boot/scripts/dtc/
H A Dfstree.c40 char *tmpname; in read_fstree() local
46 tmpname = join_path(dirname, de->d_name); in read_fstree()
48 if (lstat(tmpname, &st) < 0) in read_fstree()
49 die("stat(%s): %s\n", tmpname, strerror(errno)); in read_fstree()
55 pfile = fopen(tmpname, "rb"); in read_fstree()
59 tmpname, strerror(errno)); in read_fstree()
70 newchild = read_fstree(tmpname); in read_fstree()
75 free(tmpname); in read_fstree()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/rarpd/rarpd/
H A D0003-rarpd.c-bug-fix.patch203 + char tmpname[IFNAMSIZ];
236 + strncpy(tmpname, ifl->name, IFNAMSIZ);
237 + tmpname[IFNAMSIZ-1] = 0;
239 + sprintf(tmpname, "if%d", sll.sll_ifindex);
240 + syslog(LOG_INFO, "RARP request from %s on %s", tmpbuf, tmpname);
250 + inet_ntoa(*(struct in_addr *)&rmap->ipaddr), tmpname);
/openbmc/u-boot/scripts/kconfig/
H A Dconfdata.c746 char dirname[PATH_MAX+1], tmpname[PATH_MAX+22], newname[PATH_MAX+8]; in conf_write() local
774 sprintf(tmpname, "%s.tmpconfig.%d", dirname, (int)getpid()); in conf_write()
775 out = fopen(tmpname, "w"); in conf_write()
777 *tmpname = 0; in conf_write()
824 if (*tmpname) { in conf_write()
828 if (rename(tmpname, newname)) in conf_write()
/openbmc/u-boot/tools/patman/
H A Dpatchstream.py454 handle, tmpname = tempfile.mkstemp()
466 shutil.move(tmpname, fname)