args              118 lib/logging.c  mc_va_log (const char *fmt, va_list args)
args              131 lib/logging.c              (void) vfprintf (f, fmt, args);
args              146 lib/logging.c      va_list args;
args              151 lib/logging.c      va_start (args, fmt);
args              152 lib/logging.c      mc_va_log (fmt, args);
args              153 lib/logging.c      va_end (args);
args              161 lib/logging.c      va_list args;
args              163 lib/logging.c      va_start (args, fmt);
args              164 lib/logging.c      mc_va_log (fmt, args);
args              165 lib/logging.c      va_end (args);
args              513 lib/search/search.c         va_list args;
args              515 lib/search/search.c         va_start (args, format);
args              516 lib/search/search.c         lc_mc_search->error_str = g_strdup_vprintf (format, args);
args              517 lib/search/search.c         va_end (args);
args              736 lib/tty/tty-ncurses.c     va_list args;
args              739 lib/tty/tty-ncurses.c     va_start (args, fmt);
args              740 lib/tty/tty-ncurses.c     g_vsnprintf (buf, sizeof (buf), fmt, args);
args              741 lib/tty/tty-ncurses.c     va_end (args);
args              750 lib/tty/tty-slang.c     va_list args;
args              752 lib/tty/tty-slang.c     va_start (args, fmt);
args              753 lib/tty/tty-slang.c     SLsmg_vprintf ((char *) fmt, args);
args              754 lib/tty/tty-slang.c     va_end (args);
args             1486 lib/util.c             va_list args;
args             1488 lib/util.c             va_start (args, format);
args             1489 lib/util.c             tmp_error = g_error_new_valist (MC_ERROR, code, format, args);
args             1490 lib/util.c             va_end (args);
args             1512 lib/util.c             va_list args;
args             1514 lib/util.c             va_start (args, format);
args             1515 lib/util.c             tmp_error = g_error_new_valist (MC_ERROR, code, format, args);
args             1516 lib/util.c             va_end (args);
args              250 lib/util.h     char *mc_build_filenamev (const char *first_element, va_list args);
args             1222 lib/utilunix.c mc_build_filenamev (const char *first_element, va_list args)
args             1239 lib/utilunix.c             element = va_arg (args, char *);
args             1248 lib/utilunix.c             element = va_arg (args, char *);
args             1281 lib/utilunix.c     va_list args;
args             1287 lib/utilunix.c     va_start (args, first_element);
args             1288 lib/utilunix.c     ret = mc_build_filenamev (first_element, args);
args             1289 lib/utilunix.c     va_end (args);
args             1262 lib/vfs/path.c     va_list args;
args             1269 lib/vfs/path.c     va_start (args, first_element);
args             1270 lib/vfs/path.c     str_path = mc_build_filenamev (first_element, args);
args             1271 lib/vfs/path.c     va_end (args);
args             1291 lib/vfs/path.c     va_list args;
args             1299 lib/vfs/path.c     va_start (args, first_element);
args             1300 lib/vfs/path.c     str_path = mc_build_filenamev (first_element, args);
args             1301 lib/vfs/path.c     va_end (args);
args             1325 lib/vfs/path.c     va_list args;
args             1334 lib/vfs/path.c     va_start (args, first_vpath);
args             1346 lib/vfs/path.c         current_vpath = va_arg (args, const vfs_path_t *);
args             1349 lib/vfs/path.c     va_end (args);
args              184 lib/widget/hline.c     va_list args;
args              187 lib/widget/hline.c     va_start (args, format);
args              188 lib/widget/hline.c     g_vsnprintf (buf, sizeof (buf), format, args);
args              189 lib/widget/hline.c     va_end (args);
args              191 lib/widget/label.c     va_list args;
args              194 lib/widget/label.c     va_start (args, format);
args              195 lib/widget/label.c     g_vsnprintf (buf, sizeof (buf), format, args);
args              196 lib/widget/label.c     va_end (args);
args              396 lib/widget/wtools.c     va_list args;
args              400 lib/widget/wtools.c     va_start (args, text);
args              401 lib/widget/wtools.c     p = g_strdup_vprintf (text, args);
args              402 lib/widget/wtools.c     va_end (args);
args               89 src/diffviewer/internal.h     const char *args;           /* Args passed to diff */
args              808 src/diffviewer/ydiff.c dff_execute (const char *args, const char *extra, const char *file1, const char *file2,
args              826 src/diffviewer/ydiff.c     cmd = g_strdup_printf ("diff %s %s %s %s %s", args, extra, opt, file1_esc, file2_esc);
args             1718 src/diffviewer/ydiff.c     ndiff = dff_execute (dview->args, extra, dview->file[DIFF_LEFT], dview->file[DIFF_RIGHT], ops);
args             2384 src/diffviewer/ydiff.c dview_init (WDiff * dview, const char *args, const char *file1, const char *file2,
args             2440 src/diffviewer/ydiff.c     dview->args = args;
args              790 src/editor/syntax.c get_args (char *l, char **args, int args_size)
args              806 src/editor/syntax.c         args[argc++] = convert (p);
args              808 src/editor/syntax.c     args[argc] = (char *) NULL;
args              935 src/editor/syntax.c edit_read_syntax_rules (WEdit * edit, FILE * f, char **args, int args_size)
args              948 src/editor/syntax.c     args[0] = NULL;
args              987 src/editor/syntax.c         argc = get_args (l, args, args_size);
args              988 src/editor/syntax.c         a = args + 1;
args              989 src/editor/syntax.c         if (args[0] == NULL)
args              993 src/editor/syntax.c         else if (strcmp (args[0], "include") == 0)
args             1001 src/editor/syntax.c             f = open_include_file (args[1]);
args             1011 src/editor/syntax.c         else if (strcmp (args[0], "caseinsensitive") == 0)
args             1015 src/editor/syntax.c         else if (strcmp (args[0], "wholechars") == 0)
args             1036 src/editor/syntax.c         else if (strcmp (args[0], "context") == 0)
args             1103 src/editor/syntax.c             subst_defines (edit->defines, a, &args[ARGS_LEN]);
args             1120 src/editor/syntax.c         else if (strcmp (args[0], "spellcheck") == 0)
args             1129 src/editor/syntax.c         else if (strcmp (args[0], "keyword") == 0)
args             1167 src/editor/syntax.c             subst_defines (edit->defines, a, &args[ARGS_LEN]);
args             1186 src/editor/syntax.c         else if (*(args[0]) == '#')
args             1190 src/editor/syntax.c         else if (strcmp (args[0], "file") == 0)
args             1194 src/editor/syntax.c         else if (strcmp (args[0], "define") == 0)
args             1272 src/editor/syntax.c     char *args[ARGS_LEN], *l = NULL;
args             1290 src/editor/syntax.c     args[0] = NULL;
args             1297 src/editor/syntax.c         (void) get_args (l, args, ARGS_LEN - 1);        /* Final NULL */
args             1298 src/editor/syntax.c         if (args[0] == NULL)
args             1302 src/editor/syntax.c         if (!found && strcmp (args[0], "include") == 0)
args             1304 src/editor/syntax.c             if (args[1] == NULL || (g = open_include_file (args[1])) == NULL)
args             1313 src/editor/syntax.c         if (strcmp (args[0], "file") != 0)
args             1319 src/editor/syntax.c         if (args[1] == NULL || args[2] == NULL)
args             1328 src/editor/syntax.c             g_ptr_array_add (pnames, g_strdup (args[2]));
args             1333 src/editor/syntax.c             if (strcmp (type, args[2]) == 0)
args             1341 src/editor/syntax.c             q = mc_search (args[1], DEFAULT_CHARSET, editor_file, MC_SEARCH_T_REGEX);
args             1343 src/editor/syntax.c             if (!q && args[3] != NULL)
args             1346 src/editor/syntax.c                 q = mc_search (args[3], DEFAULT_CHARSET, first_line, MC_SEARCH_T_REGEX);
args             1354 src/editor/syntax.c                 syntax_type = args[2];
args             1355 src/editor/syntax.c                 line_error = edit_read_syntax_rules (edit, g ? g : f, args, ARGS_LEN - 1);
args              556 src/filemanager/ext.c get_popen_information (const char *cmd_file, const char *args, char *buf, int buflen)
args              562 src/filemanager/ext.c     command = g_strconcat (cmd_file, args, " 2>/dev/null", (char *) NULL);
args              634 src/filemanager/ext.c             char *args;
args              636 src/filemanager/ext.c             args = g_strdup_printf (" -L %s -i %s", lang, filename_quoted);
args              639 src/filemanager/ext.c             ret = get_popen_information ("enca", args, buf, buflen);
args              640 src/filemanager/ext.c             g_free (args);