HomeSort by relevance Sort by last modified time
    Searched refs:fileSystem (Results 1 - 7 of 7) sorted by null

  /libcore/luni/src/main/java/java/io/
FileInputStream.java 49 private IFileSystem fileSystem = Platform.getFileSystem();
80 fd.descriptor = fileSystem.open(file.getAbsolutePath(), IFileSystem.O_RDONLY);
138 return fileSystem.ioctlAvailable(fd);
290 return (int) fileSystem.read(fd.descriptor, buffer, offset, count);
325 fileSystem.seek(fd.descriptor, count, IFileSystem.SEEK_CUR);
FileOutputStream.java 50 private IFileSystem fileSystem = Platform.getFileSystem();
94 fd.descriptor = fileSystem.open(file.getAbsolutePath(),
300 fileSystem.write(fd.descriptor, buffer, offset, count);
318 fileSystem.write(fd.descriptor, byteArray, 0, 1);
RandomAccessFile.java 47 private IFileSystem fileSystem = Platform.getFileSystem();
132 fd.descriptor = fileSystem.open(file.getAbsolutePath(), options);
247 return fileSystem.seek(fd.descriptor, 0L, IFileSystem.SEEK_CUR);
272 return fileSystem.length(fd.descriptor);
288 long byteCount = fileSystem.read(fd.descriptor, bytes, 0, 1);
348 return (int) fileSystem.read(fd.descriptor, buffer, offset, count);
705 fileSystem.seek(fd.descriptor, offset, IFileSystem.SEEK_SET);
727 fileSystem.truncate(fd.descriptor, newLength);
812 fileSystem.write(fd.descriptor, buffer, offset, count);
834 fileSystem.write(fd.descriptor, bytes, 0, 1)
    [all...]
  /external/srec/portable/include/
PFileSystemImpl.h 77 * @param basePath Base path for files associated with this filesystem
87 * @param basePath Base path for files associated with this filesystem
96 * @param fileSystem [out] File-system which matches the path
99 * @return ESR_INVALID_ARGUMENT if path, fileSystem or relativePath is null; ESR_INVALID_STATE if no
102 PORTABLE_API ESR_ReturnCode PFileSystemGetFS(const LCHAR* path, PFileSystem** fileSystem, LCHAR* relativePath);
  /external/srec/portable/src/
PFileSystem.c 273 ESR_ReturnCode PFileSystemGetFS(const LCHAR* path, PFileSystem** fileSystem, LCHAR* relativePath)
305 *fileSystem = bestValue;
328 PFileSystem* fileSystem;
341 CHKLOG(rc, PFileSystemGetFS(absolutePath, &fileSystem, NULL));
342 rc = fileSystem->createPFile(fileSystem, absolutePath, littleEndian, self);
359 PFileSystem* fileSystem;
372 CHKLOG(rc, PFileSystemGetFS(absolutePath, &fileSystem, NULL));
373 CHK(rc, fileSystem->mkdir(fileSystem, absolutePath))
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/nio/internal/
FileChannelImpl.java 55 private static final IFileSystem fileSystem = Platform.getFileSystem();
61 ALLOC_GRANULARITY = fileSystem.getAllocGranularity();
120 if (fileSystem.lock(handle, position, size, lockType, wait)) {
170 fileSystem.unlock(handle, lock.position(), lock.size());
176 fileSystem.fsync(handle, metadata);
184 fileSystem.truncate(handle, position + size);
198 return fileSystem.seek(handle, 0L, IFileSystem.SEEK_CUR);
211 fileSystem.seek(handle, newPosition, IFileSystem.SEEK_SET);
255 bytesRead = (int) fileSystem.readDirect(handle, address,
267 bytesRead = (int) fileSystem.read(handle, buffer.array()
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
BlockGuard.java 152 * A filesystem wrapper that calls the policy check functions
158 public WrappedFileSystem(IFileSystem fileSystem) {
159 mFileSystem = fileSystem;

Completed in 121 milliseconds