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

12345678

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_zlib.py95 # verify failure on calling decompressobj.flush with bad params
96 self.assertRaises(ValueError, zlib.decompressobj().flush, 0)
97 self.assertRaises(ValueError, zlib.decompressobj().flush, -1)
170 x2 = co.flush()
171 self.assertRaises(zlib.error, co.flush) # second flush should not work
174 y2 = dco.flush()
186 x2 = co.flush()
189 y2 = dco.flush()
199 bufs.append(co.flush())
[all...]
H A Dsortperf.py56 def flush(): function
57 sys.stdout.flush()
64 flush()
92 flush()
/device/generic/goldfish-opengl/host/include/libOpenglRender/
H A DIOStream.h47 if (flush() < 0) {
48 ERR("Failed to flush in alloc\n");
49 return NULL; // we failed to flush so something is wrong
71 int flush() {
82 flush();
/device/linaro/bootloader/edk2/BaseTools/Scripts/
H A DUpdateBuildVersions.py90 sys.stderr.flush()
100 sys.stderr.flush()
110 sys.stderr.flush()
119 sys.stderr.flush()
124 file_list.flush()
153 fd_.flush()
183 fd_.flush()
211 sys.stderr.flush()
217 sys.stderr.flush()
223 sys.stderr.flush()
[all...]
/device/generic/goldfish/camera/
H A DEmulatedCamera3.h123 virtual status_t flush();
163 static int flush(const camera3_device_t *);
H A DEmulatedCamera3.cpp152 status_t EmulatedCamera3::flush() { function in class:android::EmulatedCamera3
230 int EmulatedCamera3::flush(const camera3_device_t *d) { function in class:android::EmulatedCamera3
232 return ec->flush();
254 EmulatedCamera3::flush
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Ddeflate.h108 int last_flush; /* value of flush param for previous deflate call */
323 # define _tr_tally_lit(s, c, flush) \
328 flush = (s->last_lit == s->lit_bufsize-1); \
330 # define _tr_tally_dist(s, distance, length, flush) \
338 flush = (s->last_lit == s->lit_bufsize-1); \
341 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
342 # define _tr_tally_dist(s, distance, length, flush) \
343 flush = _tr_tally(s, distance, length)
H A Ddeflate.c68 block_done, /* block flush performed */
73 typedef block_state (*compress_func) OF((deflate_state *s, int flush));
77 local block_state deflate_stored OF((deflate_state *s, int flush));
78 local block_state deflate_fast OF((deflate_state *s, int flush));
80 local block_state deflate_slow OF((deflate_state *s, int flush));
82 local block_state deflate_rle OF((deflate_state *s, int flush));
83 local block_state deflate_huff OF((deflate_state *s, int flush));
665 int ZEXPORT deflate (strm, flush)
667 int flush;
669 int old_flush; /* value of flush para
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/zlib/
H A Dzlibdemo.py36 # Don't forget to call flush()!!
37 comptext = comptext + compressor.flush()
41 decomp=decomp+decompressor.flush()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
H A Ddeflate.h105 int last_flush; /* value of flush param for previous deflate call */
308 # define _tr_tally_lit(s, c, flush) \
313 flush = (s->last_lit == s->lit_bufsize-1); \
315 # define _tr_tally_dist(s, distance, length, flush) \
323 flush = (s->last_lit == s->lit_bufsize-1); \
326 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
327 # define _tr_tally_dist(s, distance, length, flush) \
328 flush = _tr_tally(s, distance, length)
H A Ddeflate.c68 block_done, /* block flush performed */
73 typedef block_state (*compress_func) OF((deflate_state *s, int flush));
77 local block_state deflate_stored OF((deflate_state *s, int flush));
78 local block_state deflate_fast OF((deflate_state *s, int flush));
80 local block_state deflate_slow OF((deflate_state *s, int flush));
552 int ZEXPORT deflate (strm, flush)
554 int flush;
556 int old_flush; /* value of flush param for previous deflate call */
560 flush > Z_FINISH || flush <
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
H A Drunner.py55 self.stream.flush()
63 self.stream.flush()
71 self.stream.flush()
79 self.stream.flush()
87 self.stream.flush()
95 self.stream.flush()
103 self.stream.flush()
/device/google/contexthub/sensorhal/
H A Dsensors.h68 int flush(int handle);
115 virtual int flush(int handle) = 0;
128 virtual int flush(int handle) override;
151 virtual int flush(int handle) override;
H A Dsensors.cpp59 device.flush = FlushWrapper;
125 int SensorContext::flush(int handle) { function in class:SensorContext
126 ALOGV("flush");
130 return h->flush(handle);
191 return reinterpret_cast<SensorContext *>(dev)->flush(handle);
313 int SensorContext::HubConnectionOperation::flush(int handle) { function in class:SensorContext::HubConnectionOperation
356 int SensorContext::DynamicSensorManagerOperation::flush(int handle) { function in class:SensorContext::DynamicSensorManagerOperation
357 return mDynamicSensorManager->flush(handle);
/device/google/cuttlefish_common/guest/hals/camera/
H A DEmulatedCamera3.cpp144 status_t EmulatedCamera3::flush() { function in class:android::EmulatedCamera3
222 int EmulatedCamera3::flush(const camera3_device_t* d) { function in class:android::EmulatedCamera3
224 return ec->flush();
245 EmulatedCamera3::flush,
H A DEmulatedCamera3.h117 virtual status_t flush();
157 static int flush(const camera3_device_t *);
/device/google/marlin/camera/QCamera2/util/
H A DQCameraQueue.h55 void flush();
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
H A Dpi.py30 sys.stdout.flush()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
H A Dfinger.py32 sys.stdout.flush()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/
H A Dexample.py52 def flush(self): member in class:cStringIO.InputType
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
H A DFlushCacheLine.asm39 ; then promote flush range to flush entire cache.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
H A Dzlib_codec.py62 return c + self.compressobj.flush()
78 return c + self.decompressobj.flush()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
H A Dzlib_codec.py62 return c + self.compressobj.flush()
78 return c + self.decompressobj.flush()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
H A Dbkfile.py19 self.flush = self.__file.flush
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dsgmllib.py470 self.flush()
472 def flush(self): member in class:TestSGMLParser
479 self.flush()
486 self.flush()
496 self.flush()
500 self.flush()
504 self.flush()
508 self.flush()
513 self.flush()

Completed in 246 milliseconds

12345678