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

/openjdk10/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp274 struct stat statbuf1; local
278 RESTARTABLE(::fstat(fd1, &statbuf1), 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.cpp274 struct stat statbuf1; local
278 RESTARTABLE(::fstat(fd1, &statbuf1), 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.cpp277 struct stat statbuf1; local
281 RESTARTABLE(::fstat(fd1, &statbuf1), 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.cpp272 struct stat statbuf1; local
276 RESTARTABLE(::fstat(fd1, &statbuf1), result);
285 if ((statbuf1.st_ino == statbuf2.st_ino) &&
286 (statbuf1.st_dev == statbuf2.st_dev)) {

Completed in 60 milliseconds