Home
last modified time | relevance | path

Searched refs:flush (Results 1 – 25 of 508) sorted by relevance

12345678910>>...21

/freebsd-13.1/contrib/apr-util/buckets/
H A Dapr_brigade.c417 return apr_brigade_writev(b, flush, ctx, vec, i); in apr_brigade_vputstrs()
426 return apr_brigade_write(b, flush, ctx, &c, 1); in apr_brigade_putc()
455 if (flush) { in apr_brigade_write()
458 return flush(b, ctx); in apr_brigade_write()
510 if (flush) { in apr_brigade_writev()
517 return flush(b, ctx); in apr_brigade_writev()
574 if (flush) { in apr_brigade_writev()
575 apr_status_t rv = flush(b, ctx); in apr_brigade_writev()
624 rv = apr_brigade_vputstrs(b, flush, ctx, va); in apr_brigade_putstrs()
638 rv = apr_brigade_vprintf(b, flush, ctx, fmt, ap); in apr_brigade_printf()
[all …]
/freebsd-13.1/sys/contrib/zstd/zlibWrapper/examples/
H A Dfitblk_original.c75 int ret, flush; in partcompress() local
78 flush = Z_NO_FLUSH; in partcompress()
85 flush = Z_FINISH; in partcompress()
86 ret = deflate(def, flush); in partcompress()
88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH); in partcompress()
98 int ret, flush; in recompress() local
101 flush = Z_NO_FLUSH; in recompress()
116 flush = Z_FINISH; in recompress()
117 ret = deflate(def, flush); in recompress()
H A Dfitblk.c80 int ret, flush; in partcompress() local
83 flush = Z_SYNC_FLUSH; in partcompress()
90 flush = Z_FINISH; in partcompress()
92 ret = deflate(def, flush); in partcompress()
95 } while (def->avail_out != 0 && flush == Z_SYNC_FLUSH); in partcompress()
105 int ret, flush; in recompress() local
108 flush = Z_NO_FLUSH; in recompress()
126 flush = Z_FINISH; in recompress()
128 ret = deflate(def, flush); in recompress()
/freebsd-13.1/sys/contrib/xz-embedded/linux/lib/
H A Ddecompress_unxz.c253 int (*flush)(void *src, unsigned int size), in unxz()
269 if (fill == NULL && flush == NULL) in unxz()
277 if (flush == NULL) { in unxz()
299 if (fill == NULL && flush == NULL) { in unxz()
325 if (flush != NULL && (b.out_pos == b.out_size in unxz()
332 if (flush(b.out, b.out_pos) != (int)b.out_pos) in unxz()
342 if (flush != NULL) in unxz()
382 if (flush != NULL) in unxz()
/freebsd-13.1/sys/contrib/zlib/
H A Ddeflate.h321 # define _tr_tally_lit(s, c, flush) \ argument
327 flush = (s->sym_next == s->sym_end); \
329 # define _tr_tally_dist(s, distance, length, flush) \ argument
338 flush = (s->sym_next == s->sym_end); \
341 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) argument
342 # define _tr_tally_dist(s, distance, length, flush) \ argument
343 flush = _tr_tally(s, distance, length)
H A Ddeflate.c806 int flush;
811 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) {
824 s->last_flush = flush;
1689 int flush;
1815 if (flush != Z_NO_FLUSH && flush != Z_FINISH &&
1853 ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH &&
1876 int flush;
1961 if (flush == Z_FINISH) {
1978 int flush;
2109 int flush;
[all …]
H A Dgzwrite.c76 local int gz_comp(state, flush) in gz_comp() argument
78 int flush;
117 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH &&
118 (flush != Z_FINISH || ret == Z_STREAM_END))) {
138 ret = deflate(strm, flush);
148 if (flush == Z_FINISH)
568 int ZEXPORT gzflush(file, flush) in gzflush() argument
570 int flush;
584 if (flush < 0 || flush > Z_FINISH)
595 (void)gz_comp(state, flush);
/freebsd-13.1/libexec/rc/rc.d/
H A Dip6addrctl34 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
52 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
74 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
101 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
120 ip6addrctl flush >/dev/null 2>&1
/freebsd-13.1/usr.sbin/ppp/
H A Ddeflate.c76 int olen, ilen, len, res, flush; in DeflateOutput() local
110 flush = Z_NO_FLUSH; in DeflateOutput()
114 if ((res = deflate(&state->cx, flush)) != Z_OK) { in DeflateOutput()
133 flush = Z_SYNC_FLUSH; in DeflateOutput()
207 int seq, flush, res, first; in DeflateInput() local
254 flush = mi->m_next ? Z_NO_FLUSH : Z_SYNC_FLUSH; in DeflateInput()
259 if ((res = inflate(&state->cx, flush)) != Z_OK) { in DeflateInput()
278 flush = Z_SYNC_FLUSH; in DeflateInput()
342 int res, flush, expect_error; in DeflateDictSetup() local
378 flush = Z_NO_FLUSH; in DeflateDictSetup()
[all …]
/freebsd-13.1/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c353 ZEXTERN int ZEXPORT z_deflate OF((z_streamp strm, int flush)) in z_deflate() argument
360 return deflate(strm, flush); in z_deflate()
410 if (flush == Z_FULL_FLUSH in z_deflate()
412 || flush == Z_TREES in z_deflate()
414 || flush == Z_BLOCK) in z_deflate()
417 if (flush == Z_FINISH) { in z_deflate()
436 if (flush == Z_SYNC_FLUSH || flush == Z_PARTIAL_FLUSH) { in z_deflate()
718 ZEXTERN int ZEXPORT z_inflate OF((z_streamp strm, int flush)) in z_inflate() argument
723 int const result = inflate(strm, flush); in z_inflate()
754 inflate(strm, flush); in z_inflate()
[all …]
H A Dgzwrite.c78 local int gz_comp(state, flush) in gz_comp() argument
80 int flush;
110 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH &&
111 (flush != Z_FINISH || ret == Z_STREAM_END))) {
131 ret = deflate(strm, flush);
141 if (flush == Z_FINISH)
559 int ZEXPORT gzflush(file, flush) in gzflush() argument
561 int flush;
575 if (flush < 0 || flush > Z_FINISH)
586 (void)gz_comp(state, flush);
/freebsd-13.1/contrib/atf/atf-c++/
H A Dutils.cpp68 std::cout.flush(); in fork()
69 std::cerr.flush(); in fork()
96 std::cout.flush(); in redirect()
98 std::cerr.flush(); in redirect()
H A Dutils_test.cpp73 std::cout.flush(); in ATF_TEST_CASE_BODY()
85 std::cout.flush(); in ATF_TEST_CASE_BODY()
97 std::cout.flush(); in ATF_TEST_CASE_BODY()
110 std::cout.flush(); in ATF_TEST_CASE_BODY()
302 std::cout.flush(); in ATF_TEST_CASE_BODY()
313 std::cerr.flush(); in ATF_TEST_CASE_BODY()
367 std::cerr.flush(); in ATF_TEST_CASE_BODY()
369 std::cout.flush(); in ATF_TEST_CASE_BODY()
/freebsd-13.1/sys/gdb/
H A Dgdb_cons.c58 struct callout flush; member
84 callout_init(&c->flush, 1); in gdb_cninit()
158 callout_stop(&gc->flush); in gdb_cnputc()
172 callout_reset(&gc->flush, hz/4, gdb_cnflush, gc); in gdb_cnputc()
/freebsd-13.1/contrib/blacklist/libexec/
H A Dblacklistd-helper109 flush)
115 /sbin/ipfw table "port$6" flush 2>/dev/null && echo OK
118 /sbin/npfctl rule "$2" flush
124 /sbin/pfctl -a $anchor -t "port${anchor##*/}" -T flush
/freebsd-13.1/usr.bin/tip/libacu/
H A Dbiz31.c55 static int flush(char *);
107 flush(" NO CONNECTION\r\n\07\r\n"); in biz_dialer()
109 flush("CONNECTION\r\n\07"); in biz_dialer()
197 flush(char *s) in flush() function
/freebsd-13.1/contrib/opencsd/decoder/source/
H A Docsd_msg_logger.cpp89 std::cout.flush(); in LogMsg()
95 std::cerr.flush(); in LogMsg()
105 m_out_file.flush(); in LogMsg()
/freebsd-13.1/sys/netpfil/ipfilter/netinet/
H A Dip_lookup.c574 iplookupflush_t flush; in ipf_lookup_flush() local
577 err = BCOPYIN(data, &flush, sizeof(flush)); in ipf_lookup_flush()
583 unit = flush.iplf_unit; in ipf_lookup_flush()
589 flush.iplf_name[sizeof(flush.iplf_name) - 1] = '\0'; in ipf_lookup_flush()
591 type = flush.iplf_type; in ipf_lookup_flush()
601 &flush); in ipf_lookup_flush()
606 flush.iplf_count = num; in ipf_lookup_flush()
607 err = BCOPYOUT(&flush, data, sizeof(flush)); in ipf_lookup_flush()
/freebsd-13.1/sys/contrib/xz-embedded/userspace/
H A Dboottest.c35 static int flush(/*const*/ void *buf, unsigned int size) in flush() function
56 ret = decompress(in, in_size, NULL, &flush, NULL, &in_used, &error); in test_buf_to_cb()
63 ret = decompress(NULL, 0, &fill, &flush, NULL, NULL, &error); in test_cb_to_cb()
/freebsd-13.1/contrib/llvm-project/libcxx/src/
H A Diostream.cpp140 cout_ptr->flush(); in ~DoIOSInit()
141 wcout_ptr->flush(); in ~DoIOSInit()
146 clog_ptr->flush(); in ~DoIOSInit()
147 wclog_ptr->flush(); in ~DoIOSInit()
/freebsd-13.1/contrib/ofed/opensm/opensm/
H A Dosm_log.c202 (p_log->flush || (verbosity & (OSM_LOG_ERROR | OSM_LOG_SYS))) in osm_log()
318 (p_log->flush || (verbosity & (OSM_LOG_ERROR | OSM_LOG_SYS))) in osm_log_v2()
351 if (p_log->flush || (verbosity & OSM_LOG_ERROR)) in osm_log_raw()
466 ib_api_status_t osm_log_init_v2(IN osm_log_t * p_log, IN boolean_t flush, in osm_log_init_v2() argument
472 p_log->flush = flush; in osm_log_init_v2()
495 ib_api_status_t osm_log_init(IN osm_log_t * p_log, IN boolean_t flush, in osm_log_init() argument
499 return osm_log_init_v2(p_log, flush, log_flags, log_file, 0, in osm_log_init()
/freebsd-13.1/contrib/apr-util/include/
H A Dapr_buckets.h801 apr_brigade_flush flush,
829 apr_brigade_flush flush, void *ctx,
842 apr_brigade_flush flush,
856 apr_brigade_flush flush, void *ctx,
868 apr_brigade_flush flush, void *ctx,
880 apr_brigade_flush flush,
894 apr_brigade_flush flush,
910 apr_brigade_flush flush,
/freebsd-13.1/contrib/less/
H A Doutput.c365 flush(VOID_PARAM) in flush() function
404 flush();
452 flush();
673 flush();
695 flush();
722 flush();
/freebsd-13.1/tools/regression/ipfw/fwd/
H A Dvimage-fwd.sh128 jexec ${ljid} /sbin/ipfw -f flush
130 jexec ${mjid} /sbin/ipfw -f flush
132 jexec ${rjid} /sbin/ipfw -f flush
171 jexec ${ljid} /sbin/ipfw -f flush
173 jexec ${mjid} /sbin/ipfw -f flush
175 jexec ${rjid} /sbin/ipfw -f flush
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DResourcePressureView.cpp131 FOS.flush(); in printResourcePressurePerIter()
134 FOS.flush(); in printResourcePressurePerIter()
143 FOS.flush(); in printResourcePressurePerIter()
167 FOS.flush(); in printResourcePressurePerInst()

12345678910>>...21