HomeSort by relevance Sort by last modified time
    Searched refs:pool (Results 101 - 125 of 268) sorted by null

1 2 3 45 6 7 8 91011

  /external/chromium/chrome/browser/resources/net_internals/
socketsview.js 8 * - Shows a summary of the state of each socket pool at the top.
9 * - For each pool with allocated sockets or connect jobs, shows all its
42 // Add table for each socket pool with information on each of its groups.
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 53 ConstPool pool; field in class:Annotation
62 * @param type the index into the constant pool table.
66 * @param cp the constant pool table.
71 pool = cp;
81 * @param cp the constant pool table.
94 * @param cp the constant pool table.
124 * @param cp the constant pool table.
174 * @param nameIndex the index into the constant pool table.
195 p.name = pool.addUtf8Info(name);
204 String name = pool.getUtf8Info(pair.name)
    [all...]
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ScannerTest.java 26 ClassPool pool = ClassPool.getDefault(); local
27 generate(pool);
28 CtClass clazz = pool.get("test.ScannerTest$GeneratedTest");
78 private static void generate(ClassPool pool) throws CannotCompileException, IOException, NotFoundException {
106 CtClass clazz = pool.makeClass("test.ScannerTest$GeneratedTest");
110 CtClass stringClass = pool.get("java.lang.String");
  /external/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java 116 final GenericDescriptor result = pool.findSymbol(name);
140 final GenericDescriptor result = pool.findSymbol(name);
164 final GenericDescriptor result = pool.findSymbol(name);
187 final GenericDescriptor result = pool.findSymbol(name);
220 final DescriptorPool pool = new DescriptorPool(dependencies); local
222 new FileDescriptor(proto, dependencies, pool);
329 private final DescriptorPool pool; field in class:Descriptors.FileDescriptor
333 final DescriptorPool pool)
335 this.pool = pool;
    [all...]
  /external/icu4c/data/
Makefile.in 348 RES_FILES = $(ALL_RES_SRC:%.txt=$(BUILDDIR)/%.res) $(BUILDDIR)/$(INDEX_NAME).res $(BUILDDIR)/pool.res
349 RES_FILES_SHORT = $(ALL_RES_SRC:%.txt=%.res) $(INDEX_NAME).res pool.res
354 CURR_FILES = $(CURR_SRC:%.txt=$(CURRBLDDIR)/%.res) $(CURRBLDDIR)/$(INDEX_NAME).res $(CURRBLDDIR)/pool.res
355 CURR_FILES_SHORT = $(CURR_SRC:%.txt=$(CURR_TREE)/%.res) $(CURR_TREE)/$(INDEX_NAME).res $(CURR_TREE)/pool.res
359 LANG_FILES = $(LANG_SRC:%.txt=$(LANGBLDDIR)/%.res) $(LANGBLDDIR)/$(INDEX_NAME).res $(LANGBLDDIR)/pool.res
360 LANG_FILES_SHORT = $(LANG_SRC:%.txt=$(LANG_TREE)/%.res) $(LANG_TREE)/$(INDEX_NAME).res $(LANG_TREE)/pool.res
364 REGION_FILES = $(REGION_SRC:%.txt=$(REGIONBLDDIR)/%.res) $(REGIONBLDDIR)/$(INDEX_NAME).res $(REGIONBLDDIR)/pool.res
365 REGION_FILES_SHORT = $(REGION_SRC:%.txt=$(REGION_TREE)/%.res) $(REGION_TREE)/$(INDEX_NAME).res $(REGION_TREE)/pool.res
369 ZONE_FILES = $(ZONE_SRC:%.txt=$(ZONEBLDDIR)/%.res) $(ZONEBLDDIR)/$(INDEX_NAME).res $(ZONEBLDDIR)/pool.res
370 ZONE_FILES_SHORT = $(ZONE_SRC:%.txt=$(ZONE_TREE)/%.res) $(ZONE_TREE)/$(INDEX_NAME).res $(ZONE_TREE)/pool.re
    [all...]
  /cts/tools/utils/
buildCts.py 26 from multiprocessing import Pool
77 pool = Pool(processes=16)
80 pool.apply_async(GenerateSignatureCheckDescription, [self.test_repository])
81 pool.apply_async(GenerateReferenceAppDescription, [self.test_repository])
82 pool.apply_async(GenerateAppSecurityDescription, [self.temp_dir,
88 pool.apply_async(GenerateTestDescription, [self.test_root, self.temp_dir,
91 pool.close()
92 pool.join()
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 50 * Parser for a constant pool embedded in a class file.
53 /** {@code non-null;} the bytes of the constant pool */
56 /** {@code non-null;} actual parsed constant pool contents */
57 private final StdConstantPool pool; field in class:ConstantPoolParser
63 * -1 || >= 10; the end offset of this constant pool in the
81 this.pool = new StdConstantPool(size);
96 * Gets the end offset of this constant pool in the {@code byte[]}
107 * Gets the actual constant pool.
109 * @return {@code non-null;} the constant pool
113 return pool;
    [all...]
  /external/javassist/src/main/javassist/bytecode/
MethodInfo.java 69 * a constant pool table
99 * a constant pool table
122 * Copies all constant pool items to a given new constant pool
217 * Returns a constant pool table used by this method.
349 * The added attribute must share the same constant pool table as this
371 * The added attribute must share the same constant pool table as this
388 * @param pool used for making type hierarchy.
394 public void rebuildStackMapIf6(ClassPool pool, ClassFile cf)
398 rebuildStackMap(pool);
    [all...]
AnnotationsAttribute.java 117 * @param cp constant pool
134 * @param cp constant pool
417 * @param cp the constant pool.
466 * @param src the constant pool of the source class.
467 * @param dest the constant pool of the destination class.
533 * Copies a constant pool entry into the destination constant pool
537 * constant pool.
539 * constant pool.
546 * Copies a constant pool entry into the destination constant poo
563 ConstPool pool; field in class:AnnotationsAttribute.Parser
    [all...]
  /external/chromium/net/base/
host_resolver_impl.cc 325 // The resolve job (running in worker pool) that this request is dependent on.
344 // This class represents a request to the worker pool for a "getaddrinfo()"
474 // WARNING: This code runs inside a worker pool. The shutdown code cannot
642 // This class represents a request to the worker pool for a "probe for IPv6
762 // Sets the constraints for this pool. See SetPoolConstraints() for the
771 // Returns the number of pending requests enqueued to this pool.
784 // Enqueues a request to this pool. As a result of enqueing this request,
847 // Keeps track of a job that was just added/removed, and belongs to this pool.
857 // Returns true if a new job can be created for this pool.
886 // belonging to this pool
966 JobPool* pool = job_pools_[pool_index]; local
1086 JobPool* pool = GetPoolForRequest(req); local
1120 JobPool* pool = GetPoolForRequest(req); local
1180 JobPool* pool = GetPoolForRequest(job->initial_request()); local
1197 JobPool* pool = GetPoolForRequest(job->initial_request()); local
1365 JobPool* pool = job_pools_[i]; local
1379 JobPool* pool = job_pools_[pool_i]; local
    [all...]
host_resolver_impl.h 59 // Note: This is currently unused, since there is a single pool
98 // pool. NOTE: Don't call this after requests have been already been started.
100 // |pool_index| -- Specifies which pool these constraints should be applied
103 // pool.
104 // |max_pending_requests| -- How many requests can be enqueued for this pool
194 // Returns true if the constraints for |pool| are met, and a new job can be
195 // created for this pool.
196 bool CanCreateJobForPool(const JobPool& pool) const;
198 // Returns the index of the pool that request |req| maps to.
205 // Starts up to 1 job given the current pool constraints. This jo
    [all...]
  /external/bluetooth/glib/gobject/
gparam.h 375 void g_param_spec_pool_insert (GParamSpecPool *pool,
378 void g_param_spec_pool_remove (GParamSpecPool *pool,
380 GParamSpec* g_param_spec_pool_lookup (GParamSpecPool *pool,
384 GList* g_param_spec_pool_list_owned (GParamSpecPool *pool,
386 GParamSpec** g_param_spec_pool_list (GParamSpecPool *pool,
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 218 ConstantPool pool = cf.getConstantPool(); local
245 pool);
278 CstType catchType = (CstType) pool.get0Ok(catchTypeIdx);
322 ConstantPool pool = cf.getConstantPool(); local
324 TypedConstant cst = (TypedConstant) pool.get(idx);
356 ConstantPool pool = cf.getConstantPool(); local
359 CstType type = (CstType) pool.get(idx);
362 CstNat method = (CstNat) pool.get0Ok(idx);
413 ConstantPool pool = cf.getConstantPool(); local
435 CstType innerClass = (CstType) pool.get(innerClassIdx)
683 ConstantPool pool = cf.getConstantPool(); local
705 ConstantPool pool = cf.getConstantPool(); local
    [all...]
MemberListParser.java 84 * Gets the end offset of this constant pool in the {@code byte[]}
178 ConstantPool pool = cf.getConstantPool(); local
190 CstString name = (CstString) pool.get(nameIdx);
191 CstString desc = (CstString) pool.get(descIdx);
  /dalvik/vm/compiler/codegen/arm/Thumb2/
Gen.cpp 143 RegisterPool *pool = (RegisterPool *)dvmCompilerNew(sizeof(*pool), true); local
144 cUnit->regPool = pool;
145 pool->numCoreTemps = numTemps;
146 pool->coreTemps = (RegisterInfo *)
148 pool->numFPTemps = numFPTemps;
149 pool->FPTemps = (RegisterInfo *)
151 dvmCompilerInitPool(pool->coreTemps, coreTemps, pool->numCoreTemps);
152 dvmCompilerInitPool(pool->FPTemps, fpTemps, pool->numFPTemps)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
httpclient.h 78 HttpClient(const std::string& agent, StreamPool* pool,
82 void set_pool(StreamPool* pool) { pool_ = pool; }
  /external/replicaisland/src/com/replica/replicaisland/
RenderSystem.java 142 // if this drawable came out of a pool, make sure it is returned to that pool.
143 final ObjectPool pool = renderable.mDrawable.getParentPool(); local
144 if (pool != null) {
145 pool.release(renderable.mDrawable);
  /external/dropbear/libtomcrypt/src/prngs/
yarrow.c 122 zeromem(prng->yarrow.pool, sizeof(prng->yarrow.pool));
156 /* hash the current pool */
157 if ((err = hash_descriptor[prng->yarrow.hash].process(&md, prng->yarrow.pool,
170 if ((err = hash_descriptor[prng->yarrow.hash].done(&md, prng->yarrow.pool)) != CRYPT_OK) {
201 /* setup CTR mode using the "pool" as the key */
209 prng->yarrow.pool, /* IV */
210 prng->yarrow.pool, ks, /* KEY and key size */
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
IndexDataManager.cpp 211 D3DPOOL pool = getDisplay()->getBufferPool(D3DUSAGE_DYNAMIC | D3DUSAGE_WRITEONLY); local
212 HRESULT result = device->CreateIndexBuffer(size, D3DUSAGE_DYNAMIC | D3DUSAGE_WRITEONLY, format, pool, &mIndexBuffer, NULL);
284 D3DPOOL pool = getDisplay()->getBufferPool(D3DUSAGE_DYNAMIC | D3DUSAGE_WRITEONLY); local
285 HRESULT result = mDevice->CreateIndexBuffer(mBufferSize, D3DUSAGE_DYNAMIC | D3DUSAGE_WRITEONLY, type == GL_UNSIGNED_INT ? D3DFMT_INDEX32 : D3DFMT_INDEX16, pool, &mIndexBuffer, NULL);
337 D3DPOOL pool = getDisplay()->getBufferPool(D3DUSAGE_WRITEONLY); local
338 HRESULT result = mDevice->CreateIndexBuffer(requiredSpace, D3DUSAGE_WRITEONLY, type == GL_UNSIGNED_INT ? D3DFMT_INDEX32 : D3DFMT_INDEX16, pool, &mIndexBuffer, NULL);
  /frameworks/compile/libbcc/lib/ExecutionEngine/
MCCacheWriter.cpp 175 // Calculate string pool size
185 // Create string pool
186 OBCC_StringPool *pool = (OBCC_StringPool *)malloc(size); local
188 if (!pool) {
189 LOGE("Unable to allocate string pool.\n");
193 mpStringPoolSection = pool;
196 pool->count = mStringPool.size();
198 char *strPtr = reinterpret_cast<char *>(pool) + strOffset;
201 OBCC_String *str = &pool->list[i];
  /frameworks/compile/libbcc/lib/ExecutionEngine/OldJIT/
CacheWriter.cpp 229 // Calculate string pool size
239 // Create string pool
240 OBCC_StringPool *pool = (OBCC_StringPool *)malloc(size); local
242 if (!pool) {
243 LOGE("Unable to allocate string pool.\n");
247 mpStringPoolSection = pool;
250 pool->count = mStringPool.size();
252 char *strPtr = reinterpret_cast<char *>(pool) + strOffset;
255 OBCC_String *str = &pool->list[i];
  /external/chromium/base/threading/
worker_pool_posix.cc 56 base::PosixDynamicThreadPool* pool)
59 pool_(pool) {}
117 DCHECK(!terminated_) << "Thread pool is already terminated.";
126 "This thread pool is already terminated. Do not post new tasks.";
  /external/javassist/src/main/javassist/bytecode/analysis/
FramePrinter.java 80 ConstPool pool = info.getConstPool(); local
103 stream.println(pos + ": " + InstructionPrinter.instructionString(iterator, pos, pool));
  /external/javassist/src/main/javassist/convert/
TransformReadField.java 42 static String isField(ClassPool pool, ConstPool cp, CtClass fclass,
48 CtClass c = pool.get(cp.getFieldrefClassName(index));
  /external/valgrind/main/memcheck/
mc_include.h 70 /* Memory pool. Nb: first two fields must match core's VgHashNode. */
74 Addr pool; // pool identifier member in struct:_MC_Mempool
75 SizeT rzB; // pool red-zone size
76 Bool is_zeroed; // allocations from this pool are zeroed
77 VgHashTable chunks; // chunks associated with this pool
89 void MC_(create_mempool) ( Addr pool, UInt rzB, Bool is_zeroed );
90 void MC_(destroy_mempool) ( Addr pool );
91 void MC_(mempool_alloc) ( ThreadId tid, Addr pool,
93 void MC_(mempool_free) ( Addr pool, Addr addr )
    [all...]

Completed in 1472 milliseconds

1 2 3 45 6 7 8 91011