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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
signal.cpp 29 #include <signal.h>
49 sighandler_t signal(int signum, sighandler_t handler) { function
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
signalbar.cpp 31 int signal; local
39 signal = 0 - (256 - index.data().toInt());
41 signal = index.data().toInt();
45 if (signal < opts.minimum)
47 else if (signal > opts.maximum)
50 opts.progress = signal;
52 opts.text = QString::number(signal) + " dBm";
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 1 import signal, subprocess, sys, time namespace
5 signal.signal(signal.SIGCHLD, signal.SIG_IGN)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 1 import signal, subprocess, sys, time namespace
5 signal.signal(signal.SIGCHLD, signal.SIG_IGN)
  /bionic/libc/include/android/
legacy_signal_inlines.h 40 /* Signal numbers start at 1, but bit positions start at 0. */
51 /* Signal numbers start at 1, but bit positions start at 0. */
63 /* Signal numbers start at 1, but bit positions start at 0. */
92 static __inline sighandler_t signal(int s, sighandler_t f) { function
  /external/v8/tools/testrunner/objects/
output.py 29 import signal namespace
45 # Timed out tests will have exit_code -signal.SIGTERM.
49 self.exit_code != -signal.SIGABRT)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
win_console_handler.py 12 import signal namespace
22 if sig == signal.CTRL_C_EVENT:
24 elif sig == signal.CTRL_BREAK_EVENT:
47 # Do nothing but wait for the signal
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
win_console_handler.py 12 import signal namespace
22 if sig == signal.CTRL_C_EVENT:
24 elif sig == signal.CTRL_BREAK_EVENT:
47 # Do nothing but wait for the signal
  /system/core/libsparse/
simg_dump.py 18 import getopt, posixpath, signal, struct, sys namespace
29 signal.signal(signal.SIGPIPE, signal.SIG_DFL)
  /development/ndk/platforms/android-3/include/
signal.h 35 #include <asm/signal.h>
48 /* _NSIG is used by the SIGRTMAX definition under <asm/signal.h>, however
109 static __inline__ __sighandler_t signal(int s, __sighandler_t f) function
  /development/ndk/platforms/android-8/include/
signal.h 35 #include <asm/signal.h>
49 /* _NSIG is used by the SIGRTMAX definition under <asm/signal.h>, however
111 static __inline__ __sighandler_t signal(int s, __sighandler_t f) function
  /development/testrunner/
run_command.py 20 import signal namespace
132 os.kill(pid[0], signal.SIGKILL)
  /external/lldb/test/functionalities/signal/
TestSendSignal.py 1 """Test that lldb command 'process signal SIGUSR1' to send a signal to the inferior works."""
3 import os, time, signal namespace
11 mydir = os.path.join("functionalities", "signal")
16 """Test that lldb command 'process signal SIGUSR1' sends a signal to the inferior process."""
22 """Test that lldb command 'process signal SIGUSR1' sends a signal to the inferior process."""
33 """Test that lldb command 'process signal SIGUSR1' sends a signal to the inferior process.""
    [all...]
  /external/lldb/test/pexpect-2.4/examples/
script.py 22 import signal, fcntl, termios, struct namespace
26 global_pexpect_instance = None # Used by signal handler
74 signal.signal(signal.SIGWINCH, sigwinch_passthrough)
  /external/lldb/test/unittest2/
signals.py 1 import signal namespace
15 installed_handler = signal.getsignal(signal.SIGINT)
38 default_handler = signal.getsignal(signal.SIGINT)
40 signal.signal(signal.SIGINT, _interrupt_handler)
47 initial = signal.getsignal(signal.SIGINT
    [all...]
  /external/openssh/openbsd-compat/
bsd-misc.h 99 /* wrapper for signal interface */
103 #define signal(a,b) mysignal(a,b) macro
  /external/skia/src/utils/
SkCondVar.cpp 87 void SkCondVar::signal() { function in class:SkCondVar
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
decim54.c 20 * Description:Decimation of 16kHz signal to 12.8kHz *
36 Word16 * sig, /* input: signal to downsampling */
37 Word16 * sig_d, /* output: downsampled signal */
68 Word16 sig16k[], /* input: signal to downsampling */
70 Word16 sig12k8[], /* output: decimated signal */
75 Word16 signal[L_FRAME16k + (2 * NB_COEF_DOWN)]; local
77 Copy(mem, signal, 2 * NB_COEF_DOWN);
79 Copy(sig16k, signal + (2 * NB_COEF_DOWN), lg);
83 Down_samp(signal + NB_COEF_DOWN, sig12k8, lg_down);
85 Copy(signal + lg, mem, 2 * NB_COEF_DOWN)
    [all...]
  /frameworks/base/libs/hwui/thread/
Signal.h 27 class Signal {
29 Signal(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mSignaled(false) { }
30 ~Signal() { }
32 void signal() { function in class:android::uirenderer::Signal
37 mCondition.signal(mType);
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
sync.h 49 void signal() { function in class:Condition
  /hardware/qcom/wlan/qcwcn/wifi_hal/
sync.h 84 void signal() { function in class:Condition
  /libcore/luni/src/main/java/java/util/concurrent/locks/
Condition.java 63 * <b>notEmpty.signal();</b>
77 * <b>notFull.signal();</b>
105 * {@linkplain #await waiting} and {@linkplain #signal signalling} methods.
161 * <li>Some other thread invokes the {@link #signal} method for this
196 * method return in response to a signal. In that case the implementation
197 * must ensure that the signal is redirected to another waiting thread, if
212 * <li>Some other thread invokes the {@link #signal} method for this
249 * <li>Some other thread invokes the {@link #signal} method for this
315 * method return in response to a signal, or over indicating the elapse
317 * must ensure that the signal is redirected to another waiting thread, i
440 void signal(); method in interface:Condition
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
signal.h 35 #include <asm/signal.h>
103 static __inline__ __sighandler_t signal(int s, __sighandler_t f) function
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
signal.h 35 #include <asm/signal.h>
103 static __inline__ __sighandler_t signal(int s, __sighandler_t f) function
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
signal.h 35 #include <asm/signal.h>
103 static __inline__ __sighandler_t signal(int s, __sighandler_t f) function

Completed in 810 milliseconds

1 2 3 4 5 6 7 8 91011>>