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

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

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

Methods in jeco.dmm.sim2.lib.allocator with parameters of type FreeList.ALLOCATION_POLICY
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)
           
 

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

Fields in jeco.dmm.sim2.lib.freelist declared as FreeList.ALLOCATION_POLICY
protected  FreeList.ALLOCATION_POLICY FreeList.allocationPolicy
           
 

Methods in jeco.dmm.sim2.lib.freelist that return FreeList.ALLOCATION_POLICY
 FreeList.ALLOCATION_POLICY FreeList.getAllocationPolicy()
           
static FreeList.ALLOCATION_POLICY FreeList.ALLOCATION_POLICY.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FreeList.ALLOCATION_POLICY[] FreeList.ALLOCATION_POLICY.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_POLICY
FreeList(FreeList.DATA_STRUCTURE dataStructure, FreeList.ALLOCATION_MECHANISM allocationMechanism, FreeList.ALLOCATION_POLICY allocationPolicy, long minSizeInB, long maxSizeInB)
           
 

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

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