Uses of Class
com.jstatcom.engine.CPtr

Packages that use CPtr
com.jstatcom.engine Abstract implementation of the engine communication as well as the procedure call. 
 

Uses of CPtr in com.jstatcom.engine
 

Subclasses of CPtr in com.jstatcom.engine
 class CFunc
          An abstraction for a C function pointer.
 class CMalloc
          A CPtr to memory obtained from the C heap via a call to malloc.
 

Fields in com.jstatcom.engine declared as CPtr
static CPtr CPtr.NULL
          A canonical representation of C's NULL pointer.
 

Methods in com.jstatcom.engine that return CPtr
 CPtr CFunc.callCPtr(java.lang.Object[] args)
          Call the C function being represented by this object.
 CPtr CPtr.getCPtr(int offset)
          Indirect the C pointer as a pointer to pointer.
 CPtr CMalloc.getCPtr(int offset)
          Indirect the C pointer to malloc space, a la CPtr.getCPtr.
 

Methods in com.jstatcom.engine with parameters of type CPtr
 void CPtr.setCPtr(int offset, CPtr value)
          Set value at location being pointed to.
 void CMalloc.setCPtr(int offset, CPtr value)
          Indirect the C pointer to malloc space, a la CPtr.setCPtr.