Searched refs:g_out_writer (Results 1 – 4 of 4) sorted by relevance
/dports/biology/sra-tools/sra-tools-2.11.0/tools/sra-pileup/ |
H A D | writer.c | 50 } g_out_writer = {NULL}; variable 61 … if( (rc = KFileWrite(g_out_writer.kfile, g_out_writer.pos, buffer, bufsize, num_writ)) == 0 ) { in BufferedWriter() 64 g_out_writer.pos += *num_writ; in BufferedWriter() 99 g_out_writer.pos = 0; in BufferedWriterMake() 104 g_out_writer.kfile = gz; in BufferedWriterMake() 110 g_out_writer.kfile = bz; in BufferedWriterMake() 117 g_out_writer.kfile = buf; in BufferedWriterMake() 131 KFileRelease(g_out_writer.kfile); in BufferedWriterRelease() 133 if( g_out_writer.writer != NULL ) { in BufferedWriterRelease() 134 KOutHandlerSet(g_out_writer.writer, g_out_writer.data); in BufferedWriterRelease() [all …]
|
H A D | sam-dump.c | 822 } g_out_writer = {NULL}; variable 836 …rc = KFileWrite( g_out_writer.kfile, g_out_writer.pos + written, &buffer[ written ], bufsize - wri… in BufferedWriter() 841 g_out_writer.pos += written; in BufferedWriter() 856 else if ( g_out_writer.writer != NULL ) in BufferedWriterMake() 865 g_out_writer.pos = 0; in BufferedWriterMake() 873 g_out_writer.kfile = gz; in BufferedWriterMake() 910 KFileRelease( g_out_writer.kfile ); in BufferedWriterRelease() 912 if ( g_out_writer.writer != NULL ) in BufferedWriterRelease() 914 KOutHandlerSet( g_out_writer.writer, g_out_writer.data ); in BufferedWriterRelease() 916 g_out_writer.writer = NULL; in BufferedWriterRelease() [all …]
|
H A D | sra-pileup.c | 363 } g_out_writer = { NULL }; variable
|
/dports/biology/sra-tools/sra-tools-2.11.0/tools/sra-dump/ |
H A D | fasta_dump.c | 136 } g_out_writer = { NULL }; variable 205 rc = KFileWrite( g_out_writer.kfile, g_out_writer.pos, buffer, bufsize, num_writ ); in BufferedWriter() 210 g_out_writer.pos += *num_writ; in BufferedWriter() 261 g_out_writer.kfile = buf; in set_stdout_to() 262 g_out_writer.org_writer = KOutWriterGet(); in set_stdout_to() 263 g_out_writer.org_data = KOutDataGet(); in set_stdout_to() 264 rc = KOutHandlerSet( BufferedWriter, &g_out_writer ); in set_stdout_to() 279 KFileRelease( g_out_writer.kfile ); in release_stdout_redirection() 280 if( g_out_writer.org_writer != NULL ) in release_stdout_redirection() 282 KOutHandlerSet( g_out_writer.org_writer, g_out_writer.org_data ); in release_stdout_redirection() [all …]
|