Searched refs:usableSpace (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/java/io/File/
H A DMaxPathLength.java40 private static long usableSpace; field in class:MaxPathLength
63 usableSpace = f.getUsableSpace()/ONEMEGA;
135 diff = usableSpace - dirFile.getUsableSpace()/ONEMEGA;
/openjdk7/jdk/test/java/nio/file/Files/
H A DInterruptCopy.java47 long usableSpace = store.getUsableSpace();
48 if (usableSpace < 2*FILE_SIZE_TO_COPY) {
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileStore.java108 return new ZipFileStoreAttributes(this).usableSpace();
120 if (attribute.equals("usableSpace"))
143 public long usableSpace() throws IOException { method in class:ZipFileStore.ZipFileStoreAttributes
/openjdk7/jdk/src/windows/native/java/io/
H A DWin32FileSystem_md.c491 ULARGE_INTEGER totalSpace, freeSpace, usableSpace; local
492 if (GetDiskFreeSpaceEx(path, &usableSpace, &totalSpace, &freeSpace)) {
501 rv = long_to_jlong(usableSpace.QuadPart);
H A DWinNTFileSystem_md.c849 ULARGE_INTEGER totalSpace, freeSpace, usableSpace; local
850 if (GetDiskFreeSpaceExW(volname, &usableSpace, &totalSpace, &freeSpace)) {
859 rv = long_to_jlong(usableSpace.QuadPart);

Completed in 34 milliseconds