/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_tempfile.py | 6 import signal namespace 156 os.kill(pid, signal.SIGKILL) 378 "child process caught fatal signal %d" % -retval)
|
test_subprocess.py | 5 import signal namespace 730 @unittest.skipUnless(hasattr(signal, 'SIGALRM'), 731 "Requires signal.SIGALRM") 736 old_handler = signal.signal(signal.SIGALRM, handler) 737 self.addCleanup(signal.signal, signal.SIGALRM, old_handler) 744 signal.alarm(1 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_file2k.py | 6 import signal namespace 614 Also validates that Python signal handlers are run during the read. 618 before sending it a signal, confirming the signal was handled, 639 'import os, signal, sys ;' 640 'signal.signal(' 641 'signal.SIGINT, lambda s, f: sys.stderr.write("$\\n")) ;' 650 # Wait for the signal handler to be installed. 661 # loop waits for a bit before sending the first signal to increas [all...] |
test_os.py | 10 import signal namespace 749 # is started and running at a point where it could handle a signal. 793 self._kill(signal.SIGTERM) 819 # Allow time for the signal to be passed and the process to exit. 822 # Forcefully kill the process if we weren't able to signal it. 823 os.kill(proc.pid, signal.SIGINT) 843 self._kill_with_event(signal.CTRL_C_EVENT, "CTRL_C_EVENT") 846 self._kill_with_event(signal.CTRL_BREAK_EVENT, "CTRL_BREAK_EVENT") [all...] |
test_tempfile.py | 6 import signal namespace 156 os.kill(pid, signal.SIGKILL) 378 "child process caught fatal signal %d" % -retval)
|
test_subprocess.py | 5 import signal namespace 730 @unittest.skipUnless(hasattr(signal, 'SIGALRM'), 731 "Requires signal.SIGALRM") 736 old_handler = signal.signal(signal.SIGALRM, handler) 737 self.addCleanup(signal.signal, signal.SIGALRM, old_handler) 744 signal.alarm(1 [all...] |
/external/chromium_org/build/android/pylib/ |
android_commands.py | 17 import signal namespace 493 self.KillAll('adbd', signal=signal.SIGTERM, with_su=True) 670 def KillAll(self, process, signal=9, with_su=False): 675 signal: signal to use, 9 (SIGKILL) by default. 683 cmd = 'kill -%d %s' % (signal, ' '.join(pids)) [all...] |
/external/chromium_org/dbus/ |
message.cc | 374 // Signal implementation. 376 Signal::Signal(const std::string& interface_name, 385 Signal::Signal() : Message() { 388 Signal* Signal::FromRawMessage(DBusMessage* raw_message) { 391 Signal* signal = new Signal; local [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
NoiseGenerator.java | 375 float result, signal, weight;
local 384 signal = musgraveData.offset - FastMath.abs(abstractNoiseFunc.executeSigned(x, y, z));
385 signal *= signal;
386 result = signal;
393 weight = signal * musgraveData.gain;
399 signal = musgraveData.offset - FastMath.abs(abstractNoiseFunc.executeSigned(x, y, z));
400 signal *= signal;
401 signal *= weight; 412 float result, signal, weight, rmd; local [all...] |
/external/qemu/ |
gdbstub.c | 53 /* Map target signal numbers to GDB protocol signal numbers and vice 284 int signal; member in struct:GDBState [all...] |
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
voAMRWBEnc.c | 74 Word16 synth16k[], /* (o) : 16kHz synthesis signal */ 247 * Down sampling signal from 16kHz to 12.8kHz * 248 * -> The signal is extended by L_FILT samples (padded to zero) * 262 * Perform 50Hz HP filtering of input signal. * 273 * Scale signal to get maximum of precision in filtering * 295 /* limit scaling to Q_MAX to keep dynamic for ringing in low signal */ 356 * Preemphesis scale down signal in low frequency and keep dynamic in HF.* 581 * Update signal for next frame. * 699 * - compute the target signal for pitch search * 1561 Word16 *signal; local [all...] |
/frameworks/av/services/audioflinger/ |
Tracks.cpp | 305 void AudioFlinger::TrackHandle::signal() function in class:android::AudioFlinger::TrackHandle 307 return mTrack->signal(); 959 void AudioFlinger::PlaybackThread::Track::signal() function in class:android::AudioFlinger::PlaybackThread::Track [all...] |
/frameworks/base/services/java/com/android/server/ |
AssetAtlasService.java | 408 final CountDownLatch signal = new CountDownLatch(cpuCount); local 412 bitmaps, pixelCount, results, signal); 417 signal.await(10, TimeUnit.SECONDS); 671 * @param signal Latch to decrement when this worker is done, may be null 674 List<WorkerResult> results, CountDownLatch signal) { 680 mSignal = signal;
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ScheduledThreadPoolExecutor.java | 817 * signal some other thread before returning from take() or [all...] |
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
AbstractQueuedLongSynchronizer.java | 120 * inserted into a condition queue. Upon signal, the node is 138 static final int SIGNAL = -1; 149 * SIGNAL: The successor of this node is (or will soon be) 153 * first indicate they need a signal, 174 * signal. So, most code doesn't need to check for particular 389 * If status is negative (i.e., possibly needing signal) try 417 * to calling unparkSuccessor of head if it needs signal.) 424 * signal. But if it does not, status is set to PROPAGATE to 435 if (ws == Node.SIGNAL) { 436 if (!compareAndSetWaitStatus(h, Node.SIGNAL, 0) 1687 public final void signal() { method in class:AbstractQueuedLongSynchronizer.ConditionObject [all...] |
AbstractQueuedSynchronizer.java | 237 * except that it only requires a single {@code signal} to 259 * public void signal() { sync.releaseShared(1); } 350 * inserted into a condition queue. Upon signal, the node is 368 static final int SIGNAL = -1; 379 * SIGNAL: The successor of this node is (or will soon be) 383 * first indicate they need a signal, 404 * signal. So, most code doesn't need to check for particular 619 * If status is negative (i.e., possibly needing signal) try 647 * to calling unparkSuccessor of head if it needs signal.) 654 * signal. But if it does not, status is set to PROPAGATE t 1915 public final void signal() { method in class:AbstractQueuedSynchronizer.ConditionObject [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
CameraStreamer.java | 839 * a waiting thread by calling unlock (i.e. signal), provided that unlock [all...] |
/bionic/libc/kernel/common/linux/ |
videodev.h | 96 __u16 signal; member in struct:video_tuner
|
/development/ndk/platforms/android-3/include/linux/ |
videodev.h | 62 __u16 signal; member in struct:video_tuner
|
/external/chromium_org/chrome/test/functional/ |
perf.py | 36 import signal namespace 155 # Note that this sends the signal 0, which should not interfere with the 198 os.kill(pid, signal.SIGINT) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
android.py | 33 import signal namespace 222 output = self.run(['shell', 'kill', '-' + str(signal.SIGTERM)] + pids) [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_interceptors.cc | 1849 SignalDesc *signal = &sctx->pending_signals[sig]; local [all...] |
/external/kernel-headers/original/linux/ |
atmdev.h | 128 #define __ATM_LM_ANALOG 16 /* loop back the analog signal --------' */ 354 char signal; /* signal status (ATM_PHY_SIG_*) */ member in struct:atm_dev
|
videodev.h | 82 __u16 signal; /* Signal strength 16bit scale */ member in struct:video_tuner
|
/external/v8/tools/ |
test.py | 37 import signal namespace 430 # Timed out tests will have exit_code -signal.SIGTERM. 434 self.output.exit_code != -signal.SIGABRT 451 os.kill(pid, signal.SIGTERM) [all...] |