Searched defs:openInput (Results 1 - 22 of 22) sorted by relevance

/lucene-3.6.0/lucene/contrib/misc/src/java/org/apache/lucene/store/
H A DWindowsDirectory.java72 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:WindowsDirectory
H A DDirectIOLinuxDirectory.java73 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:DirectIOLinuxDirectory
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/store/
H A DFileSwitchDirectory.java190 public IndexInput openInput(String name) throws IOException { method in class:FileSwitchDirectory
191 return getDirectory(name).openInput(name);
H A DNIOFSDirectory.java77 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:NIOFSDirectory
H A DRAMDirectory.java233 public IndexInput openInput(String name) throws IOException { method in class:RAMDirectory
H A DDirectory.java134 public abstract IndexInput openInput(String name) method in class:Directory
144 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:Directory
145 return openInput(name);
235 is = openInput(src);
H A DNRTCachingDirectory.java256 public synchronized IndexInput openInput(String name) throws IOException { method in class:NRTCachingDirectory
258 System.out.println("nrtdir.openInput name=" + name);
264 return cache.openInput(name);
266 return delegate.openInput(name);
271 public synchronized IndexInput openInput(String name, int bufferSize) throws IOException { method in class:NRTCachingDirectory
273 return cache.openInput(name, bufferSize);
275 return delegate.openInput(name, bufferSize);
338 in = cache.openInput(fileName);
H A DSimpleFSDirectory.java55 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:SimpleFSDirectory
H A DFSDirectory.java343 public IndexInput openInput(String name) throws IOException { method in class:FSDirectory
345 return openInput(name, BufferedIndexInput.BUFFER_SIZE);
H A DMMapDirectory.java216 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:MMapDirectory
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/util/
H A DSlowRAMDirectory.java57 public IndexInput openInput(String name) throws IOException { method in class:SlowRAMDirectory
59 return new SlowIndexInput(super.openInput(name));
61 return super.openInput(name);
65 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:SlowRAMDirectory
67 return new SlowIndexInput(super.openInput(name, bufferSize));
69 return super.openInput(name, bufferSize);
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/
H A DTestCrashCausesCorruptIndex.java247 public IndexInput openInput(String name) throws IOException { method in class:TestCrashCausesCorruptIndex.CrashAfterCreateOutput
248 return realDirectory.openInput(name);
H A DTestLazyProxSkipping.java54 public IndexInput openInput(String name) throws IOException { method in class:TestLazyProxSkipping.SeekCountingDirectory
55 IndexInput ii = super.openInput(name);
H A DTestFieldsReader.java404 public IndexInput openInput(String name) throws IOException { method in class:TestFieldsReader.FaultyFSDirectory
405 return new FaultyIndexInput(fsDir.openInput(name));
H A DTestIndexWriterExceptions.java983 IndexInput in = dir.openInput(segmentsFileName);
1028 IndexInput in = dir.openInput(fileNameIn);
1129 IndexInput in = dir.openInput(fileNameIn);
1304 public IndexInput openInput(String name) throws IOException { method in class:TestIndexWriterExceptions.UOEDirectory
1313 return super.openInput(name);
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/
H A DTestLazyProxSkipping.java54 public IndexInput openInput(String name) throws IOException { method in class:TestLazyProxSkipping.SeekCountingDirectory
55 IndexInput ii = super.openInput(name);
H A DTestFieldsReader.java403 public IndexInput openInput(String name) throws IOException { method in class:TestFieldsReader.FaultyFSDirectory
404 return new FaultyIndexInput(fsDir.openInput(name));
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DCompoundFileReader.java65 stream = dir.openInput(name, readBufferSize);
144 public synchronized IndexInput openInput(String id) throws IOException { method in class:CompoundFileReader
146 return openInput(id, readBufferSize);
150 public synchronized IndexInput openInput(String id, int readBufferSize) throws IOException { method in class:CompoundFileReader
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/store/
H A DTestBufferedIndexInput.java307 public IndexInput openInput(String name) throws IOException { method in class:TestBufferedIndexInput.MockFSDirectory
308 return openInput(name, BufferedIndexInput.BUFFER_SIZE);
323 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:TestBufferedIndexInput.MockFSDirectory
326 IndexInput f = dir.openInput(name, bufferSize);
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/store/
H A DTestBufferedIndexInput.java307 public IndexInput openInput(String name) throws IOException { method in class:TestBufferedIndexInput.MockFSDirectory
308 return openInput(name, BufferedIndexInput.BUFFER_SIZE);
323 public IndexInput openInput(String name, int bufferSize) throws IOException { method in class:TestBufferedIndexInput.MockFSDirectory
326 IndexInput f = dir.openInput(name, bufferSize);
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/store/
H A DMockDirectoryWrapper.java248 IndexInput in = delegate.openInput(name);
257 in = delegate.openInput(tempFileName);
482 public synchronized IndexInput openInput(String name) throws IOException { method in class:MockDirectoryWrapper
496 IndexInput ii = new MockIndexInputWrapper(this, name, delegate.openInput(name));
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/store/
H A DMockDirectoryWrapper.java438 public synchronized IndexInput openInput(String name) throws IOException { method in class:MockDirectoryWrapper
452 IndexInput ii = new MockIndexInputWrapper(this, name, delegate.openInput(name));

Completed in 52 milliseconds