Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for endOfFile (0.2 sec)

  1. src/main/java/jcifs/internal/fscc/FileEndOfFileInformation.java

        public int encode ( byte[] dst, int dstIndex ) {
            SMBUtil.writeInt8(this.endOfFile, dst, dstIndex);
            return 8;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#toString()
         */
        @Override
        public String toString () {
            return new String("EndOfFileInformation[endOfFile=" + this.endOfFile + "]");
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

         * @return the allocationSize
         */
        public final long getAllocationSize () {
            return this.allocationSize;
        }
    
    
        /**
         * @return the endOfFile
         */
        public final long getEndOfFile () {
            return this.endOfFile;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbBasicFileInfo#getSize()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/fscc/FileStandardInfo.java

            return dstIndex - start;
        }
    
    
        @Override
        public String toString () {
            return new String(
                "SmbQueryInfoStandard[" + "allocationSize=" + this.allocationSize + ",endOfFile=" + this.endOfFile + ",numberOfLinks="
                        + this.numberOfLinks + ",deletePending=" + this.deletePending + ",directory=" + this.directory + "]");
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java

                        + new Date(this.creationTime) + ",lastAccessTime=" + new Date(this.lastAccessTime) + ",lastWriteTime="
                        + new Date(this.lastWriteTime) + ",changeTime=" + new Date(this.changeTime) + ",endOfFile=" + this.endOfFile + ",allocationSize="
                        + this.allocationSize + ",extFileAttributes=" + this.extFileAttributes + ",eaSize=" + this.eaSize + ",shortName=" + this.shortName
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java

                return 0L;
            }
            public long getSize() {
                return endOfFile;
            }
            public String toString() {
                return new String( "SmbQueryInfoStandard[" +
                    "allocationSize=" + allocationSize +
                    ",endOfFile=" + endOfFile +
                    ",numberOfLinks=" + numberOfLinks +
                    ",deletePending=" + deletePending +
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

         * @return the allocationSize
         */
        public final long getAllocationSize () {
            return this.allocationSize;
        }
    
    
        /**
         * @return the endOfFile
         */
        public final long getEndOfFile () {
            return this.endOfFile;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbBasicFileInfo#getSize()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java

                ",changeTime=" + new Date( changeTime ) +
                ",extFileAttributes=0x" + Hexdump.toHexString( extFileAttributes, 4 ) +
                ",allocationSize=" + allocationSize +
                ",endOfFile=" + endOfFile +
                ",fileType=" + fileType +
                ",deviceState=" + deviceState +
                ",directory=" + directory + "]" );
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java

         * @return the allocationSize
         */
        public final long getAllocationSize () {
            return this.allocationSize;
        }
    
    
        /**
         * @return the endOfFile
         */
        public final long getEndOfFile () {
            return this.endOfFile;
        }
    
    
        /**
         * @return the fileId
         */
        public byte[] getFileId () {
            return this.fileId;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                    ",lastAccessTime=" + new Date( lastAccessTime ) +
                    ",lastWriteTime=" + new Date( lastWriteTime ) +
                    ",changeTime=" + new Date( changeTime ) +
                    ",endOfFile=" + endOfFile +
                    ",allocationSize=" + allocationSize +
                    ",extFileAttributes=" + extFileAttributes +
                    ",fileNameLength=" + fileNameLength +
                    ",eaSize=" + eaSize +
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.5K bytes
    - Viewed (0)
  10. src/os/types_windows.go

    	return &fileStat{
    		FileAttributes: d.FileAttributes,
    		CreationTime:   d.CreationTime,
    		LastAccessTime: d.LastAccessTime,
    		LastWriteTime:  d.LastWriteTime,
    		FileSizeHigh:   uint32(d.EndOfFile >> 32),
    		FileSizeLow:    uint32(d.EndOfFile),
    		ReparseTag:     d.EaSize,
    		idxhi:          uint32(d.FileID >> 32),
    		idxlo:          uint32(d.FileID),
    	}
    }
    
    // newFileStatFromFileFullDirInfo copies all required information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top