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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/services/tests/servicestests/src/com/android/server/
AlarmManagerServiceTest.java 82 SparseArray<ArrayList<Alarm>> pending, ArrayList<Alarm> alarmsToDeliver) {
84 AlarmManagerService.findAllUnrestrictedPendingBackgroundAlarmsLockedInner(pending,
90 SparseArray<ArrayList<Alarm>> pending = new SparseArray<>(); local
94 runCheckAllPendingAlarms(pending, alarmsToDeliver);
96 assertEquals("", toString(pending));
102 SparseArray<ArrayList<Alarm>> pending = new SparseArray<>(); local
104 addPendingAlarm(pending, 100001, "a1", false);
108 runCheckAllPendingAlarms(pending, alarmsToDeliver);
110 assertEquals("[100001: a1]", toString(pending));
116 SparseArray<ArrayList<Alarm>> pending = new SparseArray<>() local
130 SparseArray<ArrayList<Alarm>> pending = new SparseArray<>(); local
163 SparseArray<ArrayList<Alarm>> pending = new SparseArray<>(); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_reset.c 40 uint32_t pending; local
49 * nonzero active/pending only if reset has been encountered and completed.
56 &pending);
72 if (pending != 0) {
85 uint32_t pending; local
89 &pending);
93 if (active > 0 || pending > 0)
  /external/tensorflow/tensorflow/core/common_runtime/
pending_counts_test.cc 37 EXPECT_EQ(c.pending(h[id]), id);
43 // The dead count is no longer updated once pending is 0.
54 EXPECT_EQ(c.pending(h[1]), 0);
55 EXPECT_EQ(c.pending(h[3]), 1);
56 EXPECT_EQ(c.pending(h[5]), 1);
57 EXPECT_EQ(c.pending(h[170]), 156);
73 EXPECT_EQ(c.pending(h[id]), c2.pending(h[id]));
90 EXPECT_EQ(c.pending(h), count);
92 EXPECT_EQ(c.pending(h), count - 1)
147 int pending, dead; local
    [all...]
pending_counts.h 27 // PendingCounts is an internal helper class to keep track of pending and
52 // The pending count for the node > 0.
54 // The pending count for the node == 0, but the node has not
97 c->pending = pending_count;
103 c->pending = pending_count;
117 DCHECK_EQ(pending(h), 0);
132 c->pending = 1;
136 c->pending = 1;
139 int pending(Handle h) { function in class:tensorflow::PendingCounts
143 return c->pending;
271 uint8 pending : 3; member in struct:tensorflow::PendingCounts::PackedCounts
277 uint32 pending; member in struct:tensorflow::PendingCounts::LargeCounts
    [all...]
  /external/valgrind/none/tests/
pending.stdout.exp 6 6: checking SIGHUP still pending...
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
BluetoothDiscoverableTimeoutReceiver.java 40 PendingIntent pending = PendingIntent.getBroadcast( local
45 if (pending != null) {
47 alarmManager.cancel(pending);
50 pending = PendingIntent.getBroadcast(
53 alarmManager.set(AlarmManager.RTC_WAKEUP, alarmTime, pending);
61 PendingIntent pending = PendingIntent.getBroadcast( local
63 if (pending != null) {
68 alarmManager.cancel(pending);
  /frameworks/base/services/core/java/com/android/server/display/
BrightnessIdleJob.java 45 JobInfo pending = jobScheduler.getPendingJob(JOB_ID); local
52 if (pending != null && !pending.equals(jobInfo)) {
54 pending = null;
57 if (pending == null) {
  /system/chre/platform/shared/include/chre/target_platform/
platform_wifi_base.h 41 static void scanResponseCallback(bool pending, uint8_t errorCode);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
12-1.c 19 * The child process is created with no pending signal
23 * -> send those signals and wait they are pending
25 * -> check the signals are blocked but not pending in the new process.
27 * The test fails if the signals are pending or if
59 sigset_t mask, pending; local
88 /* Make the signals pending */
102 ret = sigpending(&pending);
106 "failed to examine pending signal set");
109 ret = sigismember(&pending, SIGUSR1);
117 ret = sigismember(&pending, SIGUSR2)
    [all...]
  /external/selinux/libselinux/utils/
getsebool.c 17 int i, get_all = 0, rc = 0, active, pending, len = 0, opt; local
84 pending = security_get_boolean_pending(names[i]);
85 if (pending < 0) {
86 fprintf(stderr, "Error getting pending value for %s\n",
98 if (pending != active) {
99 printf("%s --> %s pending: %s\n", alt_name,
101 (pending ? "on" : "off"));
  /hardware/google/av/codec2/vndk/bufferpool/
BufferStatus.cpp 110 std::list<BufferId> &pending, std::list<BufferId> &posted) {
111 if (mValid && pending.size() > 0) {
113 avail = std::min(avail, pending.size());
116 BufferId id = pending.front();
127 pending.pop_front();
136 std::list<BufferId> &pending, std::list<BufferId> &posted) {
139 size_t numPending = pending.size();
143 BufferId id = pending.front();
154 pending.pop_front();
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/
template_23-1.in 28 * The test fails if signal handler if reentered or signal is not pending when raised again.
90 sigset_t pending;
109 /* check the signal is pending */
110 ret = sigpending( &pending );
114 UNRESOLVED( ret, "Failed to get pending signal set" );
117 ret = sigismember( &pending, SIGNAL );
121 FAILED( "signal is not pending" );
  /external/mesa3d/src/gallium/drivers/swr/
swr_fence.h 38 unsigned pending; member in struct:swr_fence
67 return swr_fence(fence_handle)->pending;
  /libcore/ojluni/src/main/java/java/util/concurrent/
CountedCompleter.java 40 * triggered and there are no remaining pending actions.
46 * except that multiple <em>pending</em> completions may be necessary
49 * Unless initialized otherwise, the {@linkplain #getPendingCount pending
53 * #tryComplete}, if the pending action count is nonzero, it is
60 * internal bookkeeping. In particular, the identities of pending
62 * subclasses that do record some or all pending tasks or their
153 * setPendingCount(2); // must set pending count before fork
168 * {@code tryComplete}) the pending count is set to one:
176 * setPendingCount(1); // only one pending
190 * and add a pending count for each fork. Additionally, because no tas
418 volatile int pending; field in class:CountedCompleter
    [all...]
  /packages/services/BuiltInPrintService/src/com/android/bips/discovery/
DelayedDiscovery.java 63 DiscoveredPrinter pending = mPending.remove(printer.getUri());
64 if (pending != null) {
65 if (DEBUG) Log.d(TAG, "Delay complete for " + pending);
66 printerFound(pending);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
23-1.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
88 sigset_t pending; local
104 /* check the signal is pending */
105 ret = sigpending(&pending);
108 UNRESOLVED(ret, "Failed to get pending signal set");
111 ret = sigismember(&pending, SIGNAL);
114 FAILED("signal is not pending");
23-10.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
88 sigset_t pending; local
104 /* check the signal is pending */
105 ret = sigpending(&pending);
108 UNRESOLVED(ret, "Failed to get pending signal set");
111 ret = sigismember(&pending, SIGNAL);
114 FAILED("signal is not pending");
23-11.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
88 sigset_t pending; local
104 /* check the signal is pending */
105 ret = sigpending(&pending);
108 UNRESOLVED(ret, "Failed to get pending signal set");
111 ret = sigismember(&pending, SIGNAL);
114 FAILED("signal is not pending");
23-12.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
88 sigset_t pending; local
104 /* check the signal is pending */
105 ret = sigpending(&pending);
108 UNRESOLVED(ret, "Failed to get pending signal set");
111 ret = sigismember(&pending, SIGNAL);
114 FAILED("signal is not pending");
23-13.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
88 sigset_t pending; local
104 /* check the signal is pending */
105 ret = sigpending(&pending);
108 UNRESOLVED(ret, "Failed to get pending signal set");
111 ret = sigismember(&pending, SIGNAL);
114 FAILED("signal is not pending");
23-14.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
88 sigset_t pending; local
104 /* check the signal is pending */
105 ret = sigpending(&pending);
108 UNRESOLVED(ret, "Failed to get pending signal set");
111 ret = sigismember(&pending, SIGNAL);
114 FAILED("signal is not pending");
23-15.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
88 sigset_t pending; local
104 /* check the signal is pending */
105 ret = sigpending(&pending);
108 UNRESOLVED(ret, "Failed to get pending signal set");
111 ret = sigismember(&pending, SIGNAL);
114 FAILED("signal is not pending");
23-16.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
88 sigset_t pending; local
104 /* check the signal is pending */
105 ret = sigpending(&pending);
108 UNRESOLVED(ret, "Failed to get pending signal set");
111 ret = sigismember(&pending, SIGNAL);
114 FAILED("signal is not pending");
23-17.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
88 sigset_t pending; local
104 /* check the signal is pending */
105 ret = sigpending(&pending);
108 UNRESOLVED(ret, "Failed to get pending signal set");
111 ret = sigismember(&pending, SIGNAL);
114 FAILED("signal is not pending");
23-18.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
88 sigset_t pending; local
104 /* check the signal is pending */
105 ret = sigpending(&pending);
108 UNRESOLVED(ret, "Failed to get pending signal set");
111 ret = sigismember(&pending, SIGNAL);
114 FAILED("signal is not pending");

Completed in 1219 milliseconds

1 2 3 4 5 6 7 8 91011>>