Lines Matching refs:fopen

28  * @tc.desc       : Verify fopen("r") and fclose fread and fwrite, fopen success, fread success, fwrite failed
42 FILE *fptr = fopen("tempory_test.txt", "w");
50 fptr = fopen("tempory_test.txt", "r");
76 * @tc.desc : Verify fopen("r") and fclose and fopen failed
81 FILE *fptr = fopen("tempory_test1.txt", "r");
87 * @tc.desc : Verify fopen("w") and fclose and fread and fwrite and fopen success, fread failed, fwrite success
95 FILE *fptr = fopen("tempory_test3.txt", "w");
117 * @tc.desc : Verify fopen("w") and fclose and fread and fwrite and fopen success, fread failed, fwrite success
125 FILE *fptr = fopen("tempory_test2.txt", "w");
147 * @tc.desc : Verify fopen("a") and fclose and fread and fwrite and fopen success, fread success, fwrite success
161 FILE *fptr = fopen("tempory_test5.txt", "w");
170 fptr = fopen("tempory_test5.txt", "a");
184 fptr = fopen("tempory_test5.txt", "r");
203 * @tc.desc : Verify fopen("a") and fclose and fread and fwrite and fopen success, fread success, fwrite success
211 FILE *fptr = fopen("tempory_test6.txt", "w");
234 * @tc.desc : Verify fopen("b") and fclose and fread and fwrite and fopen failed
239 FILE *fptr = fopen("./tempory_test.txt", "b");
251 * @tc.desc : Verify fopen("a") and fclose and fread and fwrite and fopen failed
256 FILE *fptr = fopen("./tmp/tempory_test.txt", "a");
262 * @tc.desc : Verify fopen("ae") and fclose and fread and fwrite and fopen success, fread success, fwrite success
276 FILE *fptr = fopen("tempory_test9.txt", "w");
286 fptr = fopen("tempory_test9.txt", "ae");
300 fptr = fopen("tempory_test9.txt", "r");