HomeSort by relevance Sort by last modified time
    Searched refs:pool (Results 76 - 100 of 304) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/base/
lazy_instance_unittest.cc 90 base::DelegateSimpleThreadPool pool("lazy_instance_cons", 5);
91 pool.AddWork(&delegate, 20);
94 pool.Start();
95 pool.JoinAll();
  /external/protobuf/src/google/protobuf/
dynamic_message.h 78 // parser to look for extensions in an alternate pool. However, note that
81 DynamicMessageFactory(const DescriptorPool* pool);
87 // d->file()->pool() == DescriptorPool::generated_pool(),
  /external/webkit/Tools/DumpRenderTree/chromium/
LayoutTestHelper.mm 95 NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
116 [pool release];
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
ebt_among.h 42 struct ebt_mac_wormhash_tuple pool[0]; member in struct:ebt_mac_wormhash
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_among.h 42 struct ebt_mac_wormhash_tuple pool[0]; member in struct:ebt_mac_wormhash
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_among.h 42 struct ebt_mac_wormhash_tuple pool[0]; member in struct:ebt_mac_wormhash
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
tokens.c 68 static char *idstr(const char *fstr, MemoryPool *pool)
75 if (!pool)
78 str = (char *) mem_Alloc(pool, len + 1);
94 static TokenBlock *lNewBlock(TokenStream *fTok, MemoryPool *pool)
98 if (!pool)
101 lBlock = (TokenBlock *) mem_Alloc(pool, sizeof(TokenBlock) + 256);
163 TokenStream *NewTokenStream(const char *name, MemoryPool *pool)
167 if (!pool)
170 pTok = (TokenStream*)mem_Alloc(pool, sizeof(TokenStream));
172 pTok->name = idstr(name, pool);
    [all...]
symbols.h 71 MemoryPool *pool; // pool used for allocation in this scope member in struct:Scope_Rec
101 #define NewScope() NewScopeInPool(CurrentScope->pool)
  /external/chromium/third_party/libevent/
evrpc.h 180 int evrpc_send_request_##rpcname(struct evrpc_pool *pool, \
191 ctx->pool = pool; \
343 /* pool on which this rpc request is being made */
344 struct evrpc_pool *pool; member in struct:evrpc_request_wrapper
377 * @param pool the evrpc_pool that contains the connection objects over which
387 #define EVRPC_MAKE_REQUEST(name, pool, request, reply, cb, cbarg) \
388 evrpc_send_request_##name(pool, request, reply, cb, cbarg)
392 /** creates an rpc connection pool
394 * a pool has a number of connections associated with it
    [all...]
  /external/javassist/sample/evolve/
Evolution.java 31 private ClassPool pool; field in class:Evolution
38 pool = _pool;
81 CtClass clazz = pool.getAndRename(orgname, classname);
90 if (pool == null)
94 CtClass c = pool.get(classname);
106 CtClass absClass = pool.makeClass(clazz.getName());
113 CtField fld = new CtField(pool.get("java.lang.Class"),
117 CtField.Initializer finit = CtField.Initializer.byCall(pool
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationImpl.java 42 private ClassPool pool; field in class:AnnotationImpl
63 * @param cp class pool for containing an annotation
76 pool = cp;
148 return mv.getValue(classLoader, pool, method);
155 if (pool != null) {
157 CtClass cc = pool.get(classname);
166 return mv.getValue(classLoader, pool, method);
200 value = mv.getValue(classLoader, pool, methods[i]);
260 value = mv.getValue(classLoader, pool, methods[i]);
  /external/webkit/Source/WebCore/fileapi/
FileThread.cpp 101 AutodrainedPool pool; local
104 pool.cycle();
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceResponseMac.mm 81 NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
110 [pool drain];
114 NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
129 [pool drain];
  /external/webkit/Source/WebKit2/Platform/mac/
RunLoopMac.mm 33 // Wrap main thread in an Autorelease pool. Sending messages can call
36 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
38 [pool drain];
65 // Otherwise, use NSRunLoop. We do this because it sets up an autorelease pool for us.
102 // Wrap main thread in an Autorelease pool. The timer can call
105 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
107 [pool drain];
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageViewAdapter.java 98 // getTile(1, 50, 50, 100, 3, pool) means to get the region located
110 int borderSize, BitmapPool pool) {
129 Bitmap bitmap = pool == null ? null : pool.getBitmap();
150 if (pool != null) pool.recycle(options.inBitmap);
BitmapTileProvider.java 75 int borderSize, BitmapPool pool) {
80 Bitmap result = pool == null ? null : pool.getBitmap();
  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 51 ClassPool pool = clazz.getClassPool(); local
60 CtClass[] params = Descriptor.getParameterTypes(desc, pool);
110 ClassPool pool = clazz.getClassPool(); local
119 CtClass[] params = Descriptor.getParameterTypes(accDesc, pool);
131 code.addReturn(Descriptor.getReturnType(desc, pool));
162 ClassPool pool = clazz.getClassPool(); local
183 code.addReturn(Descriptor.toCtClass(fieldType, pool));
213 ClassPool pool = clazz.getClassPool(); local
227 reg = code.addLoad(0, Descriptor.toCtClass(fieldType, pool));
232 reg = code.addLoad(1, Descriptor.toCtClass(fieldType, pool))
    [all...]
  /external/valgrind/main/memcheck/
mc_malloc_wrappers.c 69 MC_Mempool::pool. */
571 /*--- Memory pool stuff. ---*/
581 void MC_(create_mempool)(Addr pool, UInt rzB, Bool is_zeroed)
587 pool, rzB, is_zeroed);
592 mp = VG_(HT_lookup)(MC_(mempool_list), (UWord)pool);
594 VG_(tool_panic)("MC_(create_mempool): duplicate pool creation");
598 mp->pool = pool;
616 void MC_(destroy_mempool)(Addr pool)
622 VG_(message)(Vg_UserMsg, "destroy_mempool(0x%lx)\n", pool);
    [all...]
  /external/javassist/src/main/javassist/tools/rmi/
StubGenerator.java 70 public void start(ClassPool pool) throws NotFoundException {
71 classPool = pool;
72 CtClass c = pool.get(sampleClass);
77 = pool.get(new String[] { "javassist.tools.rmi.ObjectImporter",
80 = pool.get(new String[] { "java.io.Serializable",
83 = new CtClass[] { pool.get("javassist.tools.rmi.RemoteException") };
91 public void onLoad(ClassPool pool, String classname) {}
  /external/dropbear/libtomcrypt/src/prngs/
fortuna.c 84 if ((err = sha256_done(&prng->fortuna.pool[x], tmp)) != CRYPT_OK) {
93 /* reset this pool */
94 if ((err = sha256_init(&prng->fortuna.pool[x])) != CRYPT_OK) {
112 /* reset pool len */
139 if ((err = sha256_init(&prng->fortuna.pool[x])) != CRYPT_OK) {
141 sha256_done(&prng->fortuna.pool[y], tmp);
153 sha256_done(&prng->fortuna.pool[x], tmp);
187 /* add s || length(in) || in to pool[pool_idx] */
190 if ((err = sha256_process(&prng->fortuna.pool[prng->fortuna.pool_idx], tmp, 2)) != CRYPT_OK) {
194 if ((err = sha256_process(&prng->fortuna.pool[prng->fortuna.pool_idx], in, inlen)) != CRYPT_OK)
    [all...]
  /dalvik/vm/compiler/codegen/arm/Thumb/
Gen.cpp 172 RegisterPool *pool = (RegisterPool *) dvmCompilerNew(sizeof(*pool), true); local
173 cUnit->regPool = pool;
174 pool->numCoreTemps = numTemps;
175 pool->coreTemps = (RegisterInfo *)
176 dvmCompilerNew(numTemps * sizeof(*pool->coreTemps), true);
177 pool->numFPTemps = 0;
178 pool->FPTemps = NULL;
179 dvmCompilerInitPool(pool->coreTemps, coreTemps, pool->numCoreTemps)
    [all...]
  /external/chromium/net/socket/
client_socket_handle.h 59 // If the pool was not able to reuse an existing socket, the new socket
77 PoolType* pool,
190 PoolType* pool,
201 pool_ = pool;
  /external/javassist/src/main/javassist/convert/
TransformCall.java 83 private boolean matchClass(String name, ClassPool pool) {
88 CtClass clazz = pool.get(name);
89 CtClass declClazz = pool.get(classname);
  /external/protobuf/src/google/protobuf/compiler/
plugin.cc 106 DescriptorPool pool; local
108 const FileDescriptor* file = pool.BuildFile(request.proto_file(i));
120 pool.FindFileByName(request.file_to_generate(i));
  /cts/tools/utils/
buildCts.py 26 from multiprocessing import Pool
77 pool = Pool(processes=2)
80 pool.apply_async(GenerateSignatureCheckDescription, [self.test_repository])
84 pool.close()
85 pool.join()

Completed in 6594 milliseconds

1 2 34 5 6 7 8 91011>>