Lines Matching refs:bag
31 struct bag { struct
38 struct bag * argument
40 struct bag *theBag = (struct bag *)jvmtiAllocate(sizeof(struct bag)); in bagCreateBag()
56 struct bag *
57 bagDup(struct bag *oldBag) in bagDup()
59 struct bag *newBag = bagCreateBag(oldBag->itemSize, in bagDup()
69 bagDestroyBag(struct bag *theBag) in bagDestroyBag()
78 bagFind(struct bag *theBag, void *key) in bagFind()
94 bagAdd(struct bag *theBag) in bagAdd()
121 bagDelete(struct bag *theBag, void *condemned) in bagDelete()
134 bagDeleteAll(struct bag *theBag) in bagDeleteAll()
141 bagSize(struct bag *theBag) in bagSize()
147 bagEnumerateOver(struct bag *theBag, bagEnumerateFunction func, void *arg) in bagEnumerateOver()