Home
last modified time | relevance | path

Searched refs:fpin (Results 1 – 2 of 2) sorted by relevance

/AOO41X/main/crashrep/source/unx/
H A Dmain.cxx162 static size_t fcopy( FILE *fpout, FILE *fpin ) in fcopy() argument
168 while ( 0 != (nBytes = fread( buffer, 1, sizeof(buffer), fpin )) ) in fcopy()
283 FILE *fpin = fopen( g_szStackFile, "r" ); in save_crash_report() local
285 if ( fpin ) in save_crash_report()
289 while (fgets(buf, sizeof(buf), fpin) != NULL) in save_crash_report()
296 fclose ( fpin ); in save_crash_report()
437 FILE *fpin = fopen( g_szReportFile, "r" ); in WriteSOAPRequest() local
438 if ( fpin ) in WriteSOAPRequest()
444 fcopy( fp, fpin ); in WriteSOAPRequest()
446 fclose( fpin ); in WriteSOAPRequest()
[all …]
/AOO41X/main/crashrep/source/win32/
H A Dsoreport.cpp585 static size_t fcopy( FILE *fpin, FILE *fpout ) in fcopy() argument
591 if ( fpin && fpout ) in fcopy()
593 while ( 0 != (nBytes = fread( buffer, 1, sizeof(buffer), fpin )) ) in fcopy()
2524 FILE *fpin = fopen( g_szReportFileNameA, "r" ); in WriteSOAPRequest() local
2525 if ( fpin ) in WriteSOAPRequest()
2531 fcopy( fpin, fp ); in WriteSOAPRequest()
2533 fclose( fpin ); in WriteSOAPRequest()
2536 fpin = fopen( g_szCommentFileNameA, "r" ); in WriteSOAPRequest()
2537 if ( fpin ) in WriteSOAPRequest()
2543 fcopy( fpin, fp ); in WriteSOAPRequest()
[all …]