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

1 2 3 4 5 6 7 8 91011>>

  /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/valgrind/main/none/tests/
pending.stdout.exp 6 6: checking SIGHUP still pending...
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDiscoverableTimeoutReceiver.java 42 PendingIntent pending = PendingIntent.getBroadcast( local
47 if (pending != null) {
49 alarmManager.cancel(pending);
52 pending = PendingIntent.getBroadcast(
55 alarmManager.set(AlarmManager.RTC_WAKEUP, alarmTime, pending);
63 PendingIntent pending = PendingIntent.getBroadcast( local
65 if (pending != null) {
70 alarmManager.cancel(pending);
  /external/chromium_org/gin/modules/
module_registry.cc 76 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) {
    [all...]
module_registry.h 61 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/cc/resources/
tile_priority.h 60 TilePriority(const TilePriority& active, const TilePriority& pending) {
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/third_party/WebKit/Source/modules/speech/
SpeechSynthesis.idl 31 readonly attribute boolean pending;
  /frameworks/rs/cpu_ref/linkloader/utils/
traits.h 26 char pending; member in struct:TypeTraits::AlignmentTest
  /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])
  /system/core/toolbox/
getsebool.c 17 int i, get_all = 0, rc = 0, active, pending, len = 0, opt; local
82 pending = security_get_boolean_pending(names[i]);
83 if (pending < 0) {
84 fprintf(stderr, "Error getting pending value for %s\n",
89 if (pending != active) {
90 printf("%s --> %s pending: %s\n", names[i],
92 (pending ? "on" : "off"));
  /libcore/luni/src/main/java/java/util/concurrent/
CountedCompleter.java 11 * triggered and there are no remaining pending actions.
17 * except that multiple <em>pending</em> completions may be necessary
20 * Unless initialized otherwise, the {@linkplain #getPendingCount pending
24 * #tryComplete}, if the pending action count is nonzero, it is
31 * internal bookkeeping. In particular, the identities of pending
33 * subclasses that do record some or all pending tasks or their
124 * setPendingCount(2); // must set pending count before fork
139 * {@code tryComplete}) the pending count is set to one:
146 * setPendingCount(1); // only one pending
160 * and add a pending count for each fork. Additionally, because no tas
389 volatile int pending; field in class:CountedCompleter
    [all...]
  /external/chromium_org/third_party/skia/dm/
DMReporter.cpp 19 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/
DMReporter.cpp 19 const int32_t pending = SK_ANNOTATE_UNPROTECTED_READ(fPending) - 1; local
22 status.printf("%s%d tasks left", FLAGS_verbose ? "\n" : kSkOverwriteLine, pending);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_import.py 23 pending = [names]
24 while pending:
25 node = pending.pop()
31 pending.append(node.children[0])
33 pending.extend(node.children[::-2])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_import.py 23 pending = [names]
24 while pending:
25 node = pending.pop()
31 pending.append(node.children[0])
33 pending.extend(node.children[::-2])
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/
pending_changes.js 13 * Creates a PendingChanges object with no pending changes.
26 * Returns the pending font setting change for the specified script and family,
31 * @return {?string} The pending font setting, like "My Cyrillic SansSerif Font"
41 * Returns the pending font size setting change, or null if it doesn't exist.
45 * @return {?number} The pending font size setting in pixels, or null if it
53 * Sets the pending font change for the specified script and family.
68 * Sets the pending font size change.
81 * Commits the pending changes to Chrome. After this function is called, there
82 * are no pending changes.
114 * Clears the pending font changes for a single script
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSearch.java 105 PendingIntent pending = local
107 if (pending == null || !launchPendingIntent(pending, launchUriIntent)) {
159 private boolean launchPendingIntent(PendingIntent pending, Intent fillIn) {
161 pending.send(this, Activity.RESULT_OK, fillIn);
164 Log.i(TAG, "Pending intent cancelled: " + pending);
  /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/aac/libSBRenc/src/
resampler.h 126 int pending; /*! number of pending output samples */ member in struct:__anon4884
  /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)
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/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)
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/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)
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/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)
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/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)

Completed in 1296 milliseconds

1 2 3 4 5 6 7 8 91011>>