Searched refs:act (Results 1 - 8 of 8) sorted by relevance

/system/extras/tests/bionic/libc/other/
H A Dtest_timer_create2.c81 struct sigaction act[1]; local
87 memset(act, 0, sizeof(*act));
88 act->sa_handler = handle;
89 sigaction( SIGUSR1, act, NULL );
/system/core/init/
H A Dparser.c28 struct action *act;
50 act = node_to_item(node, struct action, alist);
51 RAW("on %s\n", act->name);
52 list_for_each(node2, &act->commands) {
500 void (*func)(struct action *act))
503 struct action *act; local
505 act = node_to_item(node, struct action, alist);
506 if (!strcmp(act->name, trigger)) {
507 func(act);
515 struct action *act; local
499 action_for_each_trigger(const char *trigger, void (*func)(struct action *act)) argument
534 struct action *act; local
563 action_add_queue_tail(struct action *act) argument
574 struct action *act = node_to_item(node, struct action, qlist); local
780 struct action *act; local
800 struct action *act = state->context; local
[all...]
H A Dinit.h173 void action_add_queue_tail(struct action *act);
175 void (*func)(struct action *act));
H A Dinit.c681 struct action *act; local
684 while ((act = action_remove_queue_head())) {
685 INFO("processing action %p (%s)\n", act, act->name);
686 list_for_each(node, &act->commands) {
815 struct sigaction act; local
821 act.sa_handler = sigchld_handler;
822 act.sa_flags = SA_NOCLDSTOP;
823 act.sa_mask = 0;
824 act
[all...]
/system/core/sh/
H A Dtrap.c250 struct sigaction act, oact; local
318 act.sa_handler = sigact;
319 sigemptyset(&act.sa_mask);
320 act.sa_flags = 0;
322 act.sa_flags |= SA_INTERRUPT;
324 if(sigaction(signo, &act, &oact) < 0)
H A Dexec.c427 find_command(char *name, struct cmdentry *entry, int act, const char *path) argument
439 if (act & DO_ABS) {
461 act |= DO_ALTPATH;
463 if (act & DO_ALTPATH && strstr(path, "%builtin") != NULL)
464 act |= DO_ALTBLTIN;
471 if (act & DO_ALTPATH) {
477 if (act & DO_NOFUNC) {
483 if ((act & DO_ALTBLTIN) || builtinloc >= 0) {
496 if ((act & DO_ALTPATH ? !(act
[all...]
/system/core/debuggerd/
H A Ddebuggerd.c823 struct sigaction act; local
833 act.sa_handler = SIG_DFL;
834 sigemptyset(&act.sa_mask);
835 sigaddset(&act.sa_mask,SIGCHLD);
836 act.sa_flags = SA_NOCLDWAIT;
837 sigaction(SIGCHLD, &act, 0);
/system/core/adb/
H A Dsockets.c760 asocket *create_smart_socket(void (*action_cb)(asocket *s, const char *act)) argument
775 void smart_socket_action(asocket *s, const char *act) argument

Completed in 1162 milliseconds