Searched defs:pending (Results 1 - 25 of 98) sorted by relevance

1234

/external/chromium_org/third_party/skia/dm/
H A DDMReporter.cpp19 const int32_t pending = SK_ANNOTATE_UNPROTECTED_READ(fPending) - 1; local
22 status.printf("%s%d tasks left", FLAGS_verbose ? "\n" : kSkOverwriteLine, pending);
/external/skia/dm/
H A DDMReporter.cpp19 const int32_t pending = SK_ANNOTATE_UNPROTECTED_READ(fPending) - 1; local
22 status.printf("%s%d tasks left", FLAGS_verbose ? "\n" : kSkOverwriteLine, pending);
/external/aac/libSBRenc/src/
H A Dresampler.h126 int pending; /*! number of pending output samples */ member in struct:__anon264
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dserver_backed_state_keys_broker.h54 // or pending retrieval.
58 // string if state keys are unavailable or pending retrieval.
63 // Whether state key retrieval is pending.
64 bool pending() const { return !initial_retrieval_completed_; } function in class:policy::ServerBackedStateKeysBroker
83 // Whether a request for state keys is pending.
92 // List of pending one-shot state key request callbacks.
/external/chromium_org/net/quic/test_tools/
H A Ddelayed_verify_strike_register_client.cc43 vector<VerifyArgs> pending; local
44 pending_verifications_.swap(pending);
45 for (vector<VerifyArgs>::const_iterator it = pending.begin(),
46 end = pending.end(); it != end; ++it) {
/external/chromium_org/chrome/browser/chromeos/drive/
H A Djob_queue.cc60 size_t pending = 0; local
62 pending += queue_[i].size();
63 return base::StringPrintf("pending: %d, running: %d",
64 static_cast<int>(pending),
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_resource_buffer.h151 * Information about pending DMA uploads.
160 boolean pending; member in struct:svga_buffer::__anon13127
170 * Context that has the pending DMA to this buffer.
176 * Linked list head, used to gather all buffers with pending dma uploads on
177 * a context. It is only valid if the dma.pending is set above.
/external/jemalloc/src/
H A Dtsd.c41 bool pending[MALLOC_TSD_CLEANUPS_MAX], again; local
45 pending[i] = true;
50 if (pending[i]) {
51 pending[i] = cleanups[i]();
52 if (pending[i])
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_resource_buffer.h151 * Information about pending DMA uploads.
160 boolean pending; member in struct:svga_buffer::__anon26700
170 * Context that has the pending DMA to this buffer.
176 * Linked list head, used to gather all buffers with pending dma uploads on
177 * a context. It is only valid if the dma.pending is set above.
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DSubscription.java30 subscribed, unconfigured, pending, none enum constant in enum:Subscription.State
/external/bison/lib/
H A Dsigprocmask.c187 /* Set of currently blocked and pending signals. */
207 sigset_t pending = 0; local
212 pending |= 1U << sig;
213 *set = pending;
/external/chromium_org/chrome/browser/spellchecker/
H A Dfeedback_unittest.cc143 std::vector<Misspelling> pending = feedback_.GetAllMisspellings(); local
144 for (std::vector<Misspelling>::const_iterator it = pending.begin();
145 it != pending.end();
/external/chromium_org/google_apis/gaia/
H A Dmerge_session_helper.cc59 bool pending = !accounts_.empty(); local
61 if (pending) {
67 // We have a pending log in request for an account followed by
78 // Signal a logout to be the next thing to do unless the pending
80 if (!pending || !accounts_.front().empty())
91 if (!pending)
/external/chromium_org/gpu/command_buffer/client/
H A Dcmd_buffer_helper.cc71 int32 pending = local
74 if (pending > 0 && pending >= limit) {
80 limit -= pending;
/external/chromium_org/pdf/
H A Dpaint_manager.cc149 // If no flush is pending, we need to do a manual call to get back to the
150 // main thread. We may have one already pending, or we may need to schedule.
165 std::vector<pp::Rect> pending; local
169 // Apply any pending resize. Setting the graphics to this class must happen
201 client_->OnPaint(update.paint_rects, &ready, &pending);
203 if (ready.empty() && pending.empty()) {
209 if (pending.empty()) {
213 aggregator_.SetIntermediateResults(temp_ready, pending);
239 aggregator_.SetIntermediateResults(ready_later, pending);
298 // is pending,
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechSynthesis.cpp88 bool SpeechSynthesis::pending() const function in class:WebCore::SpeechSynthesis
170 // Start the next utterance if we just finished one and one was pending.
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DSocketStreamHandle.cpp252 bool pending; local
255 pending = bytesWritten != static_cast<int>(m_buffer.firstBlockSize());
263 } while (!pending && !m_buffer.isEmpty());
/external/chromium_org/v8/src/
H A Dhydrogen-range-analysis.cc94 // Pop next pending block from stack.
95 Pending pending = stack.RemoveLast(); local
96 RollBackTo(pending.last_changed_range());
97 block = pending.block();
/external/qemu/hw/android/goldfish/
H A Dinterrupt.c19 INTERRUPT_STATUS = 0x00, // number of pending interrupts
105 uint32_t pending = s->level & s->irq_enabled; local
107 if(pending & (1U << i))
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_ucd.c635 ** Description discard all of UCD packets in security pending queue
642 /* clean up any security pending UCD */
656 ** Return TRUE if any pending UCD info request
663 BOOLEAN pending = FALSE; local
695 pending = TRUE;
715 pending = TRUE;
724 return (pending);
731 ** Description enqueue outgoing UCD packet into security pending queue
777 ** Description dequeue UCD packet from security pending queue and
800 ** Description dequeue UCD packet from security pending queu
[all...]
/external/chromium_org/cc/resources/
H A Dtile_priority.h60 TilePriority(const TilePriority& active, const TilePriority& pending) { argument
62 pending.resolution == HIGH_RESOLUTION)
65 pending.resolution == LOW_RESOLUTION)
71 active.required_for_activation || pending.required_for_activation;
73 if (active.priority_bin < pending.priority_bin) {
76 } else if (active.priority_bin > pending.priority_bin) {
77 priority_bin = pending.priority_bin;
78 distance_to_visible = pending.distance_to_visible;
82 std::min(active.distance_to_visible, pending.distance_to_visible);
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dcloud_print_response_parser.cc257 base::DictionaryValue* pending = NULL; local
259 if (local_settings_dict->GetDictionary("pending", &pending)) {
260 settings_to_parse = pending;
/external/chromium_org/content/browser/devtools/
H A Drender_view_devtools_agent_host.cc147 RenderViewHost* pending,
149 RenderViewDevToolsAgentHost* agent_host = FindAgentHost(pending);
146 OnCancelPendingNavigation( RenderViewHost* pending, RenderViewHost* current) argument
/external/chromium_org/gin/modules/
H A Dmodule_registry.cc76 scoped_ptr<PendingModule> pending(new PendingModule);
77 pending->id = id;
78 pending->dependencies = dependencies;
79 pending->factory.Reset(args.isolate(), factory);
83 registry->AddPendingModule(args.isolate(), pending.Pass());
154 scoped_ptr<PendingModule> pending) {
155 const std::string pending_id = pending->id;
156 const std::vector<std::string> pending_dependencies = pending->dependencies;
157 AttemptToLoad(isolate, pending.Pass());
196 bool ModuleRegistry::CheckDependencies(PendingModule* pending) { argument
153 AddPendingModule(Isolate* isolate, scoped_ptr<PendingModule> pending) argument
209 Load(Isolate* isolate, scoped_ptr<PendingModule> pending) argument
234 AttemptToLoad(Isolate* isolate, scoped_ptr<PendingModule> pending) argument
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dquery_manager.h49 bool pending() const { function in class:gpu::gles2::QueryManager::Query
173 // Processes pending queries. Returns false if any queries are pointing
177 // True if there are pending queries.
180 // Processes pending transfer queries. Returns false if any queries are
184 // True if there are pending transfer queries.
212 // Removes a query from the queue of pending queries.

Completed in 5412 milliseconds

1234