!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/lib/vmware-tools/GuestSDK/vmGuestLibJava/doc/com/vmware/vmguestlib/   drwxr-xr-x
Free 11.48 GB of 97.11 GB (11.82%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     VMGuestLibInterface.html (30.5 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
VMGuestLibInterface (VMware Guest API Java Support Package)

com.vmware.vmguestlib
Interface VMGuestLibInterface


public interface VMGuestLibInterface

An interface representing the VMware Guest API. Clients of the VMware Guest API should obtain instances of this interface via the open method of the VMGuestLibHandle class. Each interface instance is bound to and backed by an underlying handle. Handles can be closed explicitly using the close method.


Method Summary
 void close()
          Closes the handle associated with this interface instance and free any related resources.
 long getCpuLimitMHz()
          Retrieves the maximum processing power in MHz available to the virtual machine.
 long getCpuReservationMHz()
          Retrieves the minimum processing power in MHz available to the virtual machine.
 long getCpuShares()
          Retrieves the number of CPU shares allocated to the virtual machine.
 long getCpuUsedMs()
          Retrieves the number of milliseconds during which the virtual machine has been using the CPU.
 java.math.BigInteger getElapsedMs()
          Retrieves the number of milliseconds that have passed in real time since the virtual machine started running on the current host system.
 long getHostProcessorSpeed()
          Retrieves the speed of the host system's physical CPU in MHz.
 long getMemActiveMB()
          Retrieves the estimated amount of memory the virtual machine is actively using.
 long getMemBalloonedMB()
          Retrieves the amount of memory that has been reclaimed from this virtual machine via the VMware Memory Balloon mechanism.
 long getMemLimitMB()
          Retrieves the maximum amount of memory that is available to the virtual machine.
 long getMemMappedMB()
          Retrieves the mapped memory size of this virtual machine.
 long getMemOverheadMB()
          Retrieves the amount of overhead memory associated with this virtual machine consumed on the host system.
 long getMemReservationMB()
          Retrieves the minimum amount of memory that is available to the virtual machine.
 long getMemSharedMB()
          Retrieves the amount of physical memory associated with this virtual machine that is copy-on-write (COW) shared on the host.
 long getMemSharedSavedMB()
          Retrieves the estimated amount of physical memory on the host saved from copy-on-write (COW) shared guest physical memory.
 long getMemShares()
          Retrieves the number of memory shares allocated to the virtual machine.
 long getMemSwappedMB()
          Retrieves the amount of memory associated with this virtual machine that has been swapped by the host system.
 long getMemUsedMB()
          Retrieves the estimated amount of physical host memory currently consumed for this virtual machine's physical memory.
 java.lang.String getResourcePoolPath()
          Retrieves a string representation of the path to this virtual machine in the resource pool namespace of the host system.
 long getSessionId()
          Retrieves the ID for the current session after invoking the updateInfo method.
 void updateInfo()
          Refresh the virtual machine information associated with the handle for this interface instance.
 

Method Detail

updateInfo

void updateInfo()
                throws VMGuestLibErrorException
Refresh the virtual machine information associated with the handle for this interface instance. This method can and should be invoked explicitly to ensure subsequent queries return the most current information available.

Throws:
VMGuestLibErrorException

getSessionId

long getSessionId()
                  throws VMGuestLibErrorException
Retrieves the ID for the current session after invoking the updateInfo method. The session ID is opaque and cannot be compared in any meaningful way with the session IDs from any other virtual machines. If the updateInfo method has not been invoked on this interface instance, a VMGuestLibErrorException (VMGUESTLIB_ERROR_NO_INFO) is thrown.

Throws:
VMGuestLibErrorException

getCpuReservationMHz

long getCpuReservationMHz()
                          throws VMGuestLibErrorException
Retrieves the minimum processing power in MHz available to the virtual machine. Assigning a cpuReservationMhz ensures that even as other virtual machines on a single host consume shared processing power, there is still a certain minimum amount for this virtual machine.

Throws:
VMGuestLibErrorException

getCpuLimitMHz

long getCpuLimitMHz()
                    throws VMGuestLibErrorException
Retrieves the maximum processing power in MHz available to the virtual machine. Assigning a cpuLimitMHz ensures that this virtual machine never consumes more than a certain amount of the available processor power. By limiting the amount of processing power consumed, a portion of this shared resource is available to other virtual machines.

Throws:
VMGuestLibErrorException

getCpuShares

long getCpuShares()
                  throws VMGuestLibErrorException
Retrieves the number of CPU shares allocated to the virtual machine.

Throws:
VMGuestLibErrorException

getCpuUsedMs

long getCpuUsedMs()
                  throws VMGuestLibErrorException
Retrieves the number of milliseconds during which the virtual machine has been using the CPU. This value is always less than or equal to elapsedMS. This value, in conjunction with elapsedMS, can be used to estimate efective virtual machine CPU speed.

Throws:
VMGuestLibErrorException

getHostProcessorSpeed

long getHostProcessorSpeed()
                           throws VMGuestLibErrorException
Retrieves the speed of the host system's physical CPU in MHz.

Throws:
VMGuestLibErrorException

getMemReservationMB

long getMemReservationMB()
                         throws VMGuestLibErrorException
Retrieves the minimum amount of memory that is available to the virtual machine. Assigning a cpuReservationMB ensures that even as other virtual machines on a single host consume memory, there is still a certain minimum amount for this virtual machine.

Throws:
VMGuestLibErrorException

getMemLimitMB

long getMemLimitMB()
                   throws VMGuestLibErrorException
Retrieves the maximum amount of memory that is available to the virtual machine. Assigning a cpuLimitMB ensures that this virtual machine never consumes more than a certain amount of the available processor power. By limiting the amount of processing power consumed, a portion of this shared resource is available to other virtual machines.

Throws:
VMGuestLibErrorException

getMemShares

long getMemShares()
                  throws VMGuestLibErrorException
Retrieves the number of memory shares allocated to the virtual machine.

Throws:
VMGuestLibErrorException

getMemMappedMB

long getMemMappedMB()
                    throws VMGuestLibErrorException
Retrieves the mapped memory size of this virtual machine. This is the current total amount of guest memory that is backed by physical memory. Note that this number may include pages of memory shared between multiple virtual machines and thus may be an overestimate of the amount of physical host memory "consumed" by this virtual machine.

Throws:
VMGuestLibErrorException

getMemActiveMB

long getMemActiveMB()
                    throws VMGuestLibErrorException
Retrieves the estimated amount of memory the virtual machine is actively using. This method returns an estimated working set size for the virtual machine.

Throws:
VMGuestLibErrorException

getMemOverheadMB

long getMemOverheadMB()
                      throws VMGuestLibErrorException
Retrieves the amount of overhead memory associated with this virtual machine consumed on the host system.

Throws:
VMGuestLibErrorException

getMemBalloonedMB

long getMemBalloonedMB()
                       throws VMGuestLibErrorException
Retrieves the amount of memory that has been reclaimed from this virtual machine via the VMware Memory Balloon mechanism.

Throws:
VMGuestLibErrorException

getMemSwappedMB

long getMemSwappedMB()
                     throws VMGuestLibErrorException
Retrieves the amount of memory associated with this virtual machine that has been swapped by the host system.

Throws:
VMGuestLibErrorException

getMemSharedMB

long getMemSharedMB()
                    throws VMGuestLibErrorException
Retrieves the amount of physical memory associated with this virtual machine that is copy-on-write (COW) shared on the host.

Throws:
VMGuestLibErrorException

getMemSharedSavedMB

long getMemSharedSavedMB()
                         throws VMGuestLibErrorException
Retrieves the estimated amount of physical memory on the host saved from copy-on-write (COW) shared guest physical memory.

Throws:
VMGuestLibErrorException

getMemUsedMB

long getMemUsedMB()
                  throws VMGuestLibErrorException
Retrieves the estimated amount of physical host memory currently consumed for this virtual machine's physical memory. This is the same as (mapped memory) - (sharedSaved memory).

Throws:
VMGuestLibErrorException

getElapsedMs

java.math.BigInteger getElapsedMs()
                                  throws VMGuestLibErrorException
Retrieves the number of milliseconds that have passed in real time since the virtual machine started running on the current host system. The elapsed time counter is reset any time the virtual machine is powered on, resumed, or migrated via VMotion. This value, in conjunction with cpuUsedMS, can be used to estimate effective virtual machine CPU speed. The cpuUsedMS value is always less than or equal to this value.

Throws:
VMGuestLibErrorException

getResourcePoolPath

java.lang.String getResourcePoolPath()
                                     throws VMGuestLibErrorException
Retrieves a string representation of the path to this virtual machine in the resource pool namespace of the host system.

Throws:
VMGuestLibErrorException

close

void close()
           throws VMGuestLibErrorException
Closes the handle associated with this interface instance and free any related resources. Any method invoked on an interface subsequent to calling the close method will result in a VMGuestLibErrorException (VMGUESTLIB_ERROR_INVALID_HANDLE).

Throws:
VMGuestLibErrorException


VMware, Inc. (c)2006

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0045 ]--