HomeSort by relevance Sort by last modified time
    Searched defs:pending (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /bionic/libc/bionic/
__cxa_guard.cpp 57 const static int pending = 0x2; variable
70 const static int pending = letoh32(0x100); variable
75 // 0 -> pending, return 1
76 // pending -> waiting, wait and return 0
81 if (__bionic_cmpxchg(0, pending, &gv->state) == 0) {
85 __bionic_cmpxchg(pending, waiting, &gv->state); // Indicate there is a waiter
98 // pending -> ready
102 if (__bionic_cmpxchg(pending, ready, &gv->state) == 0) {
  /external/chromium_org/net/quic/test_tools/
delayed_verify_strike_register_client.cc 43 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/dm/
DMReporter.cpp 17 const int32_t pending = SK_ANNOTATE_UNPROTECTED_READ(fPending) - 1; local
20 status.printf("%s%d tasks left", FLAGS_verbose ? "\n" : kSkOverwriteLine, pending);
  /development/ndk/platforms/android-3/include/linux/
workqueue.h 22 unsigned long pending; member in struct:work_struct
40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
  /external/aac/libSBRenc/src/
resampler.h 126 int pending; /*! number of pending output samples */ member in struct:__anon4889
  /external/chromium_org/chrome/browser/chromeos/drive/
job_queue.cc 60 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/chrome/browser/chromeos/policy/
server_backed_state_keys_broker.h 54 // 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
87 // Whether a request for state keys is pending.
96 // List of pending one-shot state key request callbacks.
  /external/jemalloc/src/
tsd.c 41 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])
  /bionic/tests/
signal_test.cpp 165 // There should be no pending signals.
166 sigset_t pending; local
167 sigemptyset(&pending);
168 ASSERT_EQ(0, sigpending(&pending));
170 EXPECT_FALSE(sigismember(&pending, i)) << i;
177 // We should now have a pending SIGALRM but nothing else.
178 sigemptyset(&pending);
179 ASSERT_EQ(0, sigpending(&pending));
181 EXPECT_EQ((i == SIGALRM), sigismember(&pending, i));
190 // ...and check that we now receive our pending SIGALRM
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
cmd_buffer_helper.cc 71 int32 pending = local
74 if (pending > 0 && pending >= limit) {
80 limit -= pending;
  /external/chromium_org/pdf/
paint_manager.cc 149 // 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, a Flush callback could have come in before this callback wa
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/network/
SocketStreamHandle.cpp 258 bool pending; local
261 pending = bytesWritten != static_cast<int>(m_buffer.firstBlockSize());
269 } while (!pending && !m_buffer.isEmpty());
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_resource_buffer.h 151 * Information about pending DMA uploads.
160 boolean pending; member in struct:svga_buffer::__anon18752
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/chromium_org/third_party/skia/src/utils/
SkTaskGroup.cpp 25 static void Add(SkRunnable* task, int32_t* pending) {
29 gGlobal->add(task, pending);
32 static void Wait(int32_t* pending) {
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:__anon19979::ThreadPool::Work
93 void add(SkRunnable* task, int32_t* pending) {
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_buffer.h 151 * Information about pending DMA uploads.
160 boolean pending; member in struct:svga_buffer::__anon7090
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.
  /developers/build/prebuilts/gradle/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 177 final LinkedList<File> pending = new LinkedList<File>(); local
180 pending.add(parent);
183 while (!pending.isEmpty()) {
185 final File file = pending.removeFirst();
188 Collections.addAll(pending, file.listFiles());
221 final LinkedList<File> pending = new LinkedList<File>(); local
224 pending.add(parent);
227 while (!pending.isEmpty() && result.getCount() < MAX_SEARCH_RESULTS) {
229 final File file = pending.removeFirst();
232 Collections.addAll(pending, file.listFiles())
    [all...]
  /developers/samples/android/content/documentsUi/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 177 final LinkedList<File> pending = new LinkedList<File>(); local
180 pending.add(parent);
183 while (!pending.isEmpty()) {
185 final File file = pending.removeFirst();
188 Collections.addAll(pending, file.listFiles());
221 final LinkedList<File> pending = new LinkedList<File>(); local
224 pending.add(parent);
227 while (!pending.isEmpty() && result.getCount() < MAX_SEARCH_RESULTS) {
229 final File file = pending.removeFirst();
232 Collections.addAll(pending, file.listFiles())
    [all...]
  /development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/
MyCloudProvider.java 177 final LinkedList<File> pending = new LinkedList<File>(); local
180 pending.add(parent);
183 while (!pending.isEmpty()) {
185 final File file = pending.removeFirst();
188 Collections.addAll(pending, file.listFiles());
221 final LinkedList<File> pending = new LinkedList<File>(); local
224 pending.add(parent);
227 while (!pending.isEmpty() && result.getCount() < MAX_SEARCH_RESULTS) {
229 final File file = pending.removeFirst();
232 Collections.addAll(pending, file.listFiles())
    [all...]
  /external/bison/lib/
sigprocmask.c 187 /* Set of currently blocked and pending signals. */
207 sigset_t pending = 0; local
212 pending |= 1U << sig;
213 *set = pending;
  /external/bluetooth/bluedroid/stack/l2cap/
l2c_ucd.c 635 ** 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 queue an
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
feedback_unittest.cc 143 std::vector<Misspelling> pending = feedback_.GetAllMisspellings(); local
144 for (std::vector<Misspelling>::const_iterator it = pending.begin();
145 it != pending.end();
  /external/chromium_org/cloud_print/gcp20/prototype/
cloud_print_response_parser.cc 257 base::DictionaryValue* pending = NULL; local
259 if (local_settings_dict->GetDictionary("pending", &pending)) {
260 settings_to_parse = pending;
261 settings_state = LocalSettings::PENDING;
  /external/chromium_org/gpu/command_buffer/service/
query_manager.h 48 bool pending() const { function in class:gpu::gles2::QueryManager::Query
172 // Processes pending queries. Returns false if any queries are pointing
176 // True if there are pending queries.
179 // Processes pending transfer queries. Returns false if any queries are
183 // True if there are pending transfer queries.
211 // Removes a query from the queue of pending queries.
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesis.cpp 87 bool SpeechSynthesis::pending() const function in class:blink::SpeechSynthesis
169 // Start the next utterance if we just finished one and one was pending.
  /external/chromium_org/v8/src/arm64/
delayed-masm-arm64.h 18 // - merge with the pending instruction and generate just one instruction.
19 // - emit the pending instruction and then generate the instruction (or set the
20 // pending instruction).
38 DCHECK(!pending());
66 bool pending() { return pending_ != kNone; } function in class:v8::internal::BASE_EMBEDDED
69 // potential pending instruction).
76 // Instructions which try to merge which the pending instructions.
82 // Emit the potential pending instruction.
84 // Reset the pending state.
127 // consistent with the pending one for stp/ldp we generate ldp/stp. Else
    [all...]

Completed in 697 milliseconds

1 2 3 4