Searched defs:flush (Results 1 - 25 of 59) sorted by relevance

123

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothOutputStream.java89 * for flush implementation. Use it to ensure the writing data afterwards will
95 public void flush() throws IOException { method in class:BluetoothOutputStream
96 mSocket.flush();
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java99 pw.flush();
120 public void flush() { method in class:AndroidHandler
121 // No need to flush, but must implement abstract method.
/frameworks/native/services/sensorservice/
H A DSensorInterface.h51 virtual status_t flush(void* ident, int handle) { function in class:android::SensorInterface
79 virtual status_t flush(void* ident, int handle);
H A DSensorInterface.cpp59 status_t HardwareSensor::flush(void* ident, int handle) { function in class:android::HardwareSensor
60 return mSensorDevice.flush(ident, handle);
H A DSensorDevice.cpp312 status_t SensorDevice::flush(void* ident, int handle) { function in class:android::SensorDevice
316 ALOGD_IF(DEBUG_CONNECTIONS, "\t>>> actuating h/w flush %d", handle);
317 return mSensorDevice->flush(mSensorDevice, handle);
/frameworks/support/v4/java/android/support/v4/util/
H A DLogWriter.java47 @Override public void flush() { method in class:LogWriter
/frameworks/base/core/java/android/util/
H A DLogWriter.java60 @Override public void flush() { method in class:LogWriter
H A DJsonWriter.java383 public void flush() throws IOException { method in class:JsonWriter
384 out.flush();
/frameworks/base/media/java/android/media/
H A DMediaInserter.java68 flush(tableUri, list);
76 flush(tableUri, list);
84 flush(tableUri, list);
89 private void flush(Uri tableUri, List<ContentValues> list) throws RemoteException { method in class:MediaInserter
/frameworks/base/core/java/android/net/http/
H A DHttpResponseCache.java66 * cache.flush();
240 public void flush() { method in class:HttpResponseCache
242 delegate.flush();
H A DAndroidHttpClientConnection.java286 this.outbuffer.flush();
289 public void flush() throws IOException { method in class:AndroidHttpClientConnection
/frameworks/native/libs/gui/
H A DISensorEventConnection.cpp80 virtual status_t flush() { function in class:android::BpSensorEventConnection
124 status_t result = flush();
H A DSensorEventQueue.cpp135 status_t SensorEventQueue::flush() const { function in class:SensorEventQueue
136 return mSensorEventConnection->flush();
/frameworks/base/libs/hwui/
H A DGammaFontRenderer.cpp207 void Lookup3GammaFontRenderer::flush() { function in class:android::uirenderer::Lookup3GammaFontRenderer
H A DGammaFontRenderer.h33 virtual void flush() = 0;
67 void flush() { function in class:android::uirenderer::ShaderGammaFontRenderer
113 void flush() { function in class:android::uirenderer::LookupGammaFontRenderer
157 void flush();
H A DLayer.cpp114 void Layer::removeFbo(bool flush) { argument
127 if (flush) LayerRenderer::flushLayer(this);
224 void Layer::flush() { function in class:android::uirenderer::Layer
225 // renderer is checked as layer may be destroyed/put in layer cache with flush scheduled
231 deferredList->flush(*renderer, dirtyRect);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_transport.cpp149 int BufferedOutputStream::flush() { function in class:android::gltrace::BufferedOutputStream
170 return flush();
/frameworks/av/camera/camera2/
H A DICameraDeviceUser.cpp200 virtual status_t flush() function in class:android::BpCameraDeviceUser
202 ALOGV("flush");
342 reply->writeInt32(flush());
/frameworks/av/media/libmedia/
H A DIAudioTrack.cpp87 virtual void flush() function in class:android::BpAudioTrack
219 flush();
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerRenderer.cpp82 void NuPlayer::Renderer::flush(bool audio) { function in class:android::NuPlayer::Renderer
/frameworks/av/media/libstagefright/
H A DTimedEventQueue.cpp74 void TimedEventQueue::stop(bool flush) { argument
79 if (flush) {
88 // some events may be left in the queue if we did not flush and the wake lock
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraDevice.java213 * #flush} and wait for the idle callback before calling configureOutputs. This will discard
243 * @see #flush
386 * {@link #flush} will also clear the request.</p>
417 * @see #flush
444 * {@link #flush} will also clear the request.</p>
475 * @see #flush
536 * request or a repeating burst is set, it will be cleared by the flush.</p>
540 * in-progress work. Once the flush is complete, the idle callback will be
544 * from the camera device, since once the flush is complete, the first new
548 * <p>This means that using {@code flush()} t
562 public void flush() throws CameraAccessException; method in interface:CameraDevice
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DLoggingPrintStream.java75 public synchronized void flush() { method in class:LoggingPrintStream
76 flush(true);
85 private void flush(boolean completely) { method in class:LoggingPrintStream
150 flush(false);
192 flush(false);
199 flush(false);
206 flush(false);
233 flush(false);
239 flush(false);
249 flush(tru
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DFastPrintWriter.java27 public void flush() throws IOException {
55 * stream. By default, the new print writer does not automatically flush its
120 * writer. By default, the new print writer does not automatically flush its
125 * flush() before retrieving any data from the Writer.</p>
145 * indicates whether to flush contents upon encountering a
163 * indicates whether to flush contents upon encountering a
249 flush();
340 //Log.i("PackageManager", "flush mPos=" + mPos);
356 mOutputStream.flush();
359 mWriter.flush();
384 public void flush() { method in class:FastPrintWriter
[all...]
H A DFastXmlSerializer.java73 flush();
92 flush();
111 flush();
198 flush();
237 public void flush() throws IOException { method in class:FastXmlSerializer
238 //Log.i("PackageManager", "flush mPos=" + mPos);
254 mOutputStream.flush();
257 mWriter.flush();

Completed in 445 milliseconds

123