Package com.github.stephenc.javaisotools.sabre.impl

Examples of com.github.stephenc.javaisotools.sabre.impl.ByteArrayDataReference


        return memory;
    }

    private ByteArrayDataReference getSystemId() throws HandlerException {
        byte[] bytes = helper.pad(systemId, 32);
        return new ByteArrayDataReference(bytes);
    }
View Full Code Here


        return new ByteArrayDataReference(bytes);
    }

    private ByteArrayDataReference getVolumePartitionId() throws HandlerException {
        byte[] bytes = helper.pad(volumePartitionId, 32);
        return new ByteArrayDataReference(bytes);
    }
View Full Code Here

            // Reset byte counter
            length = 0;

            // Signature Word
            data(new ByteArrayDataReference(sue.getSignatureWord()));

            // Length (including Signature Word, Length, Version and Data)
            lengthFixup = fixup(new ByteDataReference(0));

            // Version
View Full Code Here

            id = "IEEE 1282";
            descriptor = "THE IEEE 1282 PROTOCOL PROVIDES SUPPORT FOR POSIX FILE SYSTEM SEMANTICS.";
            source = "PLEASE CONTACT THE IEEE STANDARDS DEPARTMENT, PISCATAWAY, NJ, USA FOR THE 1282 SPECIFICATION.";
        }

        ByteArrayDataReference idRef = new ByteArrayDataReference(id.getBytes());
        ByteArrayDataReference descriptorRef = new ByteArrayDataReference(descriptor.getBytes());
        ByteArrayDataReference sourceRef = new ByteArrayDataReference(source.getBytes());

        doEREntry(idRef, descriptorRef, sourceRef, 1);
    }
View Full Code Here

TOP

Related Classes of com.github.stephenc.javaisotools.sabre.impl.ByteArrayDataReference

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.