Searched defs:flush (Results 151 - 175 of 370) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/main/
H A Dtexparam.c227 flush(struct gl_context *ctx) function
264 flush(ctx);
273 flush(ctx);
289 flush(ctx); /* does not effect completeness */
301 flush(ctx);
311 flush(ctx);
321 flush(ctx);
362 /* no flush() */
375 flush(ctx);
391 flush(ct
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSpdyStream.java199 connection.flush();
544 @Override public void flush() throws IOException { method in class:SpdyStream.SpdyDataSink
549 connection.flush();
568 connection.flush();
/external/okhttp/okio/src/main/java/okio/
H A DOkBuffer.java73 @Override public void flush() {
648 @Override public void flush() { method in class:OkBuffer
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_inflate.c594 In this implementation, the flush parameter of inflate() only affects the
600 stream available. So the only thing the flush parameter actually does is:
601 when flush is set to Z_FINISH, inflate() cannot return Z_OK. Instead it
607 int flush)
827 if (flush == Z_BLOCK || flush == Z_TREES) goto inf_leave;
848 if (flush == Z_TREES) {
877 if (flush == Z_TREES) goto inf_leave;
1018 if (flush == Z_TREES) goto inf_leave;
1233 (state->mode < CHECK || flush !
605 inflate( z_streamp strm, int flush) argument
[all...]
H A Dgzwrite.c66 flush is assumed to be a valid deflate() flush value. If flush is Z_FINISH,
69 ignore flush. */
72 int flush)
98 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH &&
99 (flush != Z_FINISH || ret == Z_STREAM_END))) {
115 ret = deflate(strm, flush);
125 if (flush == Z_FINISH)
466 int flush)
70 gz_comp( gz_statep state, int flush) argument
464 gzflush( gzFile file, int flush) argument
[all...]
/external/qemu/qobject/
H A Djson-lexer.c279 static int json_lexer_feed_char(JSONLexer *lexer, char ch, bool flush) argument
322 * induce an error/flush state.
334 } while (!char_consumed && !flush);
/external/skia/src/xml/
H A DSkXMLWriter.cpp22 void SkXMLWriter::flush() function in class:SkXMLWriter
210 this->flush();
272 this->flush();
/external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
H A DInBandBytestreamSession.java613 // if buffer is full flush buffer
687 public synchronized void flush() throws IOException { method in class:InBandBytestreamSession.IBBOutputStream
727 * @param flush if <code>true</code> flushes the stream
729 protected void closeInternal(boolean flush) { argument
736 if (flush) {
/external/stlport/stlport/stl/
H A D_ostream.h134 _Self& flush() { function in class:basic_ostream
189 _M_str.flush();
224 __str.tie()->flush();
359 __os.flush();
372 flush(basic_ostream<_CharT, _Traits>& __os) { function
373 __os.flush();
/external/zlib/src/contrib/iostream2/
H A Dzstream.h214 * error number (see function gzerror below). flush() returns Z_OK if
216 * flush() should be called only when strictly necessary because it can
219 int flush(int _flush) { function in class:ozstream
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DStreamHandlerTest.java308 assertEquals("flush", CallVerificationStack.getInstance()
324 h.flush();
339 assertEquals("flush", CallVerificationStack.getInstance()
355 * Test flush().
360 h.flush();
361 assertEquals("flush", CallVerificationStack.getInstance()
368 * Test flush() when having no output stream.
372 h.flush();
481 h.flush();
487 h.flush();
868 public void flush() throws IOException { method in class:StreamHandlerTest.MockOutputStream
903 public void flush() throws IOException { method in class:StreamHandlerTest.MockExceptionOutputStream
[all...]
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dupdate_nacl_manifest.py335 def flush(self): member in class:GsutilLoggingHandler
346 logging.handlers.BufferingHandler.flush(self)
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLConstructionSite.h119 // executeQueuedTasks empties the queue but does not flush pending text.
127 void flush(FlushMode mode) function in class:blink::FINAL
H A DHTMLTreeBuilder.h85 // Synchronously flush pending text and queued tasks, possibly creating more DOM nodes.
87 void flush(FlushMode mode) { m_tree.flush(mode); } function in class:blink::FINAL
H A DTextResourceDecoder.cpp417 String TextResourceDecoder::flush() function in class:blink::TextResourceDecoder
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTParser.cpp112 void VTTParser::flush() function in class:blink::VTTParser
114 String textData = m_decoder->flush();
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecICU.cpp289 int TextCodecICU::decodeToBuffer(UChar* target, UChar* targetLimit, const char*& source, const char* sourceLimit, int32_t* offsets, bool flush, UErrorCode& err) argument
293 ucnv_toUnicode(m_converterICU, &target, targetLimit, &source, sourceLimit, offsets, flush, &err);
333 String TextCodecICU::decode(const char* bytes, size_t length, FlushBehavior flush, bool stopOnError, bool& sawError) argument
357 int ucharsDecoded = decodeToBuffer(buffer, bufferLimit, source, sourceLimit, offsets, flush != DoNotFlush, err);
362 // flush the converter so it can be reused, and not be bothered by this error.
/external/chromium_org/third_party/icu/source/io/
H A Dustdio.c124 static const UChar * u_file_translit(UFILE *f, const UChar *src, int32_t *count, UBool flush) argument
180 if(flush == FALSE)
/external/chromium_org/third_party/icu/source/test/perf/utfperf/
H A Dutfperf.cpp169 UBool flush; local
183 flush=FALSE;
192 /* make sure that we convert once more to really flush */
197 flush=TRUE;
202 ucnv_toUnicode(cnv, &pOut, pOutLimit,&p, pInter,NULL, flush,pErrorCode);
207 } while(!flush);
251 /* make sure that we convert once more to really flush */
313 /* make sure that we convert once more to really flush */
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dxmlparser.cpp171 UBool flush; local
273 flush=FALSE;
304 if(flush) {
311 // reached end of file, convert once more to flush the converter
312 flush=TRUE;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
H A Drbug_core.c487 struct rbug_proto_context_flush *flush = (struct rbug_proto_context_flush *)header; local
493 rb_context = rbug_get_context_locked(rb_screen, flush->context);
503 rb_context->pipe->flush(rb_context->pipe, NULL);
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_split_copy.c172 flush( struct copy_context *copy ) function
319 flush(copy);
424 flush(copy);
/external/chromium_org/third_party/pexpect/
H A Dpexpect.py255 sys.stdout.flush()
704 self.flush()
715 def flush(self): member in class:spawn
886 self.logfile.flush()
889 self.logfile_read.flush()
1002 self.logfile.flush()
1005 self.logfile_send.flush()
1570 self.stdout.flush()
1609 self.logfile.flush()
/external/chromium_org/third_party/skia/src/gpu/
H A DGrBitmapTextContext.cpp463 // try to clear out an unused plot before we flush
475 // flush any accumulated draws to allow us to free up a plot
477 fContext->flush();
529 // a number of verts to reserve and whether to perform a flush.
538 bool flush = fDrawTarget->geometryHints(&fMaxVertices, NULL); local
539 if (flush) {
541 fContext->flush();
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/
H A DReleaseTest-API.cc443 cout << flush; local
450 cout << flush; local
459 cout << flush; local
467 cout << flush; local
500 cout << flush; local
539 cout << flush; local
548 cout << flush; local
560 cout << flush; local
577 cout << flush; local
590 cout << flush; local
602 cout << flush; local
609 cout << "\\n" << flush; local
625 cout << flush; local
634 cout << flush; local
675 cout << flush; local
737 cout << flush; local
865 cout << flush; local
886 cout << flush; local
929 cout << flush; local
943 cout << flush; local
[all...]

Completed in 1061 milliseconds

1234567891011>>