Home
last modified time | relevance | path

Searched refs:dst_stream (Results 1 – 4 of 4) sorted by relevance

/busybox-1.35.0/editors/
Dpatch_bbox.c24 static unsigned copy_lines(FILE *src_stream, FILE *dst_stream, unsigned lines_count) in copy_lines() argument
32 if (fputs(line, dst_stream) == EOF) { in copy_lines()
126 FILE *dst_stream; in patch_main() local
173 dst_stream = xfopen_for_write("/dev/null"); in patch_main()
175 dst_stream = xfopen_for_write(new_filename); in patch_main()
176 fchmod(fileno(dst_stream), saved_stat.st_mode); in patch_main()
211 if (copy_lines(src_stream, dst_stream, count)) { in patch_main()
265 fputs(patch_line + 1, dst_stream); in patch_main()
272 copy_lines(src_stream, dst_stream, (unsigned)(-1)); in patch_main()
277 fclose(dst_stream); in patch_main()
/busybox-1.35.0/coreutils/
Duudecode.c37 static void FAST_FUNC read_stduu(FILE *src_stream, FILE *dst_stream, int flags UNUSED_PARAM) in read_stduu() argument
108 fwrite(line, 1, dst - line, dst_stream); in read_stduu()
132 FILE *dst_stream; in uudecode_main() local
157 dst_stream = stdout; in uudecode_main()
168 dst_stream = xfopen_for_write(outname); in uudecode_main()
169 fchmod(fileno(dst_stream), mode & (S_IRWXU | S_IRWXG | S_IRWXO)); in uudecode_main()
172 decode_fn_ptr(src_stream, dst_stream, /*flags:*/ BASE64_FLAG_UU_STOP + BASE64_FLAG_NO_STOP_CHAR); in uudecode_main()
/busybox-1.35.0/libbb/
Duuencode.c207 void FAST_FUNC read_base64(FILE *src_stream, FILE *dst_stream, int flags) in read_base64() argument
262 fwrite(buf, (out_tail - buf), 1, dst_stream); in read_base64()
/busybox-1.35.0/include/
Dlibbb.h2132 void read_base64(FILE *src_stream, FILE *dst_stream, int flags) FAST_FUNC;