Searched refs:theBag (Results 1 – 2 of 2) sorted by relevance
40 struct bag *theBag = (struct bag *)jvmtiAllocate(sizeof(struct bag)); in bagCreateBag() local41 if (theBag == NULL) { in bagCreateBag()45 theBag->items = jvmtiAllocate(initialAllocation * itemSize); in bagCreateBag()46 if (theBag->items == NULL) { in bagCreateBag()47 jvmtiDeallocate(theBag); in bagCreateBag()50 theBag->used = 0; in bagCreateBag()51 theBag->allocated = initialAllocation; in bagCreateBag()52 theBag->itemSize = itemSize; in bagCreateBag()53 return theBag; in bagCreateBag()69 bagDestroyBag(struct bag *theBag) in bagDestroyBag() argument[all …]
52 void bagDestroyBag(struct bag *theBag);57 void *bagFind(struct bag *theBag, void *key);62 void *bagAdd(struct bag *theBag);67 void bagDelete(struct bag *theBag, void *condemned);71 void bagDeleteAll(struct bag *theBag);75 int bagSize(struct bag *theBag);86 jboolean bagEnumerateOver(struct bag *theBag,