HomeSort by relevance Sort by last modified time
    Searched refs:bag (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/oj-libjdwp/src/share/back/
bag.h 31 /* 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 *bagDup(struct bag *)
    [all...]
bag.c 26 /* 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...]
eventHelper.h 29 #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);
classTrack.h 33 struct bag *
standardHandlers.c 42 struct bag *eventBag)
81 struct bag *eventBag)
89 struct bag *eventBag)
128 struct bag *eventBag)
inStream.h 32 struct bag;
39 struct bag *refs;
threadControl.h 31 #include "bag.h"
43 struct bag *threadControl_onEventHandlerEntry(jbyte sessionID,
45 void threadControl_onEventHandlerExit(EventIndex ei, jthread thread, struct bag *);
classTrack.c 70 #include "bag.h"
102 * A bag containing all the deleted klass_tags ids. This must be accessed under the
107 struct bag* deletedTagBag;
151 struct bag *
157 * Furthermore due to the check for an empty bag (which should be very common) normally this
164 struct bag* deleted = bagCreateBag(sizeof(char*), bagSize(deletedTagBag));
180 /* Put this nodes signature into the deleted bag */
outStream.h 32 struct bag;
52 struct bag *ids;
  /external/grpc-grpc/src/core/lib/iomgr/
pollset_set.cc 47 void grpc_pollset_set_add_pollset_set(grpc_pollset_set* bag,
49 grpc_pollset_set_impl->add_pollset_set(bag, item);
52 void grpc_pollset_set_del_pollset_set(grpc_pollset_set* bag,
54 grpc_pollset_set_impl->del_pollset_set(bag, item);
pollset_set.h 38 void (*add_pollset_set)(grpc_pollset_set* bag, grpc_pollset_set* item);
39 void (*del_pollset_set)(grpc_pollset_set* bag, grpc_pollset_set* item);
50 void grpc_pollset_set_add_pollset_set(grpc_pollset_set* bag,
52 void grpc_pollset_set_del_pollset_set(grpc_pollset_set* bag,
pollset_set_custom.cc 37 void pollset_set_add_pollset_set(grpc_pollset_set* bag,
40 void pollset_set_del_pollset_set(grpc_pollset_set* bag,
pollset_set_windows.cc 40 static void pollset_set_add_pollset_set(grpc_pollset_set* bag,
43 static void pollset_set_del_pollset_set(grpc_pollset_set* bag,
ev_posix.cc 370 static void pollset_set_add_pollset_set(grpc_pollset_set* bag,
372 GRPC_POLLING_API_TRACE("pollset_set_add_pollset_set(%p, %p)", bag, item);
373 g_event_engine->pollset_set_add_pollset_set(bag, item);
376 static void pollset_set_del_pollset_set(grpc_pollset_set* bag,
378 GRPC_POLLING_API_TRACE("pollset_set_del_pollset_set(%p, %p)", bag, item);
379 g_event_engine->pollset_set_del_pollset_set(bag, item);
ev_posix.h 75 void (*pollset_set_add_pollset_set)(grpc_pollset_set* bag,
77 void (*pollset_set_del_pollset_set)(grpc_pollset_set* bag,
ev_poll_posix.cc     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/genmk/
makefile 14 BAG=../../bin/bag
29 $(BAG) genmk.c makefile > genmk.bag
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
makefile 0 BAG=../../bin/bag
13 $(BAG) makefile test.c rexpr.c rexpr.h > rexpr.bag
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigTest.java 277 checkValue(res, R.configVarying.bag,
278 R.styleable.TestConfig, new String[]{"bag default"});
284 checkValue(res, R.configVarying.bag,
285 R.styleable.TestConfig, new String[]{"bag xx"});
292 checkValue(res, R.configVarying.bag,
293 R.styleable.TestConfig, new String[]{"bag xx-rYY"});
299 checkValue(res, R.configVarying.bag,
300 R.styleable.TestConfig, new String[]{"bag mcc111"});
306 checkValue(res, R.configVarying.bag,
307 R.styleable.TestConfig, new String[]{"bag mnc222"})
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pep292.py 9 class Bag:
25 s = Template('$who likes to eat a bag of $what worth $$100')
27 'tim likes to eat a bag of ham worth $100')
39 s = Template('$who likes to eat a bag of $$what worth $$100')
41 'tim likes to eat a bag of $what worth $100')
93 m.bag = Bag()
94 m.bag.foo = Bag()
95 m.bag.foo.who = 'tim'
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_futures.py 602 def _make_callback(self, bag, thing):
603 # Create a callback function that appends thing to bag.
605 bag.append(thing)
612 bag = []
615 cb1 = self._make_callback(bag, 42)
616 cb2 = self._make_callback(bag, 17)
617 cb3 = self._make_callback(bag, 100)
626 self.assertEqual(bag, [])
631 self.assertEqual(bag, [17, 100])
635 bag = [
    [all...]
  /external/webrtc/talk/media/devices/
win32devicemanager.cc 206 CComPtr<IPropertyBag> bag; local
208 __uuidof(bag), reinterpret_cast<void**>(&bag)))) {
211 if (SUCCEEDED(bag->Read(kFriendlyName, &name, 0)) &&
215 if (SUCCEEDED(bag->Read(kDevicePath, &path, 0)) &&
230 HRESULT GetStringProp(IPropertyStore* bag, PROPERTYKEY key, std::string* out) {
235 HRESULT hr = bag->GetValue(key, &var);
  /external/jemalloc/test/unit/
ph.c 171 uint64_t bag[NNODES]; local
182 bag[j] = j;
187 bag[j] = NNODES - j - 1;
191 bag[j] = gen_rand64_range(sfmt, NNODES);
201 nodes[k].key = bag[k];
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowArscAssetManager10.java 869 ResolvedBag bag = assetmanager.GetBag(resid); local
905 ResolvedBag bag = assetmanager.GetBag(resid); local
929 ResolvedBag bag = assetmanager.GetBag(resid); local
989 ResolvedBag bag = assetmanager.GetBag(resid); local
1033 ResolvedBag bag = assetmanager.GetBag(resid); local
1073 ResolvedBag bag = assetmanager.GetBag(resid); local
1086 ResolvedBag bag = assetmanager.GetBag(resid); local
    [all...]
ShadowArscAssetManager9.java 865 ResolvedBag bag = assetmanager.GetBag(resid); local
901 ResolvedBag bag = assetmanager.GetBag(resid); local
925 ResolvedBag bag = assetmanager.GetBag(resid); local
985 ResolvedBag bag = assetmanager.GetBag(resid); local
1029 ResolvedBag bag = assetmanager.GetBag(resid); local
1069 ResolvedBag bag = assetmanager.GetBag(resid); local
1082 ResolvedBag bag = assetmanager.GetBag(resid); local
    [all...]

Completed in 631 milliseconds

1 2 3