OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SocketInputStream
(Results
1 - 3
of
3
) sorted by null
/libcore/ojluni/src/main/java/java/net/
SocketInputStream.java
39
*
SocketInputStream
. Note that this class should <b>NOT</b> be
45
class
SocketInputStream
extends FileInputStream
53
* Creates a new
SocketInputStream
. Can only be called
58
SocketInputStream
(AbstractPlainSocketImpl impl) throws IOException {
68
* The {@code getChannel} method of {@code
SocketInputStream
}
/frameworks/base/core/java/android/net/
LocalSocketImpl.java
38
private
SocketInputStream
fis;
58
class
SocketInputStream
extends InputStream {
357
fis = new
SocketInputStream
();
/libcore/ojluni/src/main/java/sun/nio/ch/
SocketAdaptor.java
193
private class
SocketInputStream
196
private
SocketInputStream
() {
237
private InputStream
socketInputStream
= null;
246
if (
socketInputStream
== null) {
248
socketInputStream
= AccessController.doPrivileged(
251
return new
SocketInputStream
();
258
return
socketInputStream
;
Completed in 108 milliseconds