/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/ |
D | PacketSessionStartShell.java | 18 public boolean wantReply; field in PacketSessionStartShell 20 public PacketSessionStartShell(int recipientChannelID, boolean wantReply) in PacketSessionStartShell() argument 23 this.wantReply = wantReply; in PacketSessionStartShell() 34 tw.writeBoolean(wantReply); in getPayload()
|
D | PacketGlobalCancelForwardRequest.java | 17 public boolean wantReply; field in PacketGlobalCancelForwardRequest 21 public PacketGlobalCancelForwardRequest(boolean wantReply, String bindAddress, int bindPort) in PacketGlobalCancelForwardRequest() argument 23 this.wantReply = wantReply; in PacketGlobalCancelForwardRequest() 36 tw.writeBoolean(wantReply); in getPayload()
|
D | PacketGlobalForwardRequest.java | 17 public boolean wantReply; field in PacketGlobalForwardRequest 21 public PacketGlobalForwardRequest(boolean wantReply, String bindAddress, int bindPort) in PacketGlobalForwardRequest() argument 23 this.wantReply = wantReply; in PacketGlobalForwardRequest() 36 tw.writeBoolean(wantReply); in getPayload()
|
D | PacketSessionSubsystemRequest.java | 18 public boolean wantReply; field in PacketSessionSubsystemRequest 21 public PacketSessionSubsystemRequest(int recipientChannelID, boolean wantReply, String subsystem) in PacketSessionSubsystemRequest() argument 24 this.wantReply = wantReply; in PacketSessionSubsystemRequest() 36 tw.writeBoolean(wantReply); in getPayload()
|
D | PacketSessionExecCommand.java | 21 public boolean wantReply; field in PacketSessionExecCommand 24 public PacketSessionExecCommand(int recipientChannelID, boolean wantReply, String command) in PacketSessionExecCommand() argument 27 this.wantReply = wantReply; in PacketSessionExecCommand() 44 tw.writeBoolean(wantReply); in getPayload()
|
D | PacketSessionX11Request.java | 18 public boolean wantReply; field in PacketSessionX11Request 25 public PacketSessionX11Request(int recipientChannelID, boolean wantReply, boolean singleConnection, in PacketSessionX11Request() argument 29 this.wantReply = wantReply; in PacketSessionX11Request() 45 tw.writeBoolean(wantReply); in getPayload()
|
D | PacketSessionPtyRequest.java | 18 public boolean wantReply; field in PacketSessionPtyRequest 26 public PacketSessionPtyRequest(int recipientChannelID, boolean wantReply, String term, in PacketSessionPtyRequest() argument 31 this.wantReply = wantReply; in PacketSessionPtyRequest() 48 tw.writeBoolean(wantReply); in getPayload()
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/ |
D | ChannelManager.java | 1263 boolean wantReply = tr.readBoolean(); in msgChannelRequest() 1270 if (wantReply != false) in msgChannelRequest() 1292 if (wantReply != false) in msgChannelRequest() 1319 if (wantReply) in msgChannelRequest() 1529 boolean wantReply = tr.readBoolean(); in msgGlobalRequest() 1531 if (wantReply) in msgGlobalRequest()
|