Home | History | Annotate | Download | only in acpidump

Lines Matching defs:tmpstr

4663 	char buf[MAXPATHLEN], tmpstr[MAXPATHLEN], wrkdir[MAXPATHLEN];
4693 len = (size_t)snprintf(tmpstr, sizeof(tmpstr), "%s%s", wrkdir, iname);
4694 assert(len <= sizeof(tmpstr) - 1);
4695 fd = open(tmpstr, O_CREAT | O_WRONLY, S_IRUSR | S_IWUSR);
4708 execl("/usr/bin/iasl", "iasl", "-d", tmpstr, NULL);
4713 if (unlink(tmpstr) < 0) {
4726 len = (size_t)snprintf(tmpstr, sizeof(tmpstr), "%s%s", wrkdir, oname);
4727 assert(len <= sizeof(tmpstr) - 1);
4728 fp = fopen(tmpstr, "r");
4729 if (unlink(tmpstr) < 0) {