Home
last modified time | relevance | path

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

/bionic/tests/
Dstdio_test.cpp148 FILE* tfile = fdopen(tf.fd, "r"); in TEST() local
149 ASSERT_TRUE(tfile != nullptr); in TEST()
151 AssertFileIs(tfile, "hello\n"); in TEST()
152 fclose(tfile); in TEST()
907 FILE* tfile = fdopen(tf.fd, "r+"); in TEST() local
908 ASSERT_TRUE(tfile != nullptr); in TEST()
910 ASSERT_EQ(7, fprintf(tfile, "%d %s", 123, "abc")); in TEST()
911 AssertFileIs(tfile, "123 abc"); in TEST()
912 fclose(tfile); in TEST()