HomeSort by relevance Sort by last modified time
    Searched defs:Flush (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /art/compiler/linker/
file_output_stream.cc 37 bool FileOutputStream::Flush() {
38 return file_->Flush() == 0;
buffered_output_stream.cc 51 bool BufferedOutputStream::Flush() {
52 return FlushBuffer() && out_->Flush();
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Guid/PeiFlushInstructionCache/
PeiFlushInstructionCache.h 39 EFI_PEI_FLUSH_INSTRUCTION_CACHE_FLUSH Flush;
  /external/perfetto/src/tracing/core/
null_trace_writer.cc 36 void NullTraceWriter::Flush(std::function<void()> callback) {
37 // Flush() cannot be called in the middle of a TracePacket.
trace_writer_for_testing.cc 37 void TraceWriterForTesting::Flush(std::function<void()> callback) {
38 // Flush() cannot be called in the middle of a TracePacket.
  /external/puffin/src/
bit_writer.cc 39 TEST_AND_RETURN_FALSE(Flush());
49 bool BufferBitWriter::Flush() {
puff_writer.cc 222 bool BufferPuffWriter::Flush(Error* error) {
  /external/sfntly/cpp/src/sfntly/port/
memory_output_stream.h 36 virtual void Flush() {} // no-op
  /prebuilts/go/darwin-x86/misc/cgo/stdio/
file.go 36 f.Flush()
39 func (f *File) Flush() {
  /prebuilts/go/linux-x86/misc/cgo/stdio/
file.go 36 f.Flush()
39 func (f *File) Flush() {
  /external/google-breakpad/src/client/
minidump_file_writer-inl.h 91 inline bool TypedMDRVA<MDType>::Flush() {
  /external/icu/icu4c/source/common/
bytestream.cpp 29 void ByteSink::Flush() {}
  /prebuilts/go/darwin-x86/src/encoding/csv/
writer.go 100 // Flush writes any buffered data to the underlying io.Writer.
101 // To check if an error occurred during the Flush, call Error.
102 func (w *Writer) Flush() {
103 w.w.Flush()
106 // Error reports any error that has occurred during a previous Write or Flush.
112 // WriteAll writes multiple CSV records to w using Write and then calls Flush.
120 return w.w.Flush()
  /prebuilts/go/darwin-x86/src/net/http/cgi/
child.go 161 if err = rw.bufw.Flush(); err != nil {
174 func (r *response) Flush() {
175 r.bufw.Flush()
205 r.bufw.Flush()
  /prebuilts/go/linux-x86/src/encoding/csv/
writer.go 100 // Flush writes any buffered data to the underlying io.Writer.
101 // To check if an error occurred during the Flush, call Error.
102 func (w *Writer) Flush() {
103 w.w.Flush()
106 // Error reports any error that has occurred during a previous Write or Flush.
112 // WriteAll writes multiple CSV records to w using Write and then calls Flush.
120 return w.w.Flush()
  /prebuilts/go/linux-x86/src/net/http/cgi/
child.go 161 if err = rw.bufw.Flush(); err != nil {
174 func (r *response) Flush() {
175 r.bufw.Flush()
205 r.bufw.Flush()
  /external/brotli/go/cbrotli/
writer.go 125 // Flush outputs encoded data for all input provided to Write. The resulting
126 // output can be decoded to match all input before Flush, but the stream is
128 // Flush has a negative impact on compression.
129 func (w *Writer) Flush() error {
144 // Write implements io.Writer. Flush or Close must be called to ensure that the
  /external/lzma/CPP/7zip/Common/
OutBuffer.cpp 86 HRESULT COutBuffer::Flush() throw()
104 HRESULT result = Flush();
  /external/lzma/CPP/Common/
StdOutStream.cpp 40 bool CStdOutStream::Flush() throw()
  /external/pdfium/core/fxcrt/
cfx_seekablemultistream.cpp 75 bool CFX_SeekableMultiStream::Flush() {
  /external/perfetto/src/traced/probes/filesystem/
prefix_finder.cc 61 void PrefixFinder::Flush(size_t i) {
72 Flush(1);
95 Flush(i);
  /external/perfetto/src/tracing/ipc/consumer/
consumer_ipc_client_impl.cc 159 void ConsumerIPCClientImpl::Flush(uint32_t timeout_ms, FlushCallback callback) {
161 PERFETTO_DLOG("Cannot Flush(), not connected to tracing service");
172 consumer_port_.Flush(req, std::move(async_response));
  /external/perfetto/test/
fake_producer.cc 123 trace_writer_->Flush(callback);
129 void FakeProducer::Flush(FlushRequestID flush_request_id,
134 trace_writer_->Flush();
  /external/protobuf/src/google/protobuf/stubs/
bytestream_unittest.cc 121 // Verify that ByteSink is subclassable and Flush() overridable.
125 virtual void Flush() { Append("z", 1); }
130 // Write and Flush via the ByteSink superclass interface.
133 s->Flush();
136 TEST(ByteSinkTest, Flush) {
  /external/sfntly/cpp/src/sfntly/data/
font_output_stream.cc 116 void FontOutputStream::Flush() {
118 stream_->Flush();
124 stream_->Flush();

Completed in 322 milliseconds

1 2 3 4 5 6 7 8 9