Searched refs:pending (Results 1 - 25 of 200) sorted by relevance

12345678

/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/third_party/skia/src/utils/
H A DSkTaskGroup.cpp25 static void Add(SkRunnable* task, int32_t* pending) { argument
29 gGlobal->add(task, pending);
32 static void Wait(int32_t* pending) { argument
34 SkASSERT(*pending == 0);
37 while (sk_acquire_load(pending) > 0) { // Pairs with sk_atomic_dec here or in Loop.
44 // (They may still be working on it, so we can't assert *pending == 0 here.)
52 sk_atomic_dec(work.pending); // Release pairs with the sk_acquire_load() just above.
66 int32_t* pending; // then sk_atomic_dec(pending) afterwards. member in struct:__anon15361::ThreadPool::Work
93 void add(SkRunnable* task, int32_t* pending) { argument
[all...]
/external/valgrind/main/none/tests/
H A Dpending.stdout.exp6 6: checking SIGHUP still pending...
/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());
202 bool ModuleRegistry::CheckDependencies(PendingModule* pending) { argument
153 AddPendingModule(Isolate* isolate, scoped_ptr<PendingModule> pending) argument
215 Load(Isolate* isolate, scoped_ptr<PendingModule> pending) argument
240 AttemptToLoad(Isolate* isolate, scoped_ptr<PendingModule> pending) argument
[all...]
H A Dmodule_registry.h61 scoped_ptr<PendingModule> pending);
84 void Load(v8::Isolate* isolate, scoped_ptr<PendingModule> pending);
89 bool CheckDependencies(PendingModule* pending);
90 bool AttemptToLoad(v8::Isolate* isolate, scoped_ptr<PendingModule> pending);
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechSynthesis.idl30 readonly attribute boolean pending;
/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/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dphp.js161 if (stream.sol() && state.pending && state.pending != '"' && state.pending != "'") state.pending = null;
168 if (state.pending == '"' || state.pending == "'") {
169 while (!stream.eol() && stream.next() != state.pending) {}
171 } else if (state.pending && stream.pos < state.pending.end) {
172 stream.pos = state.pending
[all...]
/external/chromium_org/cc/resources/
H A Dtile_priority.h59 TilePriority(const TilePriority& active, const TilePriority& pending) { argument
61 pending.resolution == HIGH_RESOLUTION)
64 pending.resolution == LOW_RESOLUTION)
70 active.required_for_activation || pending.required_for_activation;
72 if (active.priority_bin < pending.priority_bin) {
75 } else if (active.priority_bin > pending.priority_bin) {
76 priority_bin = pending.priority_bin;
77 distance_to_visible = pending.distance_to_visible;
81 std::min(active.distance_to_visible, pending.distance_to_visible);
/external/chromium_org/third_party/skia/dm/
H A DDMReporter.cpp17 const int32_t pending = SK_ANNOTATE_UNPROTECTED_READ(fPending) - 1; local
20 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/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/aac/libSBRenc/src/
H A Dresampler.h126 int pending; /*! number of pending output samples */ member in struct:__anon264
/external/qemu/hw/input/
H A Dpckbd.c120 uint8_t pending; member in struct:KBDState
141 if (s->pending) {
144 if (s->pending == KBD_PENDING_AUX) {
163 s->pending |= KBD_PENDING_KBD;
165 s->pending &= ~KBD_PENDING_KBD;
174 s->pending |= KBD_PENDING_AUX;
176 s->pending &= ~KBD_PENDING_AUX;
282 if (s->pending == KBD_PENDING_AUX)
349 qemu_put_8s(f, &s->pending);
361 qemu_get_8s(f, &s->pending);
[all...]
/external/qemu/telephony/
H A Dsysdeps_posix.c36 void* pending[ SYS_MAX_QUEUE ]; member in struct:__anon30246
52 queue->pending[ queue->end++ ] = item;
64 if ( queue->pending[nn] == item ) {
65 queue->pending[nn] = queue->pending[nn+count-1];
78 return queue->pending[ queue->start++ ];
89 char pending; member in struct:SysChannelRec_
114 channel->pending = 0;
176 /* queue of pending channels */
289 if (channel->pending) {
[all...]
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dmake_token_matcher.py65 def choose_selection_pos(self, cases, pending):
66 candidates = [pos for pos in pending if all(alternative.isalpha() for alternative in [c.identifier[pos] for c in cases])]
71 def inspect_array(self, cases, pending):
73 if pending:
74 common = [pos for pos in pending
91 next_pending = list(set(pending) - set(common))
96 pos = self.choose_selection_pos(cases, pending)
97 next_pending = filter(lambda p: p != pos, pending)
/external/chromium_org/chrome/browser/resources/options/
H A Deasy_unlock_turn_off_overlay.js15 PENDING: 'pending',
138 * @param {boolean} pending Whether there is a pending turn-off call.
141 setUpTurnOffUI_: function(pending) {
150 this.setSpinnerVisible_(pending);
151 $('easy-unlock-turn-off-confirm').disabled = 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/ui/file_manager/file_manager/background/js/
H A Dfile_operation_handler.js240 var pending;
258 pending = event.taskId in this.pendingItems_;
268 if (!pending)
276 pending = event.taskId in this.pendingItems_;
296 if (!pending || event.reason === 'ERROR')
298 if (pending)
305 * Shows the pending item.
/external/qemu/hw/arm/
H A Darmv7m_nvic.c97 /* Make pending IRQ active. */
172 if (s->gic.irq_state[irq].pending) {
178 if (s->gic.irq_state[ARMV7M_EXCP_SYSTICK].pending)
181 if (s->gic.irq_state[ARMV7M_EXCP_PENDSV].pending)
184 if (s->gic.irq_state[ARMV7M_EXCP_NMI].pending)
214 if (s->gic.irq_state[ARMV7M_EXCP_USAGE].pending) val |= (1 << 12);
215 if (s->gic.irq_state[ARMV7M_EXCP_MEM].pending) val |= (1 << 13);
216 if (s->gic.irq_state[ARMV7M_EXCP_BUS].pending) val |= (1 << 14);
217 if (s->gic.irq_state[ARMV7M_EXCP_SVC].pending) val |= (1 << 15);
310 s->gic.irq_state[ARMV7M_EXCP_PENDSV].pending
[all...]
/external/qemu/distrib/zlib-1.2.8/
H A Ddeflate.c407 s->pending = 0;
450 int ZEXPORT deflatePending (strm, pending, bits)
451 unsigned *pending;
456 if (pending != Z_NULL)
457 *pending = strm->state->pending;
516 if (err == Z_BUF_ERROR && s->pending == 0)
624 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
637 * Flush as much pending output as possible. All deflate() output goes
649 len = s->pending;
[all...]
/external/zlib/src/
H A Ddeflate.c407 s->pending = 0;
450 int ZEXPORT deflatePending (strm, pending, bits)
451 unsigned *pending;
456 if (pending != Z_NULL)
457 *pending = strm->state->pending;
516 if (err == Z_BUF_ERROR && s->pending == 0)
624 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
637 * Flush as much pending output as possible. All deflate() output goes
649 len = s->pending;
[all...]
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_midi.c93 pMIDIStream->pending = EAS_FALSE;
137 pMIDIStream->pending = EAS_TRUE;
149 pMIDIStream->pending = EAS_FALSE;
166 pMIDIStream->pending = EAS_TRUE;
175 pMIDIStream->pending = EAS_FALSE;
185 pMIDIStream->pending = EAS_TRUE;
211 pMIDIStream->pending = EAS_FALSE;
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_midi.c93 pMIDIStream->pending = EAS_FALSE;
137 pMIDIStream->pending = EAS_TRUE;
149 pMIDIStream->pending = EAS_FALSE;
166 pMIDIStream->pending = EAS_TRUE;
175 pMIDIStream->pending = EAS_FALSE;
185 pMIDIStream->pending = EAS_TRUE;
211 pMIDIStream->pending = EAS_FALSE;
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_midi.c93 pMIDIStream->pending = EAS_FALSE;
137 pMIDIStream->pending = EAS_TRUE;
149 pMIDIStream->pending = EAS_FALSE;
166 pMIDIStream->pending = EAS_TRUE;
175 pMIDIStream->pending = EAS_FALSE;
185 pMIDIStream->pending = EAS_TRUE;
211 pMIDIStream->pending = EAS_FALSE;

Completed in 6576 milliseconds

12345678