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

/openjdk7/jdk/test/java/io/RandomAccessFile/
H A DReadWritePrimitives.java58 File fh = new File(System.getProperty("test.dir", "."),
60 RandomAccessFile f = new RandomAccessFile(fh,"rw");
66 f = new RandomAccessFile(fh,"r");
84 File fh = new File(System.getProperty("test.dir", "."),
86 RandomAccessFile f = new RandomAccessFile(fh,"rw");
91 f = new RandomAccessFile(fh,"r");
105 File fh = new File(System.getProperty("test.dir", "."),
107 RandomAccessFile f = new RandomAccessFile(fh,"rw");
113 f = new RandomAccessFile(fh, "r");
131 File fh
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRMISocketFactory.java160 * @param fh the failure handler
168 public synchronized static void setFailureHandler(RMIFailureHandler fh) argument
174 handler = fh;
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DLinuxOperatingSystem.c77 FILE *fh; local
81 if((fh = fopen("/proc/stat", "r")) == NULL) {
85 n = fscanf(fh, "cpu " DEC_64 " " DEC_64 " " DEC_64 " " DEC_64,
89 next_line(fh);
95 if (fscanf(fh, "cpu%*d " DEC_64 " " DEC_64 " " DEC_64 " " DEC_64, &userTicks, &niceTicks, &systemTicks, &idleTicks) != 4) {
96 fclose(fh);
99 next_line(fh);
101 n = fscanf(fh, "cpu%*d " DEC_64 " " DEC_64 " " DEC_64 " " DEC_64 "\n",
105 fclose(fh);
/openjdk7/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp691 static HANDLE create_file_mapping(const char* name, HANDLE fh, LPSECURITY_ATTRIBUTES fsa, size_t size) { argument
701 fh, /* HANDLE file handle for backing store */
1281 HANDLE fh = INVALID_HANDLE_VALUE; local
1312 fh = CreateFile(
1332 if (fh == INVALID_HANDLE_VALUE) {
1341 fmh = create_file_mapping(objectname, fh, lpSmoSA, size);
1351 CloseHandle(fh);
1352 fh = NULL;
1366 CloseHandle(fh);
1367 fh
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DTCPTransport.java485 RMIFailureHandler fh = RMISocketFactory.getFailureHandler();
486 if (fh != null) {
487 return fh.failure(t instanceof Exception ? (Exception) t :

Completed in 37 milliseconds