Searched defs:signal (Results 26 - 50 of 221) sorted by relevance

123456789

/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dwebkit-patch37 import signal namespace
86 sys.exit(signal.SIGINT + 128)
/external/chromium_org/third_party/android_testrunner/
H A Drun_command.py20 import signal namespace
103 preexec_fn=lambda: signal.signal(signal.SIGPIPE, signal.SIG_DFL))
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dpost_decode_vad.cc47 void PostDecodeVad::Update(int16_t* signal, int length, argument
78 vad_instance_, fs_hz, &signal[vad_sample_index],
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dsample_profiler.py5 import signal namespace
33 self._proc.send_signal(signal.SIGINT)
H A Diprofiler_profiler.py6 import signal namespace
54 self._proc.kill(signal.SIGINT)
H A Dtcpdump_profiler.py6 import signal namespace
73 self._proc.send_signal(signal.SIGINT)
/external/libunwind/tests/
H A Dia64-test-sig.c27 #include <signal.h>
39 sighandler (int signal) argument
46 printf ("caught signal %d\n", signal);
59 panic ("failed to find signal frame!\n");
97 signal (SIGSEGV, sighandler);
/external/lldb/test/functionalities/signal/
H A DTestSendSignal.py1 """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 t
[all...]
/external/lldb/test/pexpect-2.4/examples/
H A Dscript.py22 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/
H A Dsignals.py1 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
[all...]
/external/lldb/tools/debugserver/source/
H A DDNBThreadResumeActions.cpp33 DNBThreadResumeActions::DNBThreadResumeActions (nub_state_t default_action, int signal) : argument
37 SetDefaultThreadActionIfNeeded (default_action, signal);
52 int signal,
56 DNBThreadResumeAction action = { tid, state, signal, addr };
90 DNBThreadResumeActions::SetDefaultThreadActionIfNeeded (nub_state_t action, int signal) argument
95 DNBThreadResumeAction default_action = {INVALID_NUB_THREAD, action, signal, INVALID_NUB_ADDRESS };
48 AppendAction( nub_thread_t tid, nub_state_t state, int signal, nub_addr_t addr ) argument
/external/strace/test/
H A Dsfd.c12 int signal, blocked, ignore, caught; local
32 if (sscanf(s, "%d%d%d%d", &signal, &blocked, &ignore, &caught) != 4) {
37 printf("%8x %8x %8x %8x\n", signal, blocked, ignore, caught);
/external/chromium_org/chromeos/dbus/
H A Dnfc_property_set.cc78 void NfcPropertySet::ChangedReceived(dbus::Signal* signal) { argument
79 DCHECK(signal);
80 dbus::MessageReader reader(signal);
/external/chromium_org/content/child/
H A Dchild_process.cc8 #include <signal.h> // For SigUSR1Handler below.
26 static void SigUSR1Handler(int signal) { } argument
137 // Install a signal handler so that pause can be woken.
/external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
H A Dbrowserprocess.py7 import signal namespace
65 os.killpg(self.handle.pid, signal.SIGTERM)
68 os.killpg(self.handle.pid, signal.SIGKILL)
/external/chromium_org/sandbox/linux/services/
H A Dscoped_process_unittest.cc33 void RaiseAndExit(int signal) { argument
34 PCHECK(0 == raise(signal));
58 PCHECK(SIG_ERR != signal(SIGABRT, SIG_DFL));
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dlint_test_expectations.py31 import signal namespace
40 INTERRUPTED_EXIT_STATUS = signal.SIGINT + 128
/external/chromium_org/tools/cr/cr/base/
H A Dhost.py9 import signal namespace
69 ignore_interrupt_signal: Ignore the interrupt signal (i.e., Ctrl-C) while
105 signal.signal(signal.SIGINT, signal.SIG_IGN)
109 signal.signal(signal.SIGINT, signal
[all...]
/external/chromium_org/tools/valgrind/
H A Dcommon.py8 import signal namespace
78 os.kill(p.pid, signal.SIGINT)
/external/chromium_org/v8/tools/testrunner/local/
H A Dcommands.py30 import signal namespace
44 os.kill(pid, signal.SIGTERM)
/external/llvm/utils/lit/lit/
H A Dutil.py6 import signal namespace
156 if exitCode == -signal.SIGINT:
/external/chromium_org/build/util/lib/common/
H A Dutil.py10 import signal namespace
111 os.kill(pid, signal.SIGTERM)
/external/chromium_org/chrome/browser/chromeos/dbus/
H A Dproxy_resolution_service_provider_unittest.cc12 // - ProxyResolutionServiceProvider will return the result as a signal.
13 // - Confirm that we receive the signal and check the contents of the signal.
31 // signal, to the following signal interface and the signal name.
77 // Connect to the signal that will be sent to kReturnSignalInterface and
79 // signal. OnSignalReceived() will be called upon the delivery.
95 // Called when a signal is received.
96 void OnSignalReceived(dbus::Signal* signal) { argument
[all...]
H A Dservice_provider_test_helper.cc127 // a response that the caller will ignore, this will send a signal, which
144 // Tell the callback that the object proxy is connected to the signal.
150 void ServiceProviderTestHelper::MockSendSignal(dbus::Signal* signal) { argument
153 on_signal_callback_.Run(signal);
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dextension_settings_helper.cc41 base::WaitableEvent* signal,
45 signal->Signal();
50 base::WaitableEvent signal(false, false);
55 base::Bind(&GetAllSettingsOnFileThread, settings.get(), &signal));
56 signal.Wait();
89 base::WaitableEvent* signal,
93 signal->Signal();
102 base::WaitableEvent signal(false, false);
106 base::Bind(&SetSettingsOnFileThread, &settings, &signal));
107 signal
40 GetAllSettingsOnFileThread(base::DictionaryValue* out, base::WaitableEvent* signal, ValueStore* storage) argument
87 SetSettingsOnFileThread( const base::DictionaryValue* settings, base::WaitableEvent* signal, ValueStore* storage) argument
[all...]

Completed in 2341 milliseconds

123456789