Lines Matching refs:tmpfile
27 char tmpfile[] = "/data/mkstemp_0100_XXXXXX";
28 int fd = mkstemp(tmpfile);
31 int cnt = write(fd, tmpfile, strlen(tmpfile));
32 EXPECT_TRUE("mkstemp_0100", cnt == strlen(tmpfile));
35 int len = sprintf(rmfile, "rm %s", tmpfile);
49 char tmpfile[] = "/data/mkstemp_0200.dat";
50 int fd = mkstemp(tmpfile);
53 int cnt = write(fd, tmpfile, strlen(tmpfile));
54 EXPECT_TRUE("mkstemp_0200", cnt == strlen(tmpfile));
57 int len = sprintf(rmfile, "rm %s", tmpfile);