Searched refs:theBag (Results 1 - 2 of 2) 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...]
H A Dbag.h52 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,

Completed in 27 milliseconds