HomeSort by relevance Sort by last modified time
    Searched refs:pending (Results 26 - 50 of 368) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
23-18.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-19.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
78 sigset_t pending; local
94 /* check the signal is pending */
95 ret = sigpending(&pending);
98 UNRESOLVED(ret, "Failed to get pending signal set");
101 ret = sigismember(&pending, SIGNAL);
104 FAILED("signal is not pending");
23-2.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-20.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-21.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-22.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-23.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-24.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-25.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-26.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-3.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-4.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-5.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-6.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-7.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-8.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
23-9.c 27 * The test fails if signal handler if reentered or signal is not pending when raised again.
86 sigset_t pending; local
102 /* check the signal is pending */
103 ret = sigpending(&pending);
106 UNRESOLVED(ret, "Failed to get pending signal set");
109 ret = sigismember(&pending, SIGNAL);
112 FAILED("signal is not pending");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/jemalloc/src/
tsd.c 42 bool pending[MALLOC_TSD_CLEANUPS_MAX], again; local
46 pending[i] = true;
51 if (pending[i]) {
52 pending[i] = cleanups[i]();
53 if (pending[i])
  /external/python/cpython2/Lib/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/python/cpython3/Lib/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])
  /development/scripts/gdb/
dalvik.gdb 27 set breakpoint pending on
34 set breakpoint pending auto
  /external/aac/libSBRenc/src/
resampler.h 137 int pending; /*! number of pending output samples */ member in struct:__anon15118
  /external/perfetto/src/trace_processor/
event_tracker.cc 162 PendingUpidResolutionCounter pending;
163 pending.row = idx;
164 pending.utid = static_cast<UniqueTid>(ref);
165 pending.name_id = name_id;
166 pending_upid_resolution_counter_.emplace_back(pending);
183 PendingUpidResolutionInstant pending;
184 pending.row = idx;
185 pending.utid = static_cast<UniqueTid>(ref);
186 pending_upid_resolution_instant_.emplace_back(pending);
  /external/u-boot/drivers/serial/
serial_nulldev.c 43 .pending = nulldev_serial_pending,

Completed in 188 milliseconds

12 3 4 5 6 7 8 91011>>