OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SocketInputStream
(Results
1 - 10
of
10
) 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
}
AbstractPlainSocketImpl.java
58
private
SocketInputStream
socketInputStream
= null;
431
if (
socketInputStream
== null)
432
socketInputStream
= new
SocketInputStream
(this);
434
return
socketInputStream
;
437
void setInputStream(
SocketInputStream
in) {
438
socketInputStream
= in;
583
if (
socketInputStream
!= null) {
584
socketInputStream
.setEOF(true)
[
all
...]
SocksSocketImpl.java
124
count = ((
SocketInputStream
)in).read(data, received, len - received, remainingMillis(deadlineMillis));
/libcore/ojluni/src/main/native/
openjdksub.mk
54
SocketInputStream
.c \
SocketInputStream.c
43
*
SocketInputStream
157
NATIVE_METHOD(
SocketInputStream
, socketRead0, "(Ljava/io/FileDescriptor;[BIII)I"),
161
jniRegisterNativeMethods(env, "java/net/
SocketInputStream
", gMethods, NELEM(gMethods));
/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
;
/frameworks/base/config/
preloaded-classes
[
all
...]
compiled-classes-phone
[
all
...]
/libcore/
openjdk_java_files.mk
311
ojluni/src/main/java/java/net/
SocketInputStream
.java \
[
all
...]
Completed in 179 milliseconds