Home | History | Annotate | Download | only in test

Lines Matching defs:fOut

1092     HANDLE fOut = NULL;
1099 FILE* fOut = NULL;
1754 fOut = CreateFile(szOutFile, GENERIC_WRITE, 0,
1756 if (INVALID_HANDLE_VALUE == fOut){
1762 fOut = fopen(szOutFile, "w");
1763 if ( fOut == NULL ) {
1924 WriteFile(fOut, pBuf->pBuffer, pBuf->nFilledLen, &dwWritten, NULL);
1927 fwrite(pBuf->pBuffer, 1, (int)pBuf->nFilledLen, fOut);
1928 fflush(fOut);
1995 CloseHandle(fOut);
1998 fclose(fOut);