Searched defs:_fd (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.hpp55 int _fd; member in class:FileMapInfo
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.hpp218 int _fd; member in class:fdStream
222 fdStream(int fd = -1) { _fd = fd; _need_close = false; }
224 bool is_open() const { return _fd != -1; }
225 void set_fd(int fd) { _fd = fd; _need_close = false; }
226 int fd() const { return _fd; }
/openjdk7/hotspot/src/share/vm/services/
H A DheapDumper.cpp377 int _fd; // file descriptor (-1 if dump file not open) member in class:DumpWriter
386 void set_file_descriptor(int fd) { _fd = fd; }
387 int file_descriptor() const { return _fd; }
448 _fd = os::create_binary_file(path, false); // don't replace existing file
451 if (_fd < 0) {
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp178 int _fd; member in class:MemNotifyThread
5834 _fd = fd;
5850 if (_fd != -1) {
5852 FD_SET(_fd, &rfds);
5858 int rc = select(_fd+1, _fd != -1 ? &rfds : NULL, NULL, NULL, NULL);

Completed in 68 milliseconds