Searched defs:FNode (Results 1 - 2 of 2) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/web/
H A DEftarFile.java89 class FNode { class in class:EftarFile
97 public FNode(RandomAccessFile f) throws Throwable { method in class:EftarFile.FNode
105 public FNode(long hash, long offset, int childOffset, int num, int tagOffset) { method in class:EftarFile.FNode
113 public FNode get(long hash, RandomAccessFile f) throws Throwable {
120 private FNode sbinSearch(long start, int len, long hash, RandomAccessFile f) throws Throwable {
132 return new FNode(mhash, f.getFilePointer() - 8l, f.readUnsignedShort(), f.readUnsignedShort(), f.readUnsignedShort());
H A DEftarFileReader.java51 protected class FNode { class in class:EftarFileReader
59 public FNode() throws IOException { method in class:EftarFileReader.FNode
74 public FNode(long hash, long offset, int childOffset, int num, int tagOffset) { method in class:EftarFileReader.FNode
82 public FNode get(long hash) throws IOException {
89 private FNode binarySearch(long start, int len, long hash) throws IOException {
102 return new FNode(mhash, f.getFilePointer() - 8l, f.readUnsignedShort(), f.readUnsignedShort(), f.readUnsignedShort());
148 public FNode getNode(String path) throws IOException {
151 FNode n = new FNode();
155 FNode nex
[all...]

Completed in 21 milliseconds