Searched refs:statbuf2 (Results 1 - 4 of 4) sorted by relevance

/openjdk10/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp275 struct stat statbuf2; local
282 RESTARTABLE(::fstat(fd2, &statbuf2), result);
287 if ((statbuf1.st_ino == statbuf2.st_ino) &&
288 (statbuf1.st_dev == statbuf2.st_dev)) {
/openjdk10/hotspot/src/os/linux/vm/
H A DperfMemory_linux.cpp275 struct stat statbuf2; local
282 RESTARTABLE(::fstat(fd2, &statbuf2), result);
287 if ((statbuf1.st_ino == statbuf2.st_ino) &&
288 (statbuf1.st_dev == statbuf2.st_dev)) {
/openjdk10/hotspot/src/os/solaris/vm/
H A DperfMemory_solaris.cpp278 struct stat statbuf2; local
285 RESTARTABLE(::fstat(fd2, &statbuf2), result);
290 if ((statbuf1.st_ino == statbuf2.st_ino) &&
291 (statbuf1.st_dev == statbuf2.st_dev)) {
/openjdk10/hotspot/src/os/aix/vm/
H A DperfMemory_aix.cpp273 struct stat statbuf2; local
280 RESTARTABLE(::fstat(fd2, &statbuf2), result);
285 if ((statbuf1.st_ino == statbuf2.st_ino) &&
286 (statbuf1.st_dev == statbuf2.st_dev)) {

Completed in 58 milliseconds