OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mSocketChannel
(Results
1 - 4
of
4
) sorted by null
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/device/
DeviceConnection.java
37
private SocketChannel
mSocketChannel
;
44
mSocketChannel
= SocketChannel.open();
51
mSocketChannel
.connect(new InetSocketAddress("127.0.0.1", port)); //$NON-NLS-1$
52
mSocketChannel
.socket().setSoTimeout(40000);
57
mIn = new BufferedReader(new InputStreamReader(
mSocketChannel
.socket().getInputStream()));
65
new BufferedWriter(new OutputStreamWriter(
mSocketChannel
.socket()
72
return
mSocketChannel
.socket();
96
mSocketChannel
.close();
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
EmulatorConsole.java
193
private SocketChannel
mSocketChannel
;
288
mSocketChannel
= SocketChannel.open(socketAddr);
557
AdbHelper.write(
mSocketChannel
, bCommand, bCommand.length, DdmPreferences.getTimeOut());
612
count =
mSocketChannel
.read(buf);
Device.java
66
private SocketChannel
mSocketChannel
;
509
mSocketChannel
= socketChannel;
516
return
mSocketChannel
;
/prebuilt/common/ddmlib/
ddmlib-prebuilt.jar
Completed in 464 milliseconds