Package org.jnode.fs.ext4

Examples of org.jnode.fs.ext4.ExtentHeader


     * @throws IOException
     */
    private long getDataBlockNr(long i) throws IOException {
        if ((getFlags() & Ext2Constants.EXT4_INODE_EXTENTS_FLAG) != 0) {
            if (extentHeader == null) {
                extentHeader = new ExtentHeader(getINodeBlockData());
            }

            return extentHeader.getBlockNumber(fs, i);
        } else {
            return getDataBlockNrIndirect(i);
View Full Code Here

TOP

Related Classes of org.jnode.fs.ext4.ExtentHeader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.