OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:socketInputStream
(Results
1 - 2
of
2
) sorted by null
/libcore/ojluni/src/main/java/java/net/
AbstractPlainSocketImpl.java
57
private
SocketInputStream
socketInputStream
= null;
402
if (
socketInputStream
== null) {
403
socketInputStream
= new
SocketInputStream
(this);
405
return
socketInputStream
;
408
void setInputStream(
SocketInputStream
in) {
409
socketInputStream
= in;
516
if (
socketInputStream
!= null) {
517
socketInputStream
.setEOF(true)
[
all
...]
/libcore/ojluni/src/main/java/sun/nio/ch/
SocketAdaptor.java
206
private class
SocketInputStream
209
private
SocketInputStream
() {
263
private InputStream
socketInputStream
= null;
272
if (
socketInputStream
== null) {
274
socketInputStream
= AccessController.doPrivileged(
277
return new
SocketInputStream
();
284
return
socketInputStream
;
Completed in 67 milliseconds