Uses of Class
jeco.dmm.sim2.lib.freelist.FreeList.ALLOCATION_MECHANISM

Packages that use FreeList.ALLOCATION_MECHANISM
jeco.dmm.sim2.lib.allocator   
jeco.dmm.sim2.lib.freelist   
jeco.dmm.sim2.util   
 

Uses of FreeList.ALLOCATION_MECHANISM in jeco.dmm.sim2.lib.allocator
 

Methods in jeco.dmm.sim2.lib.allocator with parameters of type FreeList.ALLOCATION_MECHANISM
abstract  void Allocator.setup(FreeList.DATA_STRUCTURE dataStructure, FreeList.ALLOCATION_MECHANISM allocationMechanism, FreeList.ALLOCATION_POLICY allocationPolicy)
           
 void BuddySystem.setup(FreeList.DATA_STRUCTURE dataStructure, FreeList.ALLOCATION_MECHANISM allocationMechanism, FreeList.ALLOCATION_POLICY allocationPolicy)
           
 void ExactSegregatedFit.setup(FreeList.DATA_STRUCTURE dataStructure, FreeList.ALLOCATION_MECHANISM allocationMechanism, FreeList.ALLOCATION_POLICY allocationPolicy)
           
 void SegregatedFreeList.setup(FreeList.DATA_STRUCTURE dataStructure, FreeList.ALLOCATION_MECHANISM fitAlgorithm, FreeList.ALLOCATION_POLICY policy)
           
 void SimpleSegregatedStorage.setup(FreeList.DATA_STRUCTURE dataStructure, FreeList.ALLOCATION_MECHANISM allocationMechanism, FreeList.ALLOCATION_POLICY allocationPolicy)
           
 

Constructors in jeco.dmm.sim2.lib.allocator with parameters of type FreeList.ALLOCATION_MECHANISM
Kingsley(FreeList.ALLOCATION_MECHANISM allocationMechanism)
           
 

Uses of FreeList.ALLOCATION_MECHANISM in jeco.dmm.sim2.lib.freelist
 

Fields in jeco.dmm.sim2.lib.freelist declared as FreeList.ALLOCATION_MECHANISM
protected  FreeList.ALLOCATION_MECHANISM FreeList.allocationMechanism
          Algorithm used to allocate memory
 

Methods in jeco.dmm.sim2.lib.freelist that return FreeList.ALLOCATION_MECHANISM
 FreeList.ALLOCATION_MECHANISM FreeList.getAllocationMechanism()
           
static FreeList.ALLOCATION_MECHANISM FreeList.ALLOCATION_MECHANISM.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FreeList.ALLOCATION_MECHANISM[] FreeList.ALLOCATION_MECHANISM.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in jeco.dmm.sim2.lib.freelist with parameters of type FreeList.ALLOCATION_MECHANISM
FreeList(FreeList.DATA_STRUCTURE dataStructure, FreeList.ALLOCATION_MECHANISM allocationMechanism, FreeList.ALLOCATION_POLICY allocationPolicy, long minSizeInB, long maxSizeInB)
           
 

Uses of FreeList.ALLOCATION_MECHANISM in jeco.dmm.sim2.util
 

Methods in jeco.dmm.sim2.util with parameters of type FreeList.ALLOCATION_MECHANISM
static void ManagersCreator.buildSeveralFreeLists(int n, SegregatedFreeList allocator, FreeList.DATA_STRUCTURE dataStructure, FreeList.ALLOCATION_MECHANISM fitAlgorithm, FreeList.ALLOCATION_POLICY policy)