Searched defs:theBag (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/back/
H A Dbag.c40 struct bag *theBag = (struct bag *)jvmtiAllocate(sizeof(struct bag)); local
41 if (theBag == NULL) {
45 theBag->items = jvmtiAllocate(initialAllocation * itemSize);
46 if (theBag->items == NULL) {
47 jvmtiDeallocate(theBag);
50 theBag->used = 0;
51 theBag->allocated = initialAllocation;
52 theBag->itemSize = itemSize;
53 return theBag;
69 bagDestroyBag(struct bag *theBag) argument
78 bagFind(struct bag *theBag, void *key) argument
94 bagAdd(struct bag *theBag) argument
121 bagDelete(struct bag *theBag, void *condemned) argument
134 bagDeleteAll(struct bag *theBag) argument
141 bagSize(struct bag *theBag) argument
147 bagEnumerateOver(struct bag *theBag, bagEnumerateFunction func, void *arg) argument
[all...]

Completed in 29 milliseconds