Searched defs:pool (Results 101 - 125 of 311) sorted by relevance

1234567891011>>

/external/protobuf/src/google/protobuf/compiler/
H A Dplugin.cc106 DescriptorPool pool; local
108 const FileDescriptor* file = pool.BuildFile(request.proto_file(i));
120 pool.FindFileByName(request.file_to_generate(i));
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DDexPool.java32 package org.jf.dexlib2.writer.pool;
43 import org.jf.dexlib2.writer.pool.ProtoPool.Key;
H A DPoolClassDef.java32 package org.jf.dexlib2.writer.pool;
H A DProtoPool.java32 package org.jf.dexlib2.writer.pool;
37 import org.jf.dexlib2.writer.pool.ProtoPool.Key;
/external/valgrind/main/coregrind/
H A Dm_poolalloc.c2 /*--- A simple pool (memory) allocator implementation. m_poolalloc.c --- */
36 UWord nrRef; /* nr reference to this pool allocator */
38 UWord nPerPool; /* # elems per pool */
39 void* (*alloc)(const HChar*, SizeT); /* pool allocator */
40 const HChar* cc; /* pool allocator's cc */
41 void (*free)(void*); /* pool allocator's free-er */
90 /* The freelist is empty. Allocate a new pool and put all the new
96 UWord* pool; local
99 pool = pa->alloc( pa->cc, pa->elemSzB * pa->nPerPool );
100 vg_assert(pool);
[all...]
/external/valgrind/main/memcheck/tests/
H A Dleak-pool.c15 struct pool struct
23 allocate_from_pool(struct pool *p, size_t n)
32 struct pool *
35 struct pool *p = malloc(sizeof(struct pool));
100 struct pool *p = allocate_pool();
H A Dmempool.c30 } pool; typedef in typeref:struct:_pool
32 pool *make_pool()
34 pool *p;
37 p = (pool *)mmap(0, sizeof(pool), PROT_READ|PROT_WRITE|PROT_EXEC,
43 p = (pool *)malloc(sizeof(pool));
53 void push(pool *p)
70 void pop(pool *p)
83 void destroy_pool(pool *
[all...]
/external/bluetooth/bluedroid/gki/common/
H A Dgki_debug.c93 GKI_TRACE("pool:%4u free %4u cur %3u max %3u total%3u", i, gki_cb.com.freeq[i].size,
168 void gki_print_buffer_statistics(FP_PRINT print, INT16 pool) argument
175 if (pool > GKI_NUM_TOTAL_BUF_POOLS || pool < 0)
177 print("Not a valid Buffer pool\n");
181 size = gki_cb.com.freeq[pool].size;
182 maxbuffs = gki_cb.com.freeq[pool].total;
185 pool, gki_cb.com.freeq[pool].size,
186 gki_cb.com.freeq[pool]
[all...]
/external/chromium_org/base/
H A Dsequence_checker_unittest.cc68 pool()->Shutdown();
74 const scoped_refptr<SequencedWorkerPool>& pool() { function in class:base::__anon2441::SequenceCheckerTest
75 return pool_owner_->pool();
80 pool()->PostNamedSequencedWorkerTask(
161 pool()->FlushForTesting();
174 pool()->FlushForTesting();
179 pool()->FlushForTesting();
249 pool()->FlushForTesting();
276 pool()->FlushForTesting();
303 pool()
[all...]
/external/chromium_org/base/threading/
H A Dworker_pool_posix.cc70 base::PosixDynamicThreadPool* pool)
72 pool_(pool) {}
142 DCHECK(!terminated_) << "Thread pool is already terminated.";
158 "This thread pool is already terminated. Do not post new tasks.";
69 WorkerThread(const std::string& name_prefix, base::PosixDynamicThreadPool* pool) argument
H A Dworker_pool_posix_unittest.cc22 explicit PosixDynamicThreadPoolPeer(PosixDynamicThreadPool* pool) argument
23 : pool_(pool) {}
52 // thread pool, since the first one might finish executing before the subsequent
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dbrowser_policy_connector_chromeos.cc69 // Helper that returns a new SequencedTaskRunner backed by the blocking pool.
72 base::SequencedWorkerPool* pool = BrowserThread::GetBlockingPool(); local
73 CHECK(pool);
74 return pool->GetSequencedTaskRunnerWithShutdownBehavior(
75 pool->GetSequenceToken(), base::SequencedWorkerPool::SKIP_ON_SHUTDOWN);
/external/chromium_org/chrome/browser/chromeos/system_logs/
H A Ddebug_log_writer.cc33 base::SequencedWorkerPool* pool = content::BrowserThread::GetBlockingPool(); local
34 return pool->GetSequencedTaskRunnerWithShutdownBehavior(
35 pool->GetNamedSequenceToken(sequence_name),
/external/chromium_org/content/browser/renderer_host/media/
H A Dvideo_capture_buffer_pool_unittest.cc23 Buffer(const scoped_refptr<VideoCaptureBufferPool> pool, argument
27 : pool_(pool), id_(id), data_(data), size_(size) {}
/external/chromium_org/content/common/gpu/client/
H A Dgl_helper_benchmark.cc302 base::mac::ScopedNSAutoreleasePool pool; local
/external/chromium_org/net/dns/
H A Ddns_socket_pool.cc174 SocketVector& pool = pools_[server_index]; local
175 STLDeleteElements(&pool);
182 SocketVector& pool = pools_[server_index]; local
185 if (pool.size() == 0) {
186 LOG(WARNING) << "No DNS sockets available in pool " << server_index << "!";
190 if (pool.size() < kAllocateMinSize) {
192 << " sockets to choose from, but only have " << pool.size()
193 << " in pool " << server_index << ".";
196 unsigned socket_index = base::RandInt(0, pool.size() - 1);
197 DatagramClientSocket* socket = pool[socket_inde
211 SocketVector& pool = pools_[server_index]; local
[all...]
/external/chromium_org/remoting/host/
H A Dhost_main.cc162 base::mac::ScopedNSAutoreleasePool pool; local
/external/chromium_org/remoting/host/setup/
H A Dme2me_native_messaging_host_main.cc70 base::mac::ScopedNSAutoreleasePool pool; local
/external/chromium_org/sandbox/win/src/
H A Dhandle_closer_test.cc45 // Used by the thread pool tests.
157 // Run a thread pool inside a sandbox without a CSRSS connection.
164 HANDLE pool = NULL; local
168 CHECK(::RegisterWaitForSingleObject(&pool, event, ThreadPoolTask, event,
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DBasicShapeFunctions.cpp43 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> valueForCenterCoordinate(CSSValuePool& pool, const RenderStyle& style, const BasicShapeCenterCoordinate& center, EBoxOrient orientation) argument
46 return pool.createValue(center.length(), style);
50 return pool.createValue(Pair::create(pool.createIdentifierValue(keyword), pool.createValue(center.length(), style), Pair::DropIdenticalValues));
53 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> basicShapeRadiusToCSSValue(CSSValuePool& pool, const RenderStyle& style, const BasicShapeRadius& radius) argument
57 return pool.createValue(radius.value(), style);
59 return pool.createIdentifierValue(CSSValueClosestSide);
61 return pool.createIdentifierValue(CSSValueFarthestSide);
70 CSSValuePool& pool local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/wayland/
H A Dnative_shm.c88 struct wl_shm_pool *pool; local
109 pool = wl_shm_create_pool(shmdpy->wl_shm, wsh.fd, wsh.size);
110 buffer = wl_shm_pool_create_buffer(pool, 0, width, height,
112 wl_shm_pool_destroy(pool);
/external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
H A Dpython_descriptor.cc152 const google::protobuf::DescriptorPool* pool; member in struct:google::protobuf::python::__anon14786
185 field_descriptor = self->pool->FindFieldByName(full_field_name);
205 self->pool->FindExtensionByName(full_field_name);
290 cdescriptor_pool->pool = GetDescriptorPool();
317 "Couldn't build proto file into descriptor pool!");
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dimporter.h165 inline const DescriptorPool* pool() const { function in class:google::protobuf::compiler::Importer
/external/chromium_org/third_party/skia/src/utils/
H A DSkTaskGroup.cpp104 ThreadPool* pool = (ThreadPool*)arg; local
108 AutoLock lock(&pool->fReady);
109 while (pool->fWork.isEmpty()) {
110 if (pool->fDraining) {
113 pool->fReady.wait();
115 pool->fWork.pop(&work);
/external/chromium_org/third_party/webrtc/base/
H A Dsocketpool.cc27 StreamCache::StreamCache(StreamPool* pool) : pool_(pool) { argument
159 // Only one socket can be used from this "pool" at a time
237 StreamPool* pool, LoggingSeverity level, const std::string& label,
239 : pool_(pool), level_(level), label_(label), binary_mode_(binary_mode) {
236 LoggingPoolAdapter( StreamPool* pool, LoggingSeverity level, const std::string& label, bool binary_mode) argument

Completed in 3508 milliseconds

1234567891011>>