OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wantReply
(Results
1 - 8
of
8
) sorted by null
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketSessionStartShell.java
18
public boolean
wantReply
;
20
public PacketSessionStartShell(int recipientChannelID, boolean
wantReply
)
23
this.
wantReply
=
wantReply
;
34
tw.writeBoolean(
wantReply
);
PacketGlobalCancelForwardRequest.java
17
public boolean
wantReply
;
21
public PacketGlobalCancelForwardRequest(boolean
wantReply
, String bindAddress, int bindPort)
23
this.
wantReply
=
wantReply
;
36
tw.writeBoolean(
wantReply
);
PacketGlobalForwardRequest.java
17
public boolean
wantReply
;
21
public PacketGlobalForwardRequest(boolean
wantReply
, String bindAddress, int bindPort)
23
this.
wantReply
=
wantReply
;
36
tw.writeBoolean(
wantReply
);
PacketSessionSubsystemRequest.java
18
public boolean
wantReply
;
21
public PacketSessionSubsystemRequest(int recipientChannelID, boolean
wantReply
, String subsystem)
24
this.
wantReply
=
wantReply
;
36
tw.writeBoolean(
wantReply
);
PacketSessionExecCommand.java
21
public boolean
wantReply
;
24
public PacketSessionExecCommand(int recipientChannelID, boolean
wantReply
, String command)
27
this.
wantReply
=
wantReply
;
44
tw.writeBoolean(
wantReply
);
PacketSessionX11Request.java
18
public boolean
wantReply
;
25
public PacketSessionX11Request(int recipientChannelID, boolean
wantReply
, boolean singleConnection,
29
this.
wantReply
=
wantReply
;
45
tw.writeBoolean(
wantReply
);
PacketSessionPtyRequest.java
18
public boolean
wantReply
;
26
public PacketSessionPtyRequest(int recipientChannelID, boolean
wantReply
, String term,
31
this.
wantReply
=
wantReply
;
48
tw.writeBoolean(
wantReply
);
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
ChannelManager.java
1263
boolean
wantReply
= tr.readBoolean();
1270
if (
wantReply
!= false)
1292
if (
wantReply
!= false)
1319
if (
wantReply
)
[
all
...]
Completed in 1020 milliseconds