HomeSort by relevance Sort by last modified time
    Searched defs:signal (Results 101 - 125 of 436) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/v8/tools/testrunner/local/
commands.py 30 import signal namespace
44 os.kill(pid, signal.SIGTERM)
  /external/kernel-headers/original/asm-mips/
user.h 47 long int signal; /* signal causing core dump */ member in struct:user
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
user.h 36 long int signal; member in struct:user
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
user.h 36 long int signal; member in struct:user
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
user.h 36 long int signal; member in struct:user
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/
user.h 36 long int signal; member in struct:user
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
user.h 36 long int signal; member in struct:user
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threadsignals.py 1 """PyUnit testing that threads honor our signal semantics"""
4 import signal namespace
11 raise unittest.SkipTest, "Can't test signal on %s" % sys.platform
18 usr1 = signal.signal(signal.SIGUSR1, for_usr1)
19 usr2 = signal.signal(signal.SIGUSR2, for_usr2)
20 alrm = signal.signal(signal.SIGALRM, for_alrm
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threadsignals.py 1 """PyUnit testing that threads honor our signal semantics"""
4 import signal namespace
11 raise unittest.SkipTest, "Can't test signal on %s" % sys.platform
18 usr1 = signal.signal(signal.SIGUSR1, for_usr1)
19 usr2 = signal.signal(signal.SIGUSR2, for_usr2)
20 alrm = signal.signal(signal.SIGALRM, for_alrm
    [all...]
  /system/core/include/utils/
Condition.h 63 // Signal the condition variable, allowing one thread to continue.
64 void signal();
65 // Signal the condition variable, allowing one or all threads to continue.
66 void signal(WakeUpType type) { function in class:android::Condition
68 signal();
73 // Signal the condition variable, allowing all threads to continue.
134 inline void Condition::signal() { function in class:android::Condition
  /cts/suite/audio_quality/test_description/processing/
calc_delay.py 21 import scipy.signal namespace
48 # This is faster than signal.correlate as there is no need to process
  /external/chromium_org/build/util/lib/common/
util.py 10 import signal namespace
111 os.kill(pid, signal.SIGTERM)
  /external/chromium_org/chrome/test/chromedriver/
util.py 10 import signal namespace
121 os.kill(pid, signal.SIGTERM)
  /external/chromium_org/chrome/test/functional/
webpagereplay.py 15 import signal namespace
41 # Signal masks on Linux are inherited from parent processes. If anything
44 # to terminate it. Running this signal handler before execing should fix that
47 signal.signal(signal.SIGINT, signal.SIG_DFL)
227 self.replay_process.send_signal(signal.SIGINT)
  /external/chromium_org/chromeos/dbus/
image_burner_client.cc 85 // Handles burn_finished signal and calls |handler|.
86 void OnBurnFinished(dbus::Signal* signal) {
87 dbus::MessageReader reader(signal);
94 LOG(ERROR) << "Invalid signal: " << signal->ToString();
101 // Handles burn_progress_udpate signal and calls |handler|.
102 void OnBurnProgressUpdate(dbus::Signal* signal) {
103 dbus::MessageReader reader(signal);
123 signal << " failed."; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_run_results.py 31 import signal namespace
43 INTERRUPTED_EXIT_STATUS = signal.SIGINT + 128
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
mac.py 32 import signal namespace
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
strace_profiler.py 8 import signal namespace
179 self._proc.send_signal(signal.SIGINT)
  /external/dropbear/
chansession.h 86 int signal; member in struct:SigMap
  /external/flac/libFLAC/
stream_encoder_framing.c 466 const FLAC__int32 *signal = subframe->data; local
475 if(!FLAC__bitwriter_write_raw_int32(bw, signal[i], subframe_bps))
  /external/guava/guava-tests/test/com/google/common/collect/
InternersTest.java 74 WeakReference<Integer> signal = new WeakReference<Integer>(canonical); local
79 if (signal.get() == null) { // it was collected
  /external/llvm/utils/Misc/
zkill 124 import signal namespace
126 value = getattr(signal, name)
129 error('unknown signal: %r' % name)
131 import signal namespace
133 for name in dir(signal):
135 kSignals[name[3:]] = getattr(signal, name)
145 help="Name of the signal to use (default=%default)",
149 help="List known signal names",
212 # Figure out the signal to use.
213 signal = kSignals[opts.signalName
    [all...]
  /external/llvm/utils/lit/lit/
TestRunner.py 2 import os, signal, subprocess, sys namespace
42 if exitCode == -signal.SIGINT:
221 if res == -signal.SIGINT:
  /external/valgrind/unittest/
test_utils.h 124 // This class does not implement a signal-wait synchronization
129 // synchronization primitive before signal() or after wait().
134 void signal() { function in class:StealthNotification
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
scanresults.cpp 22 connect(closeButton, SIGNAL(clicked()), this, SLOT(close()));
23 connect(scanButton, SIGNAL(clicked()), this, SLOT(scanRequest()));
25 SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this,
77 QString ssid, bssid, freq, signal, flags; local
91 signal = (*it).mid(pos);
103 item->setText(3, signal);

Completed in 386 milliseconds

1 2 3 45 6 7 8 91011>>