Home | History | Annotate | Download | only in util

Lines Matching refs:file

5  * you may not use this file except in compliance with the License.
44 * file, including changes to size of file, will be visible in the data source.
46 public static DataSource asDataSource(RandomAccessFile file) {
47 if (file == null) {
50 return new RandomAccessFileDataSource(file);
55 * Changes to the file will be visible in the data source.
57 public static DataSource asDataSource(RandomAccessFile file, long offset, long size) {
58 if (file == null) {
61 return new RandomAccessFileDataSource(file, offset, size);