Lines Matching refs:fflush
24 * @tc.desc : Verify fflush process success and return 0.
29 int32_t ret = fflush(NULL);
35 * @tc.desc : Verify fflush and stdout process success and return 0.
40 char array[] = "this is fflush test!";
43 ret = fflush(NULL);
49 * @tc.desc : Verify fflush and stderr process success and return 0.
54 char array[] = "this is fflush error!";
57 ret = fflush(NULL);
63 * @tc.desc : Verify fflush and fopen("w") and fclose process success and return 0.
72 ret = fflush(fptr);
80 * @tc.desc : Verify fflush and fopen("r") and fclose process success and return 0.
88 ret = fflush(fptr);