Searched defs:vmid (Results 26 - 32 of 32) sorted by relevance

12

/openjdk7/jdk/test/sun/jvmstat/monitor/VmIdentifier/
H A DVmIdentifierCreateResolve.java355 String vmid; field in class:TestCase
362 public TestCase(String id, String vmid, String hostid) { argument
364 this.vmid = vmid;
383 test_vmid = new VmIdentifier(vmid);
436 System.out.println("setting vmidentifier string to " + vmid);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DTarget.java243 synchronized void referenced(long sequenceNum, VMID vmid) { argument
244 // check sequence number for vmid
245 SequenceEntry entry = sequenceTable.get(vmid);
247 sequenceTable.put(vmid, new SequenceEntry(sequenceNum));
255 if (!refSet.contains(vmid)) {
268 DGCImpl.dgcLog.log(Log.VERBOSE, "add to dirty set: " + vmid);
271 refSet.addElement(vmid);
273 DGCImpl.getDGCImpl().registerTarget(vmid, this);
281 synchronized void unreferenced(long sequenceNum, VMID vmid, boolean strong) argument
283 // check sequence number for vmid
306 refSetRemove(VMID vmid) argument
444 vmidDead(VMID vmid) argument
[all...]
H A DDGCClient.java84 private static VMID vmid = new VMID(); field in class:DGCClient
361 dgc.dirty(ids, sequenceNum, new Lease(vmid, leaseValue));
666 dgc.clean(request.objIDs, request.sequenceNum, vmid,
/openjdk7/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp293 // return the name of the user that owns the process identified by vmid.
296 // store file for the specified vmid and returns the user name, as determined
301 static char* get_user_name_slow(int vmid, TRAPS) { argument
304 if (kill(vmid, 0) == OS_ERR) {
327 // open the directory and check if the file for the given vmid exists.
371 if (filename_to_pid(udentry->d_name) == vmid) {
422 // return the name of the user that owns the JVM indicated by the given vmid.
424 static char* get_user_name(int vmid, TRAPS) { argument
425 return get_user_name_slow(vmid, CHECK_NULL);
429 // shared memory region for the given user name and vmid
433 get_sharedmem_filename(const char* dirname, int vmid) argument
709 int vmid = os::current_process_id(); local
825 mmap_attach_shared(const char* user, int vmid, PerfMemory::PerfMemoryMode mode, char** addr, size_t* sizep, TRAPS) argument
1006 attach(const char* user, int vmid, PerfMemoryMode mode, char** addrp, size_t* sizep, TRAPS) argument
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A DperfMemory_linux.cpp293 // return the name of the user that owns the process identified by vmid.
296 // store file for the specified vmid and returns the user name, as determined
301 static char* get_user_name_slow(int vmid, TRAPS) { argument
304 if (kill(vmid, 0) == OS_ERR) {
327 // open the directory and check if the file for the given vmid exists.
371 if (filename_to_pid(udentry->d_name) == vmid) {
422 // return the name of the user that owns the JVM indicated by the given vmid.
424 static char* get_user_name(int vmid, TRAPS) { argument
425 return get_user_name_slow(vmid, CHECK_NULL);
429 // shared memory region for the given user name and vmid
433 get_sharedmem_filename(const char* dirname, int vmid) argument
709 int vmid = os::current_process_id(); local
825 mmap_attach_shared(const char* user, int vmid, PerfMemory::PerfMemoryMode mode, char** addr, size_t* sizep, TRAPS) argument
1006 attach(const char* user, int vmid, PerfMemoryMode mode, char** addrp, size_t* sizep, TRAPS) argument
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A DperfMemory_solaris.cpp284 // return the name of the user that owns the process identified by vmid.
287 // store file for the specified vmid and returns the user name, as determined
292 static char* get_user_name_slow(int vmid, TRAPS) { argument
295 if (kill(vmid, 0) == OS_ERR) {
318 // open the directory and check if the file for the given vmid exists.
362 if (filename_to_pid(udentry->d_name) == vmid) {
413 // return the name of the user that owns the JVM indicated by the given vmid.
415 static char* get_user_name(int vmid, TRAPS) { argument
420 snprintf(psinfo_name, PATH_MAX, "/proc/%d/psinfo", vmid);
462 return get_user_name_slow(vmid, CHECK_NUL
470 get_sharedmem_filename(const char* dirname, int vmid) argument
724 int vmid = os::current_process_id(); local
840 mmap_attach_shared(const char* user, int vmid, PerfMemory::PerfMemoryMode mode, char** addr, size_t* sizep, TRAPS) argument
1021 attach(const char* user, int vmid, PerfMemoryMode mode, char** addrp, size_t* sizep, TRAPS) argument
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp291 // return the name of the user that owns the process identified by vmid.
294 // store file for the specified vmid and returns the user name, as determined
299 static char* get_user_name_slow(int vmid) { argument
314 // open the directory and check if the file for the given vmid exists.
358 if (filename_to_pid(udentry->d_name) == vmid) {
382 // vmid. Due to the way that Windows recycles pids and the fact
385 // one hsperfdata file with a name matching vmid (diff users).
389 // name of the user that owns the process associated with vmid
417 // return the name of the user that owns the process identified by vmid.
423 static char* get_user_name(int vmid) { argument
446 get_sharedmem_objectname(const char* user, int vmid) argument
468 get_sharedmem_filename(const char* dirname, int vmid) argument
1437 int vmid = os::current_process_id(); local
1576 open_file_mapping(const char* user, int vmid, PerfMemory::PerfMemoryMode mode, char** addrp, size_t* sizep, TRAPS) argument
1796 attach(const char* user, int vmid, PerfMemoryMode mode, char** addrp, size_t* sizep, TRAPS) argument
[all...]

Completed in 68 milliseconds

12