Searched defs:wantReply (Results 1 - 7 of 7) sorted by relevance

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
H A DPacketGlobalCancelForwardRequest.java17 public boolean wantReply; field in class:PacketGlobalCancelForwardRequest
21 public PacketGlobalCancelForwardRequest(boolean wantReply, String bindAddress, int bindPort) argument
23 this.wantReply = wantReply;
36 tw.writeBoolean(wantReply);
H A DPacketGlobalForwardRequest.java17 public boolean wantReply; field in class:PacketGlobalForwardRequest
21 public PacketGlobalForwardRequest(boolean wantReply, String bindAddress, int bindPort) argument
23 this.wantReply = wantReply;
36 tw.writeBoolean(wantReply);
H A DPacketSessionStartShell.java18 public boolean wantReply; field in class:PacketSessionStartShell
20 public PacketSessionStartShell(int recipientChannelID, boolean wantReply) argument
23 this.wantReply = wantReply;
34 tw.writeBoolean(wantReply);
H A DPacketSessionSubsystemRequest.java18 public boolean wantReply; field in class:PacketSessionSubsystemRequest
21 public PacketSessionSubsystemRequest(int recipientChannelID, boolean wantReply, String subsystem) argument
24 this.wantReply = wantReply;
36 tw.writeBoolean(wantReply);
H A DPacketSessionExecCommand.java21 public boolean wantReply; field in class:PacketSessionExecCommand
24 public PacketSessionExecCommand(int recipientChannelID, boolean wantReply, String command) argument
27 this.wantReply = wantReply;
44 tw.writeBoolean(wantReply);
H A DPacketSessionPtyRequest.java18 public boolean wantReply; field in class:PacketSessionPtyRequest
26 public PacketSessionPtyRequest(int recipientChannelID, boolean wantReply, String term, argument
31 this.wantReply = wantReply;
48 tw.writeBoolean(wantReply);
H A DPacketSessionX11Request.java18 public boolean wantReply; field in class:PacketSessionX11Request
25 public PacketSessionX11Request(int recipientChannelID, boolean wantReply, boolean singleConnection, argument
29 this.wantReply = wantReply;
45 tw.writeBoolean(wantReply);

Completed in 290 milliseconds