/freebsd/lib/libc/stdio/ |
H A D | setbuf.3 | 54 The three types of buffering available are unbuffered, block buffered, 56 When an output stream is unbuffered, information appears on the 82 is always unbuffered. 96 unbuffered 108 then except for unbuffered files, the
|
H A D | setvbuf.c | 80 /* If setting unbuffered mode, skip all the hard work. */ in setvbuf() 109 /* No luck; switch to unbuffered I/O. */ in setvbuf()
|
/freebsd/sys/contrib/device-tree/Bindings/reserved-memory/ |
H A D | ramoops.txt | 46 reserved region. mem-type: 0 = write-combined (default), 1 = unbuffered, 49 - unbuffered: deprecated, use mem_type instead. If present, and mem_type is 50 not specified, it is equivalent to mem_type = 1 and uses unbuffered mappings 52 both are specified -- "mem_type" overrides "unbuffered".
|
H A D | ramoops.yaml | 72 description: unbuffered 102 unbuffered: 107 it is equivalent to mem_type = 1 and uses unbuffered mappings to map 109 If both are specified -- "mem_type" overrides "unbuffered".
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | raw_ostream.h | 65 /// uninitialized, unbuffered, or out of space when OutBufCur >= 70 /// 1. Unbuffered (BufferMode == Unbuffered) 71 /// 1. Uninitialized (BufferMode != Unbuffered && OutBufStart == 0). 72 /// 2. Buffered (BufferMode != Unbuffered && OutBufStart != 0 && 86 Unbuffered = 0, enumerator 133 explicit raw_ostream(bool unbuffered = false, 135 : Kind(K), BufferMode(unbuffered ? BufferKind::Unbuffered in Kind() 175 if (BufferMode != BufferKind::Unbuffered && OutBufStart == nullptr) in GetBufferSize() 182 /// Set the stream to be unbuffered. When unbuffered, the stream will flush 184 /// when the stream is being set to unbuffered. [all …]
|
H A D | circular_raw_ostream.h | 39 /// unbuffered, since we're already doing our own buffering. 99 /// set to be Unbuffered. This is because circular_raw_ostream 109 : raw_ostream(/*unbuffered*/ true), OwnsStream(Owns), in raw_ostream()
|
H A D | FormattedStream.h | 32 /// unbuffered, since we're already doing our own buffering. 129 /// As a side effect, the given Stream is set to be Unbuffered. in getColumn()
|
/freebsd/contrib/libedit/ |
H A D | read.c | 429 if ((el->el_flags & (UNBUFFERED|EDIT_DISABLED)) == UNBUFFERED) in read_prepare() 439 if (el->el_flags & UNBUFFERED) in read_prepare() 446 if ((el->el_flags & UNBUFFERED) == 0) in read_finish() 463 if (el->el_flags & UNBUFFERED || in noedit_wgets() 510 if ((el->el_flags & UNBUFFERED) == 0) in el_wgets() 514 if ((el->el_flags & UNBUFFERED) == 0) in el_wgets() 573 if ((el->el_flags & UNBUFFERED) == 0) in el_wgets() 603 if (el->el_flags & UNBUFFERED) in el_wgets() 609 if ((el->el_flags & UNBUFFERED) == 0) { in el_wgets()
|
H A D | el.c | 332 if (rv && !(el->el_flags & UNBUFFERED)) { in el_wset() 333 el->el_flags |= UNBUFFERED; in el_wset() 335 } else if (!rv && (el->el_flags & UNBUFFERED)) { in el_wset() 336 el->el_flags &= ~UNBUFFERED; in el_wset() 472 *va_arg(ap, int *) = (el->el_flags & UNBUFFERED) != 0; in el_wget()
|
H A D | editline.3 | 506 unbuffered mode is disabled (the default). 507 In unbuffered mode, 646 to non-zero if unbuffered mode is enabled.
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
H A D | BitWriter.cpp | 32 int Unbuffered) { in LLVMWriteBitcodeToFD() argument 33 raw_fd_ostream OS(FD, ShouldClose, Unbuffered); in LLVMWriteBitcodeToFD()
|
/freebsd/share/man/man4/ |
H A D | ubtbcmfw.4 | 68 All I/O operations on an interrupt endpoint are unbuffered. 75 All I/O operations on a bulk endpoint are unbuffered.
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | raw_ostream.cpp | 104 // It may return 0, meaning this stream should be unbuffered. in SetBuffered() 110 assert(((Mode == BufferKind::Unbuffered && !BufferStart && Size == 0) || in SetBufferAndMode() 111 (Mode != BufferKind::Unbuffered && BufferStart && Size != 0)) && in SetBufferAndMode() 112 "stream must be unbuffered or have at least one byte"); in SetBufferAndMode() 231 if (BufferMode == BufferKind::Unbuffered) { in write() 251 if (BufferMode == BufferKind::Unbuffered) { in write() 619 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered, in raw_fd_ostream() argument 621 : raw_pwrite_stream(unbuffered, K), FD(fd), ShouldClose(shouldClose) { in raw_fd_ostream() 906 // Set standard error to be unbuffered. in errs()
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | sh-flags.mk | 20 opt-loud.no= -d0 # side effect: make stdout unbuffered 21 opt-loud.yes= -dl # side effect: make stdout unbuffered
|
H A D | cmdline-redirect-stdin.mk | 22 # probably buffers its input. Most shells use unbuffered stdin, and this
|
H A D | deptgt-ignore.mk | 11 .MAKEFLAGS: -d0 # force stdout to be unbuffered
|
/freebsd/contrib/sendmail/libsm/ |
H A D | setvbuf.c | 96 /* If setting unbuffered mode, skip all the hard work. */ 132 /* No luck; switch to unbuffered I/O. */
|
/freebsd/share/doc/psd/04.uprog/ |
H A D | p4 | 182 (``unbuffered''), 232 which does unbuffered input. 236 getchar() /* unbuffered single character input */
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | fstream | 312 // There have been no file operations yet, which allows setting unbuffered 315 // Unbuffered I/O mode has been requested. 318 // be unbuffered. 321 // that stream, the stream becomes unbuffered. Otherwise the results are 334 // are used to track the state of the unbuffered request. For readability 340 // - __no_io_operations is set upon construction to indicate the unbuffered 342 // - When requesting unbuffered output: 346 // __use_unbuffered_io are set. If so switches to unbuffered mode. 385 // If the file is already open, switch to unbuffered mode. Otherwise, record 386 // the request to use unbuffered mode so that we use that mode when we
|
/freebsd/tools/test/ppsapi/ |
H A D | README | 13 -u unbuffered output.
|
/freebsd/usr.bin/tee/ |
H A D | tee.1 | 46 The output is unbuffered.
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCMachineScheduler.cpp | 91 // Prioritize instructions that read unbuffered resources by stall cycles. in tryCandidate() 187 // Prioritize instructions that read unbuffered resources by stall cycles. in tryCandidate()
|
/freebsd/lib/libstdbuf/ |
H A D | libstdbuf.3 | 58 unbuffered
|
/freebsd/sys/contrib/device-tree/Bindings/iio/adc/ |
H A D | adi,ad7949.yaml | 35 Unbuffered ADC reference voltage supply.
|
/freebsd/usr.bin/stdbuf/ |
H A D | stdbuf.1 | 74 unbuffered
|