HomeSort by relevance Sort by last modified time
    Searched refs:Flush (Results 251 - 275 of 860) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
c++filt.go 77 if err := out.Flush(); err != nil {
106 if err := out.Flush(); err != nil {
  /prebuilts/go/darwin-x86/test/bench/go1/
fasta_test.go 74 func (b *fastaBuffer) Flush() {
75 panic("flush")
86 b.Flush()
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
c++filt.go 77 if err := out.Flush(); err != nil {
106 if err := out.Flush(); err != nil {
  /prebuilts/go/linux-x86/test/bench/go1/
fasta_test.go 74 func (b *fastaBuffer) Flush() {
75 panic("flush")
86 b.Flush()
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl_lite.h 291 bool Flush();
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl_lite.h 291 bool Flush();
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl_lite.h 291 bool Flush();
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
bytestream.h 67 // interface offers 3 different ways to append data, and a Flush() function.
75 // sink->Flush();
86 // subclasses may use internal buffers that require calling Flush() at the end
88 virtual void Flush();
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
zero_copy_stream_impl_lite.h 291 bool Flush();
  /system/update_engine/payload_consumer/
file_descriptor.cc 126 bool EintrSafeFileDescriptor::Flush() {
  /art/compiler/jit/
jit_logger.cc 77 UNUSED(perf_file_->Flush());
303 UNUSED(jit_dump_file_->Flush());
  /device/google/contexthub/sensorhal/
hubconnection.h 159 struct Flush
259 std::list<struct Flush> mFlushesPending[NUM_COMMS_SENSORS_PLUS_1];
  /external/libvpx/libvpx/test/
encode_test_driver.cc 58 Flush();
91 void Encoder::Flush() {
237 // Flush the decoder when there are no more fragments.
  /external/lzma/CPP/7zip/Common/
CWrappers.cpp 204 HRESULT CByteOutBufWrap::Flush() throw()
224 p->Flush();
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_fbo.c 303 /* sw fallback flush stuff */
534 if (ctx->Driver.Flush)
535 ctx->Driver.Flush(ctx); /* +r6/r7 */
578 if (ctx->Driver.Flush)
579 ctx->Driver.Flush(ctx); /* +r6/r7 */
717 if (ctx->Driver.Flush)
718 ctx->Driver.Flush(ctx); /* +r6/r7 */
826 if (ctx->Driver.Flush)
827 ctx->Driver.Flush(ctx); /* +r6/r7 */
radeon_queryobj.c 93 ctx->Driver.Flush(ctx);
112 if (radeon->dma.flush)
113 radeon->dma.flush(&radeon->glCtx);
152 if (radeon->dma.flush)
153 radeon->dma.flush(&radeon->glCtx);
169 /* Need to perform a flush, as per ARB_occlusion_query spec */
171 ctx->Driver.Flush(ctx);
  /external/tensorflow/tensorflow/core/platform/cloud/
retrying_file_system.cc 70 Status Flush() override {
72 std::bind(&WritableFile::Flush, base_file_.get()),
  /external/v8/include/libplatform/
v8-tracing.h 112 virtual void Flush() = 0;
153 virtual bool Flush() = 0;
  /external/webrtc/webrtc/common_audio/resampler/
sinc_resampler.cc 37 // These new regions remain constant until a Flush() occurs. While complicated,
177 Flush();
351 void SincResampler::Flush() {
  /external/webrtc/webrtc/modules/video_coding/
receiver.cc 62 jitter_buffer_.Flush();
139 // Timing error => reset timing and flush the jitter buffer.
140 jitter_buffer_.Flush();
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
prettywriter.h 107 Base::os_->Flush();
131 Base::os_->Flush();
  /prebuilts/go/darwin-x86/src/text/tabwriter/
tabwriter_test.go 48 err := w.Flush()
50 t.Errorf("--- test: %s\n--- src:\n%q\n--- flush error: %v\n", testname, src, err)
326 "1\t2\t3\t4\f" + // \f causes a newline and flush
336 "1\t2\t3\t4\f" + // \f causes a newline and flush
636 defer wantPanicString(t, "tabwriter: panic during Flush")
641 w.Flush()
642 t.Errorf("failed to panic during Flush")
  /prebuilts/go/linux-x86/src/text/tabwriter/
tabwriter_test.go 48 err := w.Flush()
50 t.Errorf("--- test: %s\n--- src:\n%q\n--- flush error: %v\n", testname, src, err)
326 "1\t2\t3\t4\f" + // \f causes a newline and flush
336 "1\t2\t3\t4\f" + // \f causes a newline and flush
636 defer wantPanicString(t, "tabwriter: panic during Flush")
641 w.Flush()
642 t.Errorf("failed to panic during Flush")
  /prebuilts/go/darwin-x86/src/bufio/
bufio.go 520 // accepted and all subsequent writes, and Flush, will return the error.
522 // Flush method to guarantee all data has been forwarded to
565 // Flush writes any buffered data to the underlying io.Writer.
566 func (b *Writer) Flush() error {
609 b.Flush()
628 if b.Available() <= 0 && b.Flush() != nil {
651 if b.Flush(); b.err != nil {
676 b.Flush()
697 if err1 := b.Flush(); err1 != nil {
719 // If we filled the buffer exactly, flush preemptively
    [all...]
  /prebuilts/go/linux-x86/src/bufio/
bufio.go 520 // accepted and all subsequent writes, and Flush, will return the error.
522 // Flush method to guarantee all data has been forwarded to
565 // Flush writes any buffered data to the underlying io.Writer.
566 func (b *Writer) Flush() error {
609 b.Flush()
628 if b.Available() <= 0 && b.Flush() != nil {
651 if b.Flush(); b.err != nil {
676 b.Flush()
697 if err1 := b.Flush(); err1 != nil {
719 // If we filled the buffer exactly, flush preemptively
    [all...]

Completed in 1000 milliseconds

<<11121314151617181920>>