/external/valgrind/main/memcheck/ |
mc_malloc_wrappers.c | 69 MC_Mempool::pool. */ 492 /*--- Memory pool stuff. ---*/ 502 void MC_(create_mempool)(Addr pool, UInt rzB, Bool is_zeroed) 508 pool, rzB, is_zeroed); 513 mp = VG_(HT_lookup)(MC_(mempool_list), (UWord)pool); 515 VG_(tool_panic)("MC_(create_mempool): duplicate pool creation"); 519 mp->pool = pool; 537 void MC_(destroy_mempool)(Addr pool) 543 VG_(message)(Vg_UserMsg, "destroy_mempool(0x%lx)\n", pool); [all...] |
/external/webkit/Tools/TestWebKitAPI/mac/ |
main.mm | 30 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 42 [pool drain];
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
DirectClassFile.java | 94 * {@code null-ok;} the constant pool; only ever {@code null} 95 * before the constant pool is successfully parsed 97 private StdConstantPool pool; field in class:DirectClassFile 278 return pool; 320 * list of constant pool indices for classes, which are in turn 323 * constant pool entries of type {@code Class}. 335 if (pool == null) { 336 throw new IllegalStateException("pool not yet initialized"); 339 return new DcfTypeList(bytes, offset, size, pool, observer); 472 pool = cpParser.getPool() 570 private final StdConstantPool pool; field in class:DirectClassFile.DcfTypeList [all...] |
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...] |
/development/samples/USB/AdbTest/src/com/android/adb/ |
AdbDevice.java | 38 // pool of requests for the OUT endpoint 40 // pool of requests for the IN endpoint 79 // get an OUT request from our pool 92 // return an OUT request to the pool 99 // get an IN request from the pool 242 // put request back into the appropriate pool
|
/external/apache-http/src/org/apache/http/impl/conn/ |
AbstractPooledConnAdapter.java | 46 * Abstract adapter from pool {@link AbstractPoolEntry entries} to 49 * The connection in the pool entry is used to initialize the base class. 51 * pool entry. {@link #shutdown shutdown} and {@link #close close} 52 * will clear the tracked route in the pool entry and call the 65 /** The wrapped pool entry. */ 73 * @param entry the pool entry for the connection being wrapped
|
/external/proguard/src/proguard/ |
InputReader.java | 51 * Fills the given program class pool and library class pool by reading 77 // which are then put in the class pool by a class pool filler. 99 // which are then put in the class pool by a class pool filler.
|
/external/proguard/src/proguard/classfile/instruction/ |
ConstantInstruction.java | 32 * constant pool. 55 * Creates a new ConstantInstruction with the given opcode and constant pool 65 * Creates a new ConstantInstruction with the given opcode, constant pool 273 * Returns the constant pool index size for this instruction. 294 * Computes the required constant pool index size for this instruction's 295 * constant pool index.
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/ |
symbols.c | 77 Scope *NewScopeInPool(MemoryPool *pool) 81 lScope = mem_Alloc(pool, sizeof(Scope)); 82 lScope->pool = pool; 94 mem_AddCleanup(pool, unlinkScope, lScope); 157 lSymb = (Symbol *) mem_Alloc(fScope->pool, sizeof(Symbol));
|
/frameworks/base/services/java/com/android/server/ |
EntropyService.java | 36 * <p>When a Linux system starts up, the entropy pool associated with 40 * this effect, it's helpful to carry the entropy pool information across 114 * Add additional information to the kernel entropy pool. The 117 * because, while it doesn't increase the "quality" of the entropy pool, 118 * it mixes more bits into the pool, which gives us a higher degree 146 Slog.w(TAG, "Unable to add device specific data to the entropy pool", e);
|
/frameworks/base/core/tests/coretests/src/android/database/sqlite/ |
DatabaseConnectionPoolTest.java | 71 // MAX pool size should be set to MAX_CONN 75 // pool size should be one - since only one should be allocated for the above get() 97 * get all connections from the pool and ask for one more. 114 // pool is maxed out and no free connections. ask for one more connection 118 // pool size should remain at MAX_CONN 132 // all objects in the pool should be freed now 156 // pool is maxed out and no free connections. ask for one more connection 171 // pool size should remain at MAX_CONN 196 // all objects in the pool should be freed now 213 * make sure the pool has at least one free connection even after this get() [all...] |
/external/javassist/src/main/javassist/bytecode/ |
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...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
Executors.java | 45 * Creates a thread pool that reuses a fixed number of threads 52 * execute subsequent tasks. The threads in the pool will exist 55 * @param nThreads the number of threads in the pool 56 * @return the newly created thread pool 66 * Creates a thread pool that reuses a fixed number of threads 74 * needed to execute subsequent tasks. The threads in the pool will 78 * @param nThreads the number of threads in the pool 80 * @return the newly created thread pool 134 * Creates a thread pool that creates new threads as needed, but 140 * thread will be created and added to the pool. Threads that hav [all...] |
ThreadPoolExecutor.java | 29 * Executors#newCachedThreadPool} (unbounded thread pool, with 31 * (fixed size thread pool) and {@link 39 * <dt>Core and maximum pool sizes</dt> 42 * pool size (see {@link #getPoolSize}) 53 * create a fixed-size thread pool. By setting maximumPoolSize to an 55 * allow the pool to accommodate an arbitrary number of concurrent 56 * tasks. Most typically, core and maximum pool sizes are set only 66 * you construct the pool with a non-empty queue. </dd> 82 * <dd>If the pool currently has more than corePoolSize threads, 85 * provides a means of reducing resource consumption when the pool i [all...] |
/external/llvm/include/llvm/CodeGen/ |
ObjectCodeEmitter.h | 44 /// CPLocations - This is a map of constant pool indices to offsets from the 45 /// start of the section for that constant pool index. 48 /// CPSections - This is a map of constant pool indices to the Section 49 /// containing the constant pool entry for that index. 148 /// emitConstantPool - For each constant pool entry, figure out which section 154 /// the constant pool that was last emitted with the emitConstantPool method. 158 /// the constant pool that was last emitted with the emitConstantPool method.
|
/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...] |
/external/proguard/src/proguard/shrink/ |
ClassShrinker.java | 34 * This ClassVisitor removes constant pool entries and class members that 71 // Shrink the arrays for constant pool, interfaces, fields, methods, 78 // Shrinking the constant pool also sets up an index map. 96 // and remap their references to the constant pool. 101 // Remap all constant pool references. 319 * constant pool. 332 // Shift the used constant pool entries together. 351 // Clear the remaining constant pool elements. 362 * Removes all indices that point to unused constant pool entries
|
/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/chrome/browser/ui/cocoa/ |
cocoa_test_helper.mm | 95 // Recycle the pool to clean up any stuff that was put on the 96 // autorelease pool due to window or windowcontroller closures. 140 base::mac::ScopedNSAutoreleasePool pool; 178 // Must create a pool here because [NSApp windows] has created an array 180 base::mac::ScopedNSAutoreleasePool pool;
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
BerInputStream.java | 796 private Object[][] pool; field in class:BerInputStream 799 if (pool == null) { 800 pool = new Object[2][10]; 804 for (; i < pool[0].length && pool[0][i] != null; i++) { 805 if (pool[0][i] == key) { 806 pool[1][i] = entry; 811 if (i == pool[0].length) { 812 Object[][] newPool = new Object[pool[0].length * 2][2]; 813 System.arraycopy(pool[0], 0, newPool[0], 0, pool[0].length) [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...] |
/external/icu4c/tools/genrb/ |
genrb.c | 22 #include "ucmndata.h" /* TODO: for reading the pool bundle */ 211 "\t --writePoolBundle write a pool.res file with all of the keys of all input bundles\n" 212 "\t --usePoolBundle [path-to-pool.res] point to keys from the pool.res keys pool bundle if they are available there;\n" 213 "\t makes .res files smaller but dependent on the pool bundle\n" 298 fprintf(stderr, "unable to create an empty bundle for the pool keys: %s\n", u_errorName(status)); 301 const char *poolResName = "pool.res"; 314 const char *poolResName = "pool.res"; 338 fprintf(stderr, "unable to open pool bundle file %s\n", theCurrentFileName) [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
StdConstantPool.java | 35 * @param size the size of the pool; this corresponds to the 37 * always at least one more than the actual size of the constant pool, 136 throw new ExceptionWithContext("invalid constant pool index " +
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
StdConstantPool.java | 35 * @param size the size of the pool; this corresponds to the 37 * always at least one more than the actual size of the constant pool, 136 throw new ExceptionWithContext("invalid constant pool index " +
|
/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...] |