Searched refs:flush (Results 1 - 25 of 262) sorted by relevance

1234567891011

/freebsd-10.0-release/contrib/llvm/lib/Support/
H A Draw_os_ostream.cpp23 flush();
H A DErrno.cpp71 stream.flush();
/freebsd-10.0-release/sys/contrib/xz-embedded/linux/include/linux/decompress/
H A Dunxz.h15 int (*flush)(void *src, unsigned int size),
/freebsd-10.0-release/sbin/natd/samples/
H A Dnatd.test9 ipfw flush
/freebsd-10.0-release/etc/rc.d/
H A Dip6addrctl33 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
51 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
73 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
98 ${IP6ADDRCTL_CMD} flush >/dev/null 2>&1
117 ip6addrctl flush >/dev/null 2>&1
/freebsd-10.0-release/contrib/llvm/include/llvm/ExecutionEngine/
H A DObjectBuffer.h63 void flush() function in class:llvm::ObjectBufferStream
65 OS.flush();
/freebsd-10.0-release/sys/contrib/xz-embedded/linux/lib/
H A Ddecompress_unxz.c249 * fill() and flush() won't be used.
253 int (*flush)(void *src, unsigned int size),
269 if (fill == NULL && flush == NULL)
277 if (flush == NULL) {
299 if (fill == NULL && flush == NULL) {
325 if (flush != NULL && (b.out_pos == b.out_size
332 if (flush(b.out, b.out_pos) != (int)b.out_pos)
342 if (flush != NULL)
382 if (flush != NULL)
/freebsd-10.0-release/tools/tools/net80211/scripts/
H A Dsetup.local13 route flush
/freebsd-10.0-release/contrib/libc++/src/
H A Diostream.cpp59 cout_ptr->flush();
60 clog_ptr->flush();
64 wcout_ptr->flush();
65 wclog_ptr->flush();
/freebsd-10.0-release/sys/contrib/xz-embedded/userspace/
H A Dboottest.c32 static int flush(/*const*/ void *buf, unsigned int size) function
53 ret = decompress(in, in_size, NULL, &flush, NULL, &in_used, &error);
60 ret = decompress(NULL, 0, &fill, &flush, NULL, NULL, &error);
/freebsd-10.0-release/contrib/libstdc++/src/
H A Dios_init.cc131 // Catch any exceptions thrown by basic_ostream::flush()
135 cout.flush();
136 cerr.flush();
137 clog.flush();
140 wcout.flush();
141 wcerr.flush();
142 wclog.flush();
H A Dostream-inst.cc44 template ostream& flush(ostream&);
75 template wostream& flush(wostream&);
/freebsd-10.0-release/usr.sbin/ctm/mkCTM/
H A DmkCTM108 flush stdout
142 flush stdout
148 flush stdout
157 flush stdout
161 flush stdout
164 flush stdout
/freebsd-10.0-release/contrib/libstdc++/include/backward/
H A Diostream.h54 using std::flush;
/freebsd-10.0-release/sys/gdb/
H A Dgdb_cons.c56 struct callout flush; member in struct:gdbcons
80 callout_init(&c->flush, CALLOUT_MPSAFE);
150 * Cancel any pending callout and flush the
154 callout_stop(&gc->flush);
161 * during boot when we don't have callouts to flush
168 callout_reset(&gc->flush, hz/4, gdb_cnflush, gc);
/freebsd-10.0-release/contrib/groff/src/devices/grohtml/
H A Doutput.cpp94 * flush - flush a word list to a FILE, f, and return the
98 int word_list::flush (FILE *f) function in class:word_list
224 col = last_word.flush(fp);
239 col = last_word.flush(fp);
249 col += last_word.flush(fp);
262 col += last_word.flush(fp);
276 col += last_word.flush(fp);
291 col += last_word.flush(fp);
360 len += last_word.flush(f
[all...]
/freebsd-10.0-release/contrib/apr-util/buckets/
H A Dapr_brigade.c390 apr_brigade_flush flush,
410 rv = apr_brigade_writev(b, flush, ctx, vec, i);
417 return apr_brigade_writev(b, flush, ctx, vec, i);
423 apr_brigade_flush flush, void *ctx,
426 return apr_brigade_write(b, flush, ctx, &c, 1);
430 apr_brigade_flush flush,
454 * to buffer. In either case, we should flush. */
455 if (flush) {
458 return flush(b, ctx);
489 apr_brigade_flush flush,
[all...]
/freebsd-10.0-release/libexec/rtld-elf/sparc64/
H A Dreloc.c229 #undef flush macro
230 #define flush(va, offs) \ macro
231 __asm __volatile("flush %0 + %1" : : "r" (va), "I" (offs));
626 flush(where, 4);
644 flush(where, 8);
646 flush(where, 4);
664 flush(where, 12);
666 flush(where, 8);
668 flush(where, 4);
687 flush(wher
[all...]
/freebsd-10.0-release/lib/libz/
H A Ddeflate.h108 int last_flush; /* value of flush param for previous deflate call */
323 # define _tr_tally_lit(s, c, flush) \
328 flush = (s->last_lit == s->lit_bufsize-1); \
330 # define _tr_tally_dist(s, distance, length, flush) \
338 flush = (s->last_lit == s->lit_bufsize-1); \
341 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
342 # define _tr_tally_dist(s, distance, length, flush) \
343 flush = _tr_tally(s, distance, length)
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.h105 int last_flush; /* value of flush param for previous deflate call */
308 # define _tr_tally_lit(s, c, flush) \
313 flush = (s->last_lit == s->lit_bufsize-1); \
315 # define _tr_tally_dist(s, distance, length, flush) \
323 flush = (s->last_lit == s->lit_bufsize-1); \
326 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
327 # define _tr_tally_dist(s, distance, length, flush) \
328 flush = _tr_tally(s, distance, length)
/freebsd-10.0-release/contrib/ofed/management/opensm/opensm/
H A Dosm_log.c177 /* flush log */
179 (p_log->flush || (verbosity & (OSM_LOG_ERROR | OSM_LOG_SYS)))
212 if (p_log->flush || (verbosity & OSM_LOG_ERROR))
300 IN const boolean_t flush,
307 p_log->flush = flush;
330 IN const boolean_t flush,
335 return osm_log_init_v2(p_log, flush, log_flags, log_file, 0,
299 osm_log_init_v2(IN osm_log_t * const p_log, IN const boolean_t flush, IN const uint8_t log_flags, IN const char *log_file, IN const unsigned long max_size, IN const boolean_t accum_log_file) argument
329 osm_log_init(IN osm_log_t * const p_log, IN const boolean_t flush, IN const uint8_t log_flags, IN const char *log_file, IN const boolean_t accum_log_file) argument
/freebsd-10.0-release/sys/sparc64/sparc64/
H A Dtlb.c88 flush(KERNBASE);
114 flush(KERNBASE);
142 flush(KERNBASE);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DGeneratePCH.cpp52 Out->flush();
/freebsd-10.0-release/contrib/sendmail/contrib/
H A DsocketmapClient.pl36 $sock->flush();
/freebsd-10.0-release/usr.bin/tip/libacu/
H A Dbiz31.c53 static int flush(char *);
105 flush(" NO CONNECTION\r\n\07\r\n");
107 flush("CONNECTION\r\n\07");
195 flush(char *s) function

Completed in 542 milliseconds

1234567891011