action            436 lib/keybind.c  keybind_cmd_bind (GArray * keymap, const char *keybind, long action)
action            442 lib/keybind.c      keymap_add (keymap, key, action, caption);
action            465 lib/keybind.c  keybind_lookup_actionname (long action)
action            470 lib/keybind.c          if (command_names[i].val == action)
action            479 lib/keybind.c  keybind_lookup_keymap_shortcut (const global_keymap_t * keymap, long action)
action            486 lib/keybind.c              if (keymap[i].command == action)
action            359 lib/keybind.h  void keybind_cmd_bind (GArray * keymap, const char *keybind, long action);
action            361 lib/keybind.h  const char *keybind_lookup_actionname (long action);
action            362 lib/keybind.h  const char *keybind_lookup_keymap_shortcut (const global_keymap_t * keymap, long action);
action            245 lib/tty/key.c      int action;                 /* optional action to be done. Now used only
action            254 lib/tty/key.c      int action;
action            666 lib/tty/key.c  create_sequence (const char *seq, int code, int action)
action            682 lib/tty/key.c              p->action = action;
action            684 lib/tty/key.c              p->action = MCKEY_NOACTION;
action            698 lib/tty/key.c          define_sequence (kd[i].code, kd[i].seq, kd[i].action);
action           1632 lib/tty/key.c  define_sequence (int code, const char *seq, int action)
action           1645 lib/tty/key.c                      base->child = create_sequence (seq + 1, code, action);
action           1650 lib/tty/key.c                      base->action = action;
action           1664 lib/tty/key.c                  base->next = create_sequence (seq, code, action);
action           1675 lib/tty/key.c      keys = create_sequence (seq, code, action);
action           1790 lib/tty/key.c              if (this == NULL || parent == NULL || parent->action != MCKEY_ESCAPE || !old_esc_mode ||
action           1851 lib/tty/key.c              if (parent->action == MCKEY_ESCAPE && old_esc_mode)
action           1883 lib/tty/key.c          if ((parent != NULL) && (parent->action == MCKEY_ESCAPE))
action             72 lib/tty/key.h  gboolean define_sequence (int code, const char *seq, int action);
action            708 lib/vfs/direntry.c vfs_s_print_stats (const char *fs_name, const char *action,
action            712 lib/vfs/direntry.c         vfs_print_message (_("%s: %s: %s %3d%% (%lld) bytes transferred"), fs_name, action,
action            715 lib/vfs/direntry.c         vfs_print_message (_("%s: %s: %s %lld bytes transferred"), fs_name, action, file_name,
action            101 lib/widget/button.c         h->ret_value = b->action;
action            102 lib/widget/button.c         if (b->callback == NULL || b->callback (b, b->action) != 0)
action            207 lib/widget/button.c button_new (int y, int x, int action, button_flags_t flags, const char *text, bcback_fn callback)
action            216 lib/widget/button.c     b->action = action;
action             17 lib/widget/button.h typedef int (*bcback_fn) (struct WButton * button, int action);
action             34 lib/widget/button.h     int action;                 /* what to do when pressed */
action             46 lib/widget/button.h WButton *button_new (int y, int x, int action, button_flags_t flags, const char *text,
action            194 lib/widget/history.c     hd->action = CK_IgnoreKey;
action            272 lib/widget/history.c             hd->action = CK_Edit;
action            275 lib/widget/history.c             hd->action = CK_View;
action            278 lib/widget/history.c             hd->action = CK_Enter;
action             29 lib/widget/history.h     int action;                 /**< return action in the history */
action            414 lib/widget/listbox.c     int action;
action            420 lib/widget/listbox.c         action = l->callback (l);
action            422 lib/widget/listbox.c         action = LISTBOX_DONE;
action            424 lib/widget/listbox.c     if (action == LISTBOX_DONE)
action            223 lib/widget/quick.c             item.widget = WIDGET (button_new (++y, x, quick_widget->u.button.action,
action            224 lib/widget/quick.c                                               quick_widget->u.button.action == B_ENTER ?
action            367 lib/widget/quick.c                 item.widget = WIDGET (button_new (y, x++, quick_widget->u.button.action,
action            368 lib/widget/quick.c                                                   quick_widget->u.button.action == B_ENTER ?
action             33 lib/widget/quick.h             .action = act,                                                      \
action            286 lib/widget/quick.h             int action;
action            140 src/cons.handler.c handle_console_linux (console_action_t action)
action            144 src/cons.handler.c     switch (action)
action            250 src/cons.handler.c             char act = (char) action;
action            254 src/cons.handler.c         if (action != CONSOLE_DONE)
action            259 src/cons.handler.c         if (action == CONSOLE_DONE || mc_global.tty.console_flag == '\0')
action            437 src/cons.handler.c handle_console_freebsd (console_action_t action)
action            439 src/cons.handler.c     switch (action)
action            488 src/cons.handler.c handle_console (console_action_t action)
action            490 src/cons.handler.c     (void) action;
action            496 src/cons.handler.c     handle_console_linux (action);
action            498 src/cons.handler.c     handle_console_freebsd (action);
action            164 src/consaver/cons.saver.c     unsigned char action = 0, console_flag = 3;
action            250 src/consaver/cons.saver.c     while (console_flag && read (0, &action, 1) == 1)
action            252 src/consaver/cons.saver.c         switch (action)
action             42 src/consaver/cons.saver.h void handle_console (console_action_t action);
action           3350 src/editor/edit.c         record_macro_buf[macro_index].action = command;
action           1104 src/editor/editcmd.c     int action;
action           1107 src/editor/editcmd.c     exp = show_file_history (CONST_WIDGET (h), &action);
action           1108 src/editor/editcmd.c     if (exp != NULL && (action == CK_Edit || action == CK_Enter))
action            181 src/editor/editmacros.c         action_name = keybind_lookup_actionname (record_macro_buf[i].action);
action            191 src/editor/editmacros.c         m_act.action = record_macro_buf[i].action;
action            265 src/editor/editmacros.c                     .action = 0,
action            270 src/editor/editmacros.c                     m_act.action = keybind_lookup_action (macro_pair[0]);
action            275 src/editor/editmacros.c                 if (m_act.action != 0)
action            278 src/editor/editmacros.c                     if ((m_act.action / CK_PipeBlock (0)) == 1)
action            280 src/editor/editmacros.c                         m_act.action = CK_PipeBlock (0);
action            282 src/editor/editmacros.c                             m_act.action += m_act.ch;
action            362 src/editor/editmacros.c                 edit_execute_cmd (edit, record_macro_buf[i].action, record_macro_buf[i].ch);
action            399 src/editor/editmacros.c                     edit_execute_cmd (edit, m_act->action, m_act->ch);
action            208 src/file_history.c show_file_history (const Widget * w, int *action)
action            241 src/file_history.c     *action = hd.action;
action             14 src/file_history.h char *show_file_history (const Widget * w, int *action);
action            460 src/filemanager/achown.c perm_button_new (int y, int x, int action, button_flags_t flags, const char *text,
action            467 src/filemanager/achown.c     b = button_new (y, x, action, flags, text, callback);
action            511 src/filemanager/achown.c user_group_button_cb (WButton * button, int action)
action            517 src/filemanager/achown.c     (void) action;
action            211 src/filemanager/boxes.c sel_skin_button (WButton * button, int action)
action            220 src/filemanager/boxes.c     (void) action;
action            368 src/filemanager/boxes.c sel_charset_button (WButton * button, int action)
action            372 src/filemanager/boxes.c     (void) action;
action            485 src/filemanager/boxes.c task_cb (WButton * button, int action)
action            499 src/filemanager/boxes.c     if (action == B_STOP)
action            504 src/filemanager/boxes.c     else if (action == B_RESUME)
action            511 src/filemanager/boxes.c     if (action == B_KILL)
action            898 src/filemanager/ext.c regex_command_for (void *target, const vfs_path_t * filename_vpath, const char *action,
action            922 src/filemanager/ext.c     if (strncmp (action, "View:", 5) == 0)
action            924 src/filemanager/ext.c         view_at_line_number = atoi (action + 5);
action            925 src/filemanager/ext.c         action = "View";
action           1071 src/filemanager/ext.c         action_value = mc_config_get_string_raw (ext_ini, current_group, action, NULL);
action           1075 src/filemanager/ext.c             action_value = mc_config_get_string_raw (ext_ini, default_group, action, NULL);
action             17 src/filemanager/ext.h int regex_command_for (void *target, const vfs_path_t * filename_vpath, const char *action,
action             28 src/filemanager/ext.h regex_command (const vfs_path_t * filename_vpath, const char *action)
action             30 src/filemanager/ext.h     return regex_command_for (NULL, filename_vpath, action, NULL);
action            247 src/filemanager/filegui.c     FileProgressStatus action;
action            757 src/filemanager/filegui.c progress_button_callback (WButton * button, int action)
action            760 src/filemanager/filegui.c     (void) action;
action            917 src/filemanager/filegui.c     progress_buttons[0].w = WIDGET (button_new (y, 0, progress_buttons[0].action,
action            923 src/filemanager/filegui.c     progress_buttons[1].w = WIDGET (button_new (y, 0, progress_buttons[1].action,
action            932 src/filemanager/filegui.c         progress_buttons[2].w = WIDGET (button_new (y, 0, progress_buttons[2].action,
action            941 src/filemanager/filegui.c     progress_buttons[3].w = WIDGET (button_new (y, 0, progress_buttons[3].action,
action            120 src/filemanager/find.c static int start_stop (WButton * button, int action);
action            121 src/filemanager/find.c static int find_do_view_file (WButton * button, int action);
action            122 src/filemanager/find.c static int find_do_edit_file (WButton * button, int action);
action           1620 src/filemanager/find.c start_stop (WButton * button, int action)
action           1624 src/filemanager/find.c     (void) action;
action           1643 src/filemanager/find.c find_do_view_file (WButton * button, int action)
action           1646 src/filemanager/find.c     (void) action;
action           1656 src/filemanager/find.c find_do_edit_file (WButton * button, int action)
action           1659 src/filemanager/find.c     (void) action;
action            333 src/filemanager/hotlist.c hotlist_run_cmd (int action)
action            335 src/filemanager/hotlist.c     switch (action)
action            443 src/filemanager/hotlist.c                 return (action == B_ENTER ? 1 : 0);
action            485 src/filemanager/hotlist.c hotlist_button_callback (WButton * button, int action)
action            490 src/filemanager/hotlist.c     ret = hotlist_run_cmd (action);
action            266 src/filemanager/layout.c b_left_right_cback (WButton * button, int action)
action            268 src/filemanager/layout.c     (void) action;
action            294 src/filemanager/layout.c bplus_cback (WButton * button, int action)
action            297 src/filemanager/layout.c     (void) action;
action            307 src/filemanager/layout.c bminus_cback (WButton * button, int action)
action            310 src/filemanager/layout.c     (void) action;
action            141 src/filemanager/listmode.c bplus_cback (int action)
action            149 src/filemanager/listmode.c bminus_cback (int action)
action            157 src/filemanager/listmode.c badd_cback (int action)
action            171 src/filemanager/listmode.c bremove_cback (int action)
action            692 src/keymap.c               long action;
action            694 src/keymap.c               action = keybind_lookup_action (*profile_keys);
action            695 src/keymap.c               if (action > 0)
action            700 src/keymap.c                       keybind_cmd_bind (keymap, *curr_values, action);
action             85 src/learn.c    learn_button (WButton * button, int action)
action             98 src/learn.c                              "and wait as well."), _(key_name_conv_tab[action - B_USER].longname));
action            100 src/learn.c        if (learnkeys[action - B_USER].sequence != NULL)
action            101 src/learn.c            MC_PTR_FREE (learnkeys[action - B_USER].sequence);
action            116 src/learn.c                learnkeys[action - B_USER].sequence = seq;
action            118 src/learn.c                seq_ok = define_sequence (key_name_conv_tab[action - B_USER].code, seq, MCKEY_NOACTION);
action            130 src/learn.c        widget_select (learnkeys[action - B_USER].button);
action             62 src/setup.h        long action;
action            377 src/viewer/actions_cmd.c     int action;
action            379 src/viewer/actions_cmd.c     filename = show_file_history (CONST_WIDGET (view), &action);
action            381 src/viewer/actions_cmd.c     if (filename != NULL && (action == CK_View || action == CK_Enter))