Searched defs:called (Results 1 - 25 of 150) sorted by relevance

123456

/external/libcxx/test/std/utilities/time/time.duration/time.duration.cons/
H A Dconvert_overflow.pass.cpp22 bool called = false; variable
27 called = true;
35 assert(called);
/external/libbrillo/brillo/dbus/
H A Ddbus_param_reader_unittest.cc22 bool called = false; local
23 auto callback = [&called]() { called = true; };
25 EXPECT_TRUE(called);
33 bool called = false; local
34 auto callback = [&called](int param1) {
36 called = true;
40 EXPECT_TRUE(called);
51 bool called = false; local
52 auto callback = [&called](boo
72 bool called = false; local
92 bool called = false; local
113 bool called = false; local
131 bool called = false; local
146 bool called = false; local
162 bool called = false; local
181 bool called = false; local
215 bool called = false; local
236 bool called = false; local
[all...]
/external/libbrillo/brillo/message_loops/
H A Dglib_message_loop_unittest.cc42 int called = 0; local
45 Bind([&called] { called++; }));
48 EXPECT_LT(2, called);
55 int called = 0; local
58 Bind([&called, fd] {
59 if (!called)
61 called++;
65 EXPECT_LT(2, called);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
H A D18-1.c26 * -> raise SIGABRT, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-10.c26 * -> raise SIGPIPE, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-11.c26 * -> raise SIGQUIT, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-12.c26 * -> raise SIGSEGV, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-13.c26 * -> raise SIGTERM, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-14.c26 * -> raise SIGTSTP, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-15.c26 * -> raise SIGTTIN, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-16.c26 * -> raise SIGTTOU, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-17.c26 * -> raise SIGUSR1, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-18.c26 * -> raise SIGUSR2, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-19.c26 * -> raise SIGPOLL, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-2.c26 * -> raise SIGALRM, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-20.c26 * -> raise SIGPROF, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-21.c26 * -> raise SIGSYS, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-22.c26 * -> raise SIGTRAP, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-23.c26 * -> raise SIGURG, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-24.c26 * -> raise SIGVTALRM, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-25.c26 * -> raise SIGXCPU, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-26.c26 * -> raise SIGXFSZ, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-3.c26 * -> raise SIGBUS, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-4.c26 * -> raise SIGCHLD, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");
H A D18-5.c26 * -> raise SIGCONT, and check the function has been called.
28 * The test fails if the function is not called
46 static volatile sig_atomic_t called = 0; variable
50 called = 1;
76 if (called) {
78 "The signal handler has been called before signal was raised");
89 if (!called) {
90 fprintf(stderr, "The sa_handler was not called\n");

Completed in 328 milliseconds

123456