Searched refs:bag (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/back/
H A Dbag.h31 /* Declare general routines for manipulating a bag data structure.
35 struct bag;
37 /* Must be used to create a bag. itemSize is the size
38 * of the items stored in the bag. initialAllocation is a hint
40 * allocated bag, returns NULL if out of memory.
42 struct bag *bagCreateBag(int itemSize, int initialAllocation);
45 * Copy bag contents to another new bag. The new bag is returned, or
48 struct bag *bagDu
[all...]
H A Dbag.c26 /* General routines for manipulating a bag data structure */
29 #include "bag.h"
31 struct bag { struct
32 void *items; /* hold items in bag, must align on itemSize */
33 int used; /* number of items in bag */
38 struct bag *
40 struct bag *theBag = (struct bag *)jvmtiAllocate(sizeof(struct bag));
56 struct bag *
[all...]
H A DeventHelper.h29 #include "bag.h"
34 struct bag *eventHelper_createEventBag(void);
37 jbyte suspendPolicy, struct bag *eventBag);
38 void eventHelper_recordClassUnload(jint id, char *signature, struct bag *eventBag);
44 struct bag *eventBag);
46 jbyte eventHelper_reportEvents(jbyte sessionID, struct bag *eventBag);
H A DclassTrack.h33 struct bag *
H A DstandardHandlers.c42 struct bag *eventBag)
81 struct bag *eventBag)
89 struct bag *eventBag)
128 struct bag *eventBag)
H A DclassTrack.c45 #include "bag.h"
117 static struct bag *
120 struct bag *signatures = bagCreateBag(sizeof(char*), 10);
134 /* Add signature to the signature bag */
137 EXIT_ERROR(AGENT_ERROR_OUT_OF_MEMORY,"signature bag");
160 struct bag *
164 struct bag *unloadedSignatures;
H A DinStream.h32 struct bag;
39 struct bag *refs;
H A DthreadControl.h31 #include "bag.h"
43 struct bag *threadControl_onEventHandlerEntry(jbyte sessionID,
45 void threadControl_onEventHandlerExit(EventIndex ei, jthread thread, struct bag *);
H A DoutStream.h32 struct bag;
52 struct bag *ids;
H A DeventHandler.h29 #include "bag.h"
45 struct bag *eventBag);
H A DeventHelper.c878 struct bag *
952 eventHelper_reportEvents(jbyte sessionID, struct bag *eventBag)
997 struct bag *eventBag)
1018 eventHelper_recordClassUnload(jint id, char *signature, struct bag *eventBag)
1035 struct bag *eventBag)
H A DstepControl.c263 struct bag *eventBag)
366 struct bag *eventBag)
433 struct bag *eventBag)
H A DthreadControl.c33 #include "bag.h"
81 struct bag *eventBag;
305 struct bag *eventBag;
654 struct bag *eventBag)
738 struct bag *eventBag)
2033 struct bag *
2038 struct bag *eventBag;
2135 struct bag *eventBag)
H A DeventHandler.c298 * bag will contain the deferred METHOD_ENTRY and/or SINGLE_STEP
303 * is processed, the event bag will also contain the deferred
390 struct bag *eventBag)
422 * in the event bag until a subsequent event occurs. Event is
428 struct bag *completedBag = bagDup(eventBag);
472 struct bag *eventBag = eventHelper_createEventBag();
525 * bag was created locally, destroy it here.
546 struct bag *eventBag;
570 struct bag *unloadedSignatures = NULL;
690 * If the bag wa
[all...]
H A DdebugInit.c38 #include "bag.h"
70 static struct bag *transports; /* of TransportSpec */
86 * Elements of the transports bag
773 struct bag *initEventBag;
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DReachableObjects.java51 final Hashtable<JavaHeapObject, JavaHeapObject> bag = new Hashtable<JavaHeapObject, JavaHeapObject>();
57 if (t != null && t.getSize() > 0 && bag.get(t) == null) {
58 bag.put(t, t);
82 // bag (depth first), but don't include root:
84 bag.remove(root);
87 JavaThing[] things = new JavaThing[bag.size()];
89 for (Enumeration e = bag.elements(); e.hasMoreElements(); ) {
/openjdk7/jdk/make/jpda/back/
H A DMakefile82 bag.c \

Completed in 91 milliseconds