Lines Matching refs:stream
566 FILE *stream = open_memstream(&buf, &len);
567 ASSERT_TRUE(stream != nullptr) << "stream == nullptr";
570 fprintf(stream, wBuf);
571 fflush(stream);
583 EXPECT_TRUE(ftello(stream) == len) << "ftello() != len";
584 EXPECT_TRUE(fseeko(stream, 0, SEEK_SET) == 0);
591 fprintf(stream, largeBuf);
592 fflush(stream);
602 EXPECT_TRUE(fclose(stream) == 0) << "fclose() != 0";