OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:close
(Results
1 - 25
of
3530
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/bionic/libc/arch-arm/syscalls/
close.S
6
ENTRY(
close
)
function
15
END(
close
)
/bionic/libc/arch-mips/syscalls/
close.S
4
.globl
close
6
.ent
close
8
close
:
label
22
.end
close
/bionic/libc/arch-x86/syscalls/
close.S
6
ENTRY(
close
)
function
21
END(
close
)
/libcore/luni/src/main/java/java/io/
Closeable.java
20
* An {@code AutoCloseable} whose
close
method may throw an {@link IOException}.
27
* <p>Although only the first call has any effect, it is safe to call
close
29
* overridden {@code AutoCloseable.
close
()}, which may be called at most
32
void
close
() throws IOException;
method in interface:Closeable
/libcore/luni/src/main/java/java/lang/
AutoCloseable.java
21
* are not used any longer. Calling the {@code
close
} method releases resources
29
* foo.
close
();
39
void
close
() throws Exception;
method in interface:AutoCloseable
/external/apache-harmony/support/src/test/java/tests/support/
Support_HttpSocket.java
48
public void
close
() throws IOException {
method in class:Support_HttpSocket
50
instance.
close
();
Support_Socket.java
33
public void
close
() throws IOException;
method in interface:Support_Socket
/external/proguard/src/proguard/io/
ParentDataEntryWriter.java
70
public void
close
() throws IOException
method in class:ParentDataEntryWriter
72
dataEntryWriter.
close
();
CascadingDataEntryWriter.java
86
public void
close
() throws IOException
method in class:CascadingDataEntryWriter
88
dataEntryWriter1.
close
();
89
dataEntryWriter2.
close
();
FilteredDataEntryWriter.java
111
public void
close
() throws IOException
method in class:FilteredDataEntryWriter
115
acceptedDataEntryWriter.
close
();
121
rejectedDataEntryWriter.
close
();
/frameworks/base/core/java/android/bluetooth/
BluetoothInputStream.java
43
public void
close
() throws IOException {
method in class:BluetoothInputStream
44
mSocket.
close
();
/external/bison/lib/
close.c
0
/*
close
replacement.
27
#undef
close
macro
37
result =
close
(fd);
49
# define close_nothrow
close
52
/* Override
close
() to call into other gnulib modules. */
/external/javassist/src/main/javassist/
ClassPath.java
66
void
close
();
method in interface:ClassPath
/frameworks/base/core/java/android/content/
EntityIterator.java
24
* resetting the iterator back to the beginning and provides for an explicit {@link #
close
()}
38
public void
close
();
method in interface:EntityIterator
/frameworks/base/core/java/android/content/res/
XmlResourceParser.java
26
* an additional
close
() method on this interface for the client to indicate
31
*
Close
this interface to the resource. Calls on the interface are no
34
public void
close
();
method in interface:XmlResourceParser
/libcore/luni/src/main/java/java/nio/channels/
InterruptibleChannel.java
27
* the channel's {@link #
close
()} method. The I/O thread will throw an
50
public void
close
() throws IOException;
method in interface:InterruptibleChannel
/external/proguard/src/proguard/
FileWordReader.java
80
public void
close
() throws IOException
method in class:FileWordReader
82
super.
close
();
86
reader.
close
();
/libcore/support/src/test/java/tests/net/
StuckServer.java
77
public void
close
() throws IOException {
method in class:StuckServer
79
serverSocket.
close
();
82
client.
close
();
/packages/apps/Email/src/com/android/email/data/
ClosingMatrixCursor.java
25
* {@link MatrixCursor} which takes an extra {@link Cursor} to the constructor, and
close
37
public void
close
() {
method in class:ClosingMatrixCursor
39
mInnerCursor.
close
();
41
super.
close
();
/frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java
83
e0.
close
();
84
e1.
close
();
85
e2.
close
();
106
e.
close
();
128
w0.
close
();
129
gz1.
close
();
130
os2.
close
();
131
gz3.
close
();
170
e0.
close
();
171
e1.
close
();
[
all
...]
/external/apache-harmony/support/src/test/java/tests/util/
SerializationTester.java
74
oos.
close
();
80
ois.
close
();
176
oinput.
close
();
183
input.
close
();
217
ooutput.
close
();
224
output.
close
();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
TeeInputStream.java
51
public void
close
()
method in class:TeeInputStream
54
this.input.
close
();
55
this.output.
close
();
/packages/apps/Contacts/src/com/android/contacts/list/
JoinContactLoader.java
53
public void
close
() {
method in class:JoinContactLoader.JoinContactLoaderResult
55
suggestionCursor.
close
();
57
super.
close
();
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
TeeInputStream.java
30
* The proxied input stream is closed when the {@link #
close
()} method is
88
public void
close
() throws IOException {
method in class:TeeInputStream
90
super.
close
();
93
branch.
close
();
/cts/libs/vogar-expect/src/vogar/util/
IoUtils.java
28
c.
close
();
37
c.
close
();
Completed in 507 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>