HomeSort by relevance Sort by last modified time
    Searched full:signal (Results 1 - 25 of 2094) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clearsilver/man/man3/
cSignal.3 14 cSignal - send signal to one waiting thread.
25 cond - condition variable to send signal on.
28 Sends a signal to one thread waiting on condition
cBroadcast.3 14 cBroadcast - broadcast signal to all waiting threads.
28 Broadcasts a signal to all threads waiting on condition
cWait.3 14 cWait - wait a condition variable signal.
30 Waits for a signal on condition variable <cond>.
  /external/qemu/distrib/sdl-1.2.12/src/events/
SDL_quit.c 27 #include <signal.h>
37 /* Reset the signal handler */
38 signal(sig, SDL_HandleSIG);
40 /* Signal a quit interrupt */
52 ohandler = signal(SIGINT, SDL_HandleSIG);
54 signal(SIGINT, ohandler);
55 ohandler = signal(SIGTERM, SDL_HandleSIG);
57 signal(SIGTERM, ohandler);
68 ohandler = signal(SIGINT, SIG_DFL);
70 signal(SIGINT, ohandler)
    [all...]
  /external/kernel-headers/original/asm-generic/
signal.h 13 #define SIG_SETMASK 2 /* for setting the signal mask */
23 #define SIG_DFL ((__force __sighandler_t)0) /* default signal handling */
24 #define SIG_IGN ((__force __sighandler_t)1) /* ignore signal */
25 #define SIG_ERR ((__force __sighandler_t)-1) /* error return from signal */
  /external/stlport/etc/
std_headers_c_h.txt 5 signal.h
  /external/webkit/WebKit/qt/docs/webkitsnippets/
qtwebkit_qwebinspector_snippet.cpp 13 connect(page, SIGNAL(webInspectorTriggered(QWebElement)), inspector, SLOT(show()));
  /external/elfutils/m4/
intdiv0.m4 21 #include <signal.h>
30 /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */
41 signal (SIGFPE, sigfpe_handler);
42 /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */
44 signal (SIGTRAP, sigfpe_handler);
46 /* Linux/SPARC yields signal SIGILL. */
48 signal (SIGILL, sigfpe_handler);
71 [Define if integer division by zero raises signal SIGFPE.])
  /external/bluetooth/glib/docs/reference/gobject/
tut_gsignal.xml 2 <chapter id="chapter-signal">
9 Closures are central to the concept of asynchronous signal delivery
36 writing Python code and one of your Python callbacks receives a signal from
78 which have a pretty minimal API or the even simpler <function><link linkend="g-signal-connect">g_signal_connect</link></function>
170 <sect1 id="signal">
177 from the X server and generates a GTK+ event under the form of a signal emission
182 Each signal is registered in the type system together with the type on which
184 to the signal on a given type instance when they register a closure to be
185 invoked upon the signal emission. Users can also emit the signal by themselves
    [all...]
  /external/bluetooth/glib/gobject/
gsignal.h 1 /* GObject - GLib Type, Object, Parameter and Signal Library
40 * arrays of parameter values to signal emissions into C language callback
43 * signal system.
48 * @ihint: Signal invocation hint, see #GSignalInvocationHint.
50 * the instance on which the signal was emitted.
51 * @param_values: the instance on which the signal was emitted, followed by the
55 * A simple function pointer to get invoked when the signal is emitted. This
56 * allows you to tie a hook to the signal type, so that it will trap all
57 * emissions of that signal, from any object.
61 * Returns: whether it wants to stay connected. If it returns %FALSE, the signal
    [all...]
  /bionic/linker/
debugger.c 33 #include <signal.h>
55 signal(SIGUSR1, SIG_IGN);
80 signal(n, SIG_IGN);
85 signal(SIGILL, debugger_signal_handler);
86 signal(SIGABRT, debugger_signal_handler);
87 signal(SIGBUS, debugger_signal_handler);
88 signal(SIGFPE, debugger_signal_handler);
89 signal(SIGSEGV, debugger_signal_handler);
90 signal(SIGSTKFLT, debugger_signal_handler);
91 signal(SIGPIPE, debugger_signal_handler)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/
SDL_fatal.c 24 /* General fatal signal handling code for SDL */
28 #include <signal.h>
33 /* This installs some signal handlers for the more common fatal signals,
40 signal(sig, SIG_DFL);
61 /* Set a handler for any fatal signal not already handled */
85 ohandler = signal(SDL_fatal_signals[i], SDL_Parachute);
87 signal(SDL_fatal_signals[i], ohandler);
96 /* Remove a handler for any fatal signal handled */
112 ohandler = signal(SDL_fatal_signals[i], SIG_DFL);
114 signal(SDL_fatal_signals[i], ohandler)
    [all...]
  /external/tcpdump/
setsignal.c 33 #include <signal.h>
45 * An OS-independent signal() with, whenever possible, partial BSD
46 * semantics, i.e. the signal handler is restored following service
47 * of the signal, but system calls are *not* restarted, so that if
48 * "pcap_breakloop()" is called in a signal handler in a live capture,
53 * We use "sigaction()" if available. We don't specify that the signal
57 * while "signal()" has traditional semantics, so we use "sigset()"; it
58 * might cause system calls to be restarted for the signal, however.
65 * Otherwise, we use "signal()" - which means we might get traditional
67 * signal handler is reset to SIG_DFL and the signal is not blocked
    [all...]
  /external/svox/pico/lib/
picosig.h 19 * Signal Generation PU - Header file
31 * <b> Pico Signal Generation module </b>\n
33 * Pico Sig is the PU that makes the parametric representation produce a speech signal.
34 * The PU receives parametric vectors and translates them into signal vectors.
37 * NOTE : "picosig" includes logically "picosig2" module, that is the DSP implementation of the signal generation.
  /frameworks/base/libs/rs/
rsLocklessFifo.h 42 class Signal {
44 Signal();
45 ~Signal();
65 Signal mSignalToWorker;
66 Signal mSignalToControl;
  /external/stlport/stlport/
signal.h 23 /* evc3 and evc4 don't have signal.h */
26 # include_next <signal.h>
28 # include _STLP_NATIVE_C_HEADER(signal.h)
  /external/kernel-headers/original/asm-arm/
sigcontext.h 5 * Signal context structure - contains all info to do with the state
6 * before the signal handler was invoked. Note: only add new entries
  /external/quake/quake/src/QW/client/
notes.txt 9 wake up on alarms or input signal
10 if on input signal, set skipnextalrm
  /bionic/libc/kernel/common/linux/
signal.h 15 #include <asm/signal.h>
  /external/bluetooth/glib/
gobject-2.0.pc.in 7 Description: GLib Type, Object, Parameter and Signal Library
  /external/dbus/doc/
introspect.dtd 10 <!ELEMENT interface (method|signal|property|annotation)*>
16 <!ELEMENT signal (arg|annotation)*>
17 <!ATTLIST signal name CDATA #REQUIRED>
23 while signal and error arguments SHOULD not (since there's no point).
  /external/dbus/test/
test-segfault.c 3 #include <signal.h>
  /external/stlport/test/unit/
signal_header_test.c 8 #include <signal.h>
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
signal.h 15 #include <asm/signal.h>
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
signal.h 15 #include <asm/signal.h>

Completed in 311 milliseconds

1 2 3 4 5 6 7 8 91011>>