/third_party/python/Lib/test/ |
D | signalinterproctester.py | 25 def wait_signal(self, child, signame): argument 35 if self.got_signals[signame]: 40 % (signame, timeout)) 42 def subprocess_send_signal(self, pid, signame): argument 43 code = 'import os, signal; os.kill(%s, signal.%s)' % (pid, signame)
|
/third_party/ltp/testcases/kernel/hotplug/memory_hotplug/ |
D | memtoy.c | 186 gcp->signame = sig_names[isig]; in signal_handler() 188 vprint("signal hander entered for sig %s\n", gcp->signame); in signal_handler() 199 gcp->program_name, gcp->signame); in signal_handler() 261 vprint("%s: wakened by signal %s\n", __FUNCTION__, glctx.signame); in wait_for_signal() 314 printf("Signal %s @ 0x%lx - %s\n", gcp->signame, badaddr, sigcode); in show_siginfo()
|
D | memtoy.h | 48 char *signame; /* name of signal, if any */ member
|
/third_party/ltp/testcases/kernel/mem/mtest05/ |
D | mmstress.c | 660 char *signame; in main() member 719 sig_info[i].signame); in main()
|
/third_party/ltp/testcases/kernel/mem/mtest06/ |
D | mmap2.c | 170 char *signame; in main() member
|
D | shmat1.c | 404 char *signame; /* name of the signal to be handled. */ in main() member
|
/third_party/toybox/lib/ |
D | portability.h | 344 struct signame { struct
|
D | portability.c | 406 static const struct signame signames[] = {
|
/third_party/curl/tests/ |
D | secureserver.pl | 88 my $signame = shift;
|
D | runtests.pl | 254 my $signame = shift; 255 print "runtests.pl received SIG$signame, exiting\r\n";
|
D | ftpserver.pl | 207 my $signame = shift;
|
/third_party/pulseaudio/src/pulsecore/ |
D | core-util.c | 1018 PA_STATIC_TLS_DECLARE(signame, pa_xfree); 1037 pa_xfree(PA_STATIC_TLS_GET(signame)); in pa_sig2str() 1039 PA_STATIC_TLS_SET(signame, t); in pa_sig2str() 1131 pa_xfree(PA_STATIC_TLS_GET(signame)); in pa_sig2str() 1133 PA_STATIC_TLS_SET(signame, t); in pa_sig2str() 1142 pa_xfree(PA_STATIC_TLS_GET(signame)); in pa_sig2str() 1144 PA_STATIC_TLS_SET(signame, t); in pa_sig2str()
|
/third_party/libwebsockets/minimal-examples/dbus-server/minimal-dbus-ws-proxy/ |
D | protocol_lws_minimal_dbus_ws_proxy.c | 288 issue_dbus_signal(struct lws *wsi, const char *signame, const char *string) in issue_dbus_signal() argument 297 m = dbus_message_new_signal(THIS_OBJECT, THIS_INTERFACE, signame); in issue_dbus_signal()
|
/third_party/python/Lib/test/support/ |
D | __init__.py | 1768 for signame in ('SIGKILL', 'SIGSTOP'): 1770 signum = getattr(signal, signame)
|
/third_party/python/Doc/library/ |
D | asyncio-eventloop.rst | 1709 def ask_exit(signame, loop): 1710 print("got signal %s: exit" % signame) 1716 for signame in {'SIGINT', 'SIGTERM'}: 1718 getattr(signal, signame), 1719 functools.partial(ask_exit, signame, loop))
|
/third_party/python/Lib/ |
D | subprocess.py | 1655 for signame in ('SIGPIPE', 'SIGXFZ', 'SIGXFSZ'): 1656 signum = getattr(signal, signame, None)
|