OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:flush
(Results
1 - 25
of
1083
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/libcore/luni/src/main/java/java/io/
Flushable.java
32
void
flush
() throws IOException;
method in interface:Flushable
ObjectOutput.java
43
public void
flush
() throws IOException;
method in interface:ObjectOutput
FilterOutputStream.java
61
flush
();
method
84
* if an error occurs attempting to
flush
this stream.
87
public void
flush
() throws IOException {
method in class:FilterOutputStream
88
out.
flush
();
FilterWriter.java
67
* if an error occurs attempting to
flush
this writer.
70
public void
flush
() throws IOException {
method in class:FilterWriter
72
out.
flush
();
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
EOLConvertingOutputStream.java
42
public void
flush
() throws IOException {
method in class:EOLConvertingOutputStream
47
super.
flush
();
/device/generic/goldfish/opengl/system/OpenglSystemCommon/
HostConnection.h
37
void
flush
() {
function in class:HostConnection
39
m_stream->
flush
();
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
pb_bufmgr.h
78
*
Flush
all temporary-held buffers.
84
(*
flush
)( struct pb_manager *mgr );
member in struct:pb_manager
/external/chromium_org/third_party/npapi/npspy/common/
logfile.cpp
80
void CLogFile::
flush
()
function in class:CLogFile
/external/eigen/bench/btl/generic_bench/static/
static_size_generator.hh
33
std::cout << tab_sizes.back() << " \t" << std::
flush
;
member in class:static_size_generator::std
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_bufmgr.h
78
*
Flush
all temporary-held buffers.
84
(*
flush
)( struct pb_manager *mgr );
member in struct:pb_manager
/external/guava/guava/src/com/google/common/io/
Flushables.java
40
*
Flush
a {@link Flushable}, with control over whether an
48
* thrown by the {@code
flush
} method
50
* {@link Flushable#
flush
} throws an {@code IOException}.
53
public static void
flush
(Flushable flushable, boolean swallowIOException)
method in class:Flushables
56
flushable.
flush
();
68
* Equivalent to calling {@code
flush
(flushable, true)}, but with no
75
flush
(flushable, true);
method
/external/proguard/src/proguard/gui/
TextAreaOutputStream.java
48
public void
flush
() throws IOException
method in class:TextAreaOutputStream
50
super.
flush
();
/frameworks/base/core/java/android/bluetooth/
BluetoothOutputStream.java
89
* 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
();
/libcore/luni/src/main/java/javax/crypto/
CipherOutputStream.java
108
public void
flush
() throws IOException {
method in class:CipherOutputStream
109
out.
flush
();
133
out.
flush
();
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ProxyOutputStream.java
74
* Invokes the delegate's <code>
flush
()</code> method.
77
public void
flush
() throws IOException {
method in class:ProxyOutputStream
78
out.
flush
();
ProxyWriter.java
96
* Invokes the delegate's <code>
flush
()</code> method.
99
public void
flush
() throws IOException {
method in class:ProxyWriter
100
out.
flush
();
TeeOutputStream.java
80
public void
flush
() throws IOException {
method in class:TeeOutputStream
81
super.
flush
();
82
this.branch.
flush
();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
TeeOutputStream.java
39
public void
flush
()
method in class:TeeOutputStream
42
this.output1.
flush
();
43
this.output2.
flush
();
/external/apache-http/src/org/apache/http/
HttpClientConnection.java
110
void
flush
() throws IOException;
method in interface:HttpClientConnection
HttpServerConnection.java
93
void
flush
()
method in interface:HttpServerConnection
/external/apache-http/src/org/apache/http/io/
SessionOutputBuffer.java
59
void
flush
() throws IOException;
method in interface:SessionOutputBuffer
/external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterChain.java
38
*
flush
()
64
public void
flush
() throws IOException;
method in interface:WriterChain
/external/chromium_org/third_party/WebKit/Source/wtf/
FilePrintStream.cpp
58
void FilePrintStream::
flush
()
function in class:WTF::FilePrintStream
PrintStream.cpp
46
void PrintStream::
flush
()
function in class:WTF::PrintStream
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
queue.cpp
45
_cl_command_queue::
flush
() {
function in class:_cl_command_queue
55
//
Flush
and fence them.
56
pipe->
flush
(pipe, &fence);
Completed in 280 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>