Lines Matching refs:tmpfile
28 char tmpfile[] = "/data/local/tmp/mkostemps_0100_XXXXXX.dat";
29 int fd = mkostemps(tmpfile, strlen(".dat"), O_CREAT);
32 int cnt = write(fd, tmpfile, strlen(tmpfile));
33 EXPECT_TRUE("mkostemps_0100", cnt == strlen(tmpfile));
36 int len = sprintf(rmfile, "rm %s", tmpfile);
51 char tmpfile[] = "/data/local/tmp/mkostemps_0200_XXXXXX";
52 int fd = mkostemps(tmpfile, 0, O_CREAT);
55 int cnt = write(fd, tmpfile, strlen(tmpfile));
56 EXPECT_TRUE("mkostemps_0200", cnt == strlen(tmpfile));
59 int len = sprintf(rmfile, "rm %s", tmpfile);
73 char tmpfile[] = "/data/local/tmp/mkostemps_0300.dat";
74 int fd = mkostemps(tmpfile, strlen(".dat"), O_CREAT);
77 int cnt = write(fd, tmpfile, strlen(tmpfile));
78 EXPECT_TRUE("mkostemps_0300", cnt == strlen(tmpfile));
81 int len = sprintf(rmfile, "rm %s", tmpfile);