Searched refs:handler (Results 1 - 25 of 143) sorted by relevance

123456

/haiku-buildtools/gcc/gcc/testsuite/gcc.target/powerpc/
H A Ddarwin-ehreturn-1.c13 void *handler; variable
21 __builtin_eh_return (offset, handler);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/init/
H A Dstatic3.C5 static void (*handler)(); member in struct:T
13 if (T::handler != T::func)
20 void (*T::handler)() = func; variable
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dtypedef2.C12 C::func *handler; local
/haiku-buildtools/gcc/libstdc++-v3/testsuite/18_support/
H A Dunexpected_handler.cc26 void handler() { std::abort(); } function
30 auto prev = std::set_unexpected(handler);
31 VERIFY( prev != handler );
33 VERIFY( curr == handler );
H A Dterminate_handler.cc26 void handler() { std::abort(); } function
30 auto prev = std::set_terminate(handler);
31 VERIFY( prev != handler );
33 VERIFY( curr == handler );
H A Dnew_handler.cc25 void handler() { throw std::bad_alloc(); } function
29 auto prev = std::set_new_handler(handler);
32 VERIFY( curr == handler );
/haiku-buildtools/legacy/gcc/libchill/
H A Dexh.c39 /* An action with a handler:
71 __ch_link_handler (handler)
72 struct __ch_handler *handler;
74 handler->prev = __getexceptionStack ();
75 __setexceptionStack (handler);
79 __ch_unlink_handler (handler)
80 struct __ch_handler *handler;
82 __setexceptionStack (handler->prev);
98 * search exceptionstack for last handler of caused exception,
100 * jump to handler wit
111 register struct __ch_handler *handler = __getexceptionStack(); local
[all...]
/haiku-buildtools/legacy/gcc/gcc/cp/
H A Dnew.cc37 set_new_handler (new_handler handler) argument
40 __new_handler = handler;
H A Dnew1.cc50 new_handler handler = __new_handler; local
51 if (! handler)
55 handler ();
80 new_handler handler = __new_handler; local
81 if (! handler)
83 handler ();
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/ext/
H A Dcleanup-2.C8 static void handler(void *p __attribute__((unused))) function
15 int x __attribute__((cleanup (handler)));
H A Dcleanup-3.C3 /* Verify that the cleanup handler receives the proper contents
12 handler(int *p) function
25 int r __attribute__((cleanup (handler)));
H A Dcleanup-4.C11 handler(int *p) function
26 int dummy __attribute__((cleanup (handler))) = i;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dcleanup-2.c8 static void handler(void *p __attribute__((unused))) function
15 int x __attribute__((cleanup (handler)));
H A Dsetjmp-1.c18 jmp_buf handler; local
23 if (setjmp (handler))
29 set_float_handler (&handler);
H A Dcleanup-3.c3 /* Verify that the cleanup handler receives the proper contents
12 handler(int *p) function
25 int r __attribute__((cleanup (handler)));
H A Dcleanup-4.c11 handler(int *p) function
26 int dummy __attribute__((cleanup (handler))) = i;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dpr45206.c12 void *handler = __builtin_frob_return_addr ((&cur_context)->ra); local
14 __builtin_eh_return (offset, handler);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/18_support/quick_exit/
H A Dquick_exit.cc27 void handler() function
39 std::at_quick_exit (handler);
/haiku-buildtools/binutils/ld/testsuite/ld-mmix/
H A Dloc10.s1 Boot GETA $0,Boot %set dynamic- and forced-trap handler
H A Dloc9.s2 Boot GETA $0,Boot %set dynamic- and forced-trap handler
/haiku-buildtools/gcc/libstdc++-v3/libsupc++/
H A Dnew_handler.cc46 std::set_new_handler (new_handler handler) throw() argument
50 __atomic_exchange (&__new_handler, &handler, &prev_handler,
55 __new_handler = handler;
63 new_handler handler; variable
65 __atomic_load (&__new_handler, &handler, __ATOMIC_ACQUIRE);
68 handler = __new_handler;
70 return handler;
H A Dnew_opnt.cc45 new_handler handler = std::get_new_handler (); variable
46 if (! handler)
50 handler ();
H A Dnew_op.cc52 new_handler handler = std::get_new_handler (); local
53 if (! handler)
55 handler ();
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dnet36.C10 typedef void (A::*handler) (X*); typedef
14 void setHandler(handler);
/haiku-buildtools/gcc/libvtv/testsuite/libvtv.cc/
H A Dpovray-derived.cc39 Handler *handler; member in struct:POVMS_MessageReceiver::HandlerNode
55 receiver->handler = new MemberHandler<int>(xx);
60 receiver->handler->print();

Completed in 790 milliseconds

123456