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

/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.hpp58 // FileMapHeader describes the shared space data in the file to be
62 struct FileMapHeader { struct in class:FileMapInfo
112 struct FileMapHeader* header() { return &_header; }
H A Dfilemap.cpp144 size_t n = read(fd, &_header, sizeof(struct FileMapHeader));
145 if (n != sizeof(struct FileMapHeader)) {
203 write_bytes_aligned(&_header, sizeof(FileMapHeader));
211 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
222 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[region];
304 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
324 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[0];
354 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
375 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
404 struct FileMapInfo::FileMapHeader
[all...]
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp191 struct FileMapHeader* pheader = (struct FileMapHeader*) env->GetLongField(this_obj, p_file_map_header_ID);
506 // file mappings. For now, I am hard coding portion of FileMapHeader here.
509 // FileMapHeader describes the shared space data in the file to be
519 struct FileMapHeader { struct
536 // Ignore the rest of the FileMapHeader. We don't need those fields here.
656 struct FileMapHeader* pheader = (struct FileMapHeader*) malloc(sizeof(struct FileMapHeader));
662 memset(pheader, 0, sizeof(struct FileMapHeader));
[all...]
/openjdk7/hotspot/agent/src/os/bsd/
H A Dps_core.c206 // file mappings. For now, I am hard coding portion of FileMapHeader here.
209 // FileMapHeader describes the shared space data in the file to be
219 struct FileMapHeader { struct
239 // Ignore the rest of the FileMapHeader. We don't need those fields here.
294 struct FileMapHeader header;
349 // read FileMapHeader from the file
350 memset(&header, 0, sizeof(struct FileMapHeader));
351 if ((n = read(fd, &header, sizeof(struct FileMapHeader)))
352 != sizeof(struct FileMapHeader)) {
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_core.c205 // file mappings. For now, I am hard coding portion of FileMapHeader here.
208 // FileMapHeader describes the shared space data in the file to be
218 struct FileMapHeader { struct
238 // Ignore the rest of the FileMapHeader. We don't need those fields here.
293 struct FileMapHeader header;
349 // read FileMapHeader from the file
350 memset(&header, 0, sizeof(struct FileMapHeader));
351 if ((n = read(fd, &header, sizeof(struct FileMapHeader)))
352 != sizeof(struct FileMapHeader)) {

Completed in 42 milliseconds