act                97 lib/tty/tty-ncurses.c     struct sigaction act, oact;
act                99 lib/tty/tty-ncurses.c     memset (&act, 0, sizeof (act));
act               100 lib/tty/tty-ncurses.c     act.sa_handler = handler;
act               101 lib/tty/tty-ncurses.c     sigemptyset (&act.sa_mask);
act               103 lib/tty/tty-ncurses.c     act.sa_flags = SA_RESTART;
act               105 lib/tty/tty-ncurses.c     sigaction (SIGWINCH, &act, &oact);
act               141 lib/tty/tty.c      struct sigaction act;
act               143 lib/tty/tty.c      memset (&act, 0, sizeof (act));
act               144 lib/tty/tty.c      act.sa_handler = sigintr_handler;
act               145 lib/tty/tty.c      sigemptyset (&act.sa_mask);
act               147 lib/tty/tty.c      act.sa_flags = SA_RESTART;
act               149 lib/tty/tty.c      sigaction (SIGINT, &act, NULL);
act               157 lib/tty/tty.c      struct sigaction act;
act               159 lib/tty/tty.c      memset (&act, 0, sizeof (act));
act               160 lib/tty/tty.c      act.sa_handler = sigintr_handler;
act               161 lib/tty/tty.c      sigemptyset (&act.sa_mask);
act               162 lib/tty/tty.c      sigaction (SIGINT, &act, NULL);
act               171 lib/tty/tty.c      struct sigaction act;
act               173 lib/tty/tty.c      memset (&act, 0, sizeof (act));
act               174 lib/tty/tty.c      act.sa_handler = SIG_IGN;
act               175 lib/tty/tty.c      sigemptyset (&act.sa_mask);
act               176 lib/tty/tty.c      sigaction (SIGINT, &act, NULL);
act               302 lib/widget/input.c         const char *act;
act               304 lib/widget/input.c         act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point);
act               305 lib/widget/input.c         in->point -= str_cprev_noncomb_char (&act, in->buffer->str);
act               316 lib/widget/input.c     const char *act;
act               318 lib/widget/input.c     act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point);
act               319 lib/widget/input.c     if (act[0] != '\0')
act               320 lib/widget/input.c         in->point += str_cnext_noncomb_char (&act);
act               375 lib/widget/input.c     const char *act;
act               381 lib/widget/input.c     act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point);
act               382 lib/widget/input.c     start = in->point - str_cprev_noncomb_char (&act, in->buffer->str);
act               476 lib/widget/input.c     const char *act;
act               479 lib/widget/input.c     act = in->buffer->str + str_offset_to_pos (in->buffer->str, in->point);
act               480 lib/widget/input.c     end = in->point + str_cnext_noncomb_char (&act);
act                24 lib/widget/quick.h #define QUICK_BUTTON(txt, act, cb, id_)                                         \
act                33 lib/widget/quick.h             .action = act,                                                      \
act               250 src/cons.handler.c             char act = (char) action;
act               252 src/cons.handler.c             status = write (pipefd1[1], &act, 1);
act              3013 src/diffviewer/ydiff.c     int act;
act              3018 src/diffviewer/ydiff.c     act = query_dialog (_("Quit"), !mc_global.midnight_shutdown ?
act              3024 src/diffviewer/ydiff.c     if (mc_global.midnight_shutdown || (act == -1))
act              3025 src/diffviewer/ydiff.c         act = 1;
act              3027 src/diffviewer/ydiff.c     switch (act)
act               371 src/editor/edit.c         int act;
act               375 src/editor/edit.c         act = edit_query_dialog2 (_("Warning"), errmsg, _("&Yes"), _("&No"));
act               378 src/editor/edit.c         if (act != 0)
act              1458 src/editor/editcmd.c     int act;
act              1475 src/editor/editcmd.c         act = edit_query_dialog3 (_("Close file"), msg, _("&Yes"), _("&No"), _("&Cancel"));
act              1481 src/editor/editcmd.c         act = edit_query_dialog2 (_("Quit"), msg, _("&Yes"), _("&No"));
act              1484 src/editor/editcmd.c         if (act == -1)
act              1485 src/editor/editcmd.c             act = 1;
act              1490 src/editor/editcmd.c     switch (act)
act              1003 src/filemanager/filemanager.c     int act;
act              1005 src/filemanager/filemanager.c     s = show_file_history (WIDGET (filemanager), &act);
act              1010 src/filemanager/filemanager.c         switch (act)
act              2772 src/filemanager/panel.c     char *act;
act              2781 src/filemanager/panel.c             act = panel->quick_search.buffer->str + panel->quick_search.buffer->len;
act              2782 src/filemanager/panel.c             str_prev_noncomb_char (&act, panel->quick_search.buffer->str);
act              2783 src/filemanager/panel.c             g_string_set_size (panel->quick_search.buffer, act - panel->quick_search.buffer->str);
act              2859 src/filemanager/panel.c         act = panel->quick_search.buffer->str + panel->quick_search.buffer->len;
act              2860 src/filemanager/panel.c         str_prev_noncomb_char (&act, panel->quick_search.buffer->str);
act              2861 src/filemanager/panel.c         g_string_set_size (panel->quick_search.buffer, act - panel->quick_search.buffer->str);
act                64 tests/lib/utilunix__my_system-common.c sigaction (int signum, const struct sigaction *act, struct sigaction *oldact)
act                76 tests/lib/utilunix__my_system-common.c     if (act != NULL)
act                79 tests/lib/utilunix__my_system-common.c         memcpy (tmp_act, act, sizeof (*tmp_act));