HomeSort by relevance Sort by last modified time
    Searched refs:SFTPv3FileHandle (Results 1 - 4 of 4) sorted by null

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SFTPv3FileHandle.java 8 * A <code>SFTPv3FileHandle</code>.
14 public class SFTPv3FileHandle
20 protected SFTPv3FileHandle(SFTPv3Client client, byte[] h)
37 * Check if this handle was closed with the {@link SFTPv3Client#closeFile(SFTPv3FileHandle)} method
SFTPInputStream.java 16 private SFTPv3FileHandle handle;
23 public SFTPInputStream(SFTPv3FileHandle handle) {
33 * @see SFTPv3Client#read(SFTPv3FileHandle,long,byte[],int,int)
SFTPOutputStream.java 16 private SFTPv3FileHandle handle;
23 public SFTPOutputStream(SFTPv3FileHandle handle) {
36 * @see SFTPv3Client#write(SFTPv3FileHandle,long,byte[],int,int)
SFTPv3Client.java 187 private void checkHandleValidAndOpen(SFTPv3FileHandle handle) throws IOException
191 throw new IOException("The file handle was created with another SFTPv3FileHandle instance.");
372 * @param handle a SFTPv3FileHandle handle.
376 public SFTPv3FileAttributes fstat(SFTPv3FileHandle handle) throws IOException
597 * @param handle a SFTPv3FileHandle handle
602 public void fsetstat(SFTPv3FileHandle handle, SFTPv3FileAttributes attr) throws IOException
767 public final SFTPv3FileHandle openDirectory(String path) throws IOException
793 return new SFTPv3FileHandle(this, tr.readByteString());
911 SFTPv3FileHandle handle = openDirectory(dirName);
1029 * @return a SFTPv3FileHandle handl
    [all...]

Completed in 214 milliseconds