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

  /dalvik/libcore/luni/src/main/java/java/io/
FileOutputStream.java 53 private IFileSystem fileSystem = Platform.getFileSystem();
97 fd.descriptor = fileSystem.open(file.pathBytes,
196 fileSystem.close(fd.descriptor);
297 fileSystem.write(fd.descriptor, buffer, offset, count);
315 fileSystem.write(fd.descriptor, byteArray, 0, 1);
FileInputStream.java 50 private IFileSystem fileSystem = Platform.getFileSystem();
82 fd.descriptor = fileSystem.open(file.pathBytes, IFileSystem.O_RDONLY);
148 return fileSystem.ioctlAvailable(fd.descriptor);
155 // return (int) fileSystem.ttyAvailable();
158 // long currentPosition = fileSystem.seek(fd.descriptor, 0L,
160 // long endOfFilePosition = fileSystem.seek(fd.descriptor, 0L,
162 // fileSystem.seek(fd.descriptor, currentPosition,
184 fileSystem.close(fd.descriptor);
312 return (int) fileSystem.read(fd.descriptor, buffer, offset, count);
349 fileSystem.seek(fd.descriptor, count, IFileSystem.SEEK_CUR)
    [all...]
RandomAccessFile.java 49 private IFileSystem fileSystem = Platform.getFileSystem();
145 fd.descriptor = fileSystem.open(file.pathBytes, options);
203 fileSystem.close(fd.descriptor);
255 return fileSystem.seek(fd.descriptor, 0L, IFileSystem.SEEK_CUR);
281 long currentPosition = fileSystem.seek(fd.descriptor, 0L,
283 long endOfFilePosition = fileSystem.seek(fd.descriptor, 0L,
285 fileSystem.seek(fd.descriptor, currentPosition,
305 long readed = fileSystem.read(fd.descriptor, bytes, 0, 1);
367 return (int) fileSystem.read(fd.descriptor, buffer, offset, count);
727 fileSystem.seek(fd.descriptor, pos, IFileSystem.SEEK_SET)
    [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...]
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
FileChannelImpl.java 56 private static final IFileSystem fileSystem = Platform.getFileSystem();
62 ALLOC_GRANULARITY = fileSystem.getAllocGranularity();
124 if (fileSystem.lock(handle, position, size, lockType, wait)) {
174 fileSystem.unlock(handle, lock.position(), lock.size());
185 fileSystem.fflush(handle, metadata);
195 fileSystem.truncate(handle, position + size);
216 return fileSystem.seek(handle, 0L, IFileSystem.SEEK_CUR);
230 fileSystem.seek(handle, newPosition, IFileSystem.SEEK_SET);
275 bytesRead = (int) fileSystem.readDirect(handle, address,
287 bytesRead = (int) fileSystem.read(handle, buffer.array()
    [all...]

Completed in 178 milliseconds