HomeSort by relevance Sort by last modified time
    Searched refs:signo (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /hardware/bsp/intel/peripheral/libupm/examples/c++/
ad8232.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
apds9002.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
flex.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
grovecircularled.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
groveled-multi.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
groveo2.cxx 33 void sig_handler(int signo)
35 if (signo == SIGINT)
ina132.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
lm35.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
loudness.cxx 36 void sig_handler(int signo)
38 if (signo == SIGINT)
mg811.cxx 36 void sig_handler(int signo)
38 if (signo == SIGINT)
pulsensor.cxx 33 sig_handler(int signo)
36 if (signo == SIGINT) {
rfr359f.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
rotaryencoder.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
rpr220.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
a110x-intr.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
a110x.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
adc121c021.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
biss0001.cxx 34 void sig_handler(int signo)
36 if (signo == SIGINT)
gp2y0a.cxx 38 void sig_handler(int signo)
40 if (signo == SIGINT)
grovecollision.cxx 33 void sig_handler(int signo)
35 if (signo == SIGINT)
groveeldriver.cxx 33 void sig_handler(int signo)
35 if (signo == SIGINT)
groveemg.cxx 33 void sig_handler(int signo)
35 if (signo == SIGINT)
  /toolchain/binutils/binutils-2.25/libiberty/
strsignal.c 358 the largest signo value defined in @code{<signal.h>}.
383 @deftypefn Supplemental {const char *} strsignal (int @var{signo})
408 strsignal (int signo)
422 if ((signo < 0) || (signo >= sys_nsig))
427 else if ((sys_siglist == NULL) || (sys_siglist[signo] == NULL))
430 sprintf (buf, "Signal %d", signo);
438 msg = (char *) sys_siglist[signo];
448 @deftypefn Extension {const char*} strsigno (int @var{signo})
469 strsigno (int signo)
514 int signo = 0; local
583 int signo; local
    [all...]
  /bionic/libc/bionic/
sigqueue.cpp 36 int sigqueue(pid_t pid, int signo, const sigval value) {
39 info.si_signo = signo;
45 return ___rt_sigqueueinfo(pid, signo, &info);
  /external/google-breakpad/src/client/solaris/handler/
exception_handler.cc 143 void ExceptionHandler::SetupHandler(int signo) {
147 if (sigaction(signo, &act, &old_act) < 0)
149 old_handlers_[signo] = old_act.sa_handler;
152 void ExceptionHandler::TeardownHandler(int signo) {
153 if (old_handlers_.find(signo) != old_handlers_.end()) {
155 act.sa_handler = old_handlers_[signo];
157 sigaction(signo, &act, 0);
168 void ExceptionHandler::HandleException(int signo) {
169 //void ExceptionHandler::HandleException(int signo, siginfo_t *sip, ucontext_t *sig_ctx) {
189 current_handler->TeardownHandler(signo);
    [all...]

Completed in 1716 milliseconds

1 2 3 4 5 6 7