Lines Matching defs:fptr
30 FILE *fptr = fopen(path, "w+");
31 EXPECT_PTRNE("fwrite_0100", fptr, NULL);
34 int result = fwrite(buf, sizeof(char), strlen(buf), fptr);
37 fclose(fptr);
48 FILE *fptr = fopen(path, "w+");
49 EXPECT_PTRNE("fwrite_0200", fptr, NULL);
52 int result = fwrite(buf, 0, strlen(buf), fptr);
55 fclose(fptr);
66 FILE *fptr = fopen(path, "w+");
67 EXPECT_PTRNE("fwrite_0300", fptr, NULL);
70 int result = fwrite(buf, sizeof(char), 0, fptr);
73 fclose(fptr);