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

/xnu-2422.115.4/tools/lldbmacros/core/
H A Dstandard.py23 self.old_stdout.flush(); self.old_stderr.flush()
27 self._stdout.flush(); self._stderr.flush()
76 def flush(self): member in class:CommandOutput
78 self.fhandle.flush()
/xnu-2422.115.4/libkern/zlib/
H A Ddeflate.h132 int last_flush; /* value of flush param for previous deflate call */
335 # define _tr_tally_lit(s, c, flush) \
340 flush = (s->last_lit == s->lit_bufsize-1); \
342 # define _tr_tally_dist(s, distance, length, flush) \
350 flush = (s->last_lit == s->lit_bufsize-1); \
353 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
354 # define _tr_tally_dist(s, distance, length, flush) \
355 flush = _tr_tally(s, distance, length)
H A Ddeflate.c95 block_done, /* block flush performed */
100 typedef block_state (*compress_func) OF((deflate_state *s, int flush));
104 local block_state deflate_stored OF((deflate_state *s, int flush));
105 local block_state deflate_fast OF((deflate_state *s, int flush));
107 local block_state deflate_slow OF((deflate_state *s, int flush));
581 int ZEXPORT deflate (strm, flush)
583 int flush;
585 int old_flush; /* value of flush param for previous deflate call */
589 flush > Z_FINISH || flush <
[all...]
H A Dgzio.c104 local int do_flush OF((gzFile file, int flush));
730 flush is as in the deflate() function.
732 local int do_flush (file, flush)
734 int flush;
757 s->z_err = deflate(&(s->stream), flush);
773 int ZEXPORT gzflush (file, flush)
775 int flush;
778 int err = do_flush (file, flush);
H A Dinflate.c572 In this implementation, the flush parameter of inflate() only affects the
578 stream available. So the only thing the flush parameter actually does is:
579 when flush is set to Z_FINISH, inflate() cannot return Z_OK. Instead it
583 int ZEXPORT inflate(strm, flush)
585 int flush;
803 if (flush == Z_BLOCK) goto inf_leave;
1179 if (((in == 0 && out == 0) || flush == Z_FINISH) && ret == Z_OK)
/xnu-2422.115.4/iokit/Kernel/
H A DIODMAEventSource.cpp112 IOReturn IODMAEventSource::stopDMACommand(bool flush, uint64_t timeout) argument
116 return dmaController->stopDMACommand(dmaIndex, flush, timeout);
H A DIOHibernateIO.cpp121 used to flush and set the disk to sleep.
921 bool flush = false; local
927 // seek to end of block & flush
931 flush = true;
940 flush = true;
954 if (flush && vars->bufferOffset)
1031 flush = false;
/xnu-2422.115.4/iokit/IOKit/
H A DIODMAController.h53 virtual IOReturn stopDMACommand(UInt32 dmaIndex, bool flush = false, uint64_t timeout = UINT64_MAX) = 0;
H A DIODMAEventSource.h61 virtual IOReturn stopDMACommand(bool flush = false, uint64_t timeout = UINT64_MAX);
/xnu-2422.115.4/bsd/vfs/
H A Dvfs_journal.h102 boolean_t flush_on_completion; //flush transaction immediately upon txn end.
152 void (*flush)(void *arg); // fs callback to flush meta data blocks member in struct:journal
153 void *flush_arg; // arg that's passed to flush()
248 void (*flush)(void *arg),
269 void (*flush)(void *arg),
335 /* Mark state in the journal that requests an immediate journal flush upon txn completion */
H A Dvfs_journal.c128 // We'll opt to flush a transaction if it contains at least
139 SYSCTL_UINT (_kern, OID_AUTO, jnl_trim_flush, CTLFLAG_RW, &jnl_trim_flush_limit, 0, "number of trimmed extents to cause a journal flush");
490 // have to flush after writing the journal header so that
560 //printf("jnl: buf flush: bp @ 0x%x l/blkno %qd/%qd vp 0x%x tr @ 0x%x\n",
1630 void (*flush)(void *arg),
1687 jnl->flush = flush;
1814 void (*flush)(void *arg),
1865 jnl->flush = flush;
[all...]
/xnu-2422.115.4/libkern/libkern/
H A Dzlib.h197 /* Allowed flush values; see deflate() and inflate() below for details */
271 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
276 forced to flush.
287 accordingly. This action is forced if the parameter flush is non zero.
288 Forcing flush frequently degrades the compression ratio, so this parameter
290 Some output may be provided even if flush is not set.
301 Normally the parameter flush is set to Z_NO_FLUSH, which allows deflate to
305 If the parameter flush is set to Z_SYNC_FLUSH, all pending output is
312 If flush is set to Z_FULL_FLUSH, all output is flushed as with
319 with the same value of the flush paramete
[all...]
/xnu-2422.115.4/bsd/kern/
H A Dtty_pty.c565 ptsstop(struct tty *tp, int flush) argument
573 if (flush == 0) {
574 flush = TIOCPKT_STOP;
578 pti->pt_send |= flush;
581 if (flush & FREAD)
583 if (flush & FWRITE)
H A Dtty_ptmx.c972 ptsd_stop(struct tty *tp, int flush) argument
980 if (flush == 0) {
981 flush = TIOCPKT_STOP;
985 pti->pt_send |= flush;
988 if (flush & FREAD)
990 if (flush & FWRITE)
1163 ptmx_stop(__unused struct tty *tp, __unused int flush) argument
/xnu-2422.115.4/osfmk/i386/
H A Dmp.c109 static void mp_kdp_wait(boolean_t flush, boolean_t isNMI);
1605 mp_kdp_wait(boolean_t flush, boolean_t isNMI) argument
1624 if (flush)
/xnu-2422.115.4/bsd/net/
H A Drtsock.c311 #define senderr(e) { error = (e); goto flush; }
632 flush:
H A Dpfvar.h807 u_int8_t flush; member in struct:pf_rule
1504 "overload flush states", \
H A Dpf.c1273 if ((*state)->rule.ptr->flush) {
1294 ((*state)->rule.ptr->flush &

Completed in 211 milliseconds