args              117 lib/logging.c  mc_va_log (const char *fmt, va_list args)
args              130 lib/logging.c              (void) vfprintf (f, fmt, args);
args              144 lib/logging.c      va_list args;
args              149 lib/logging.c      va_start (args, fmt);
args              150 lib/logging.c      mc_va_log (fmt, args);
args              151 lib/logging.c      va_end (args);
args              159 lib/logging.c      va_list args;
args              161 lib/logging.c      va_start (args, fmt);
args              162 lib/logging.c      mc_va_log (fmt, args);
args              163 lib/logging.c      va_end (args);
args              511 lib/search/search.c         va_list args;
args              513 lib/search/search.c         va_start (args, format);
args              514 lib/search/search.c         lc_mc_search->error_str = g_strdup_vprintf (format, args);
args              515 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              751 lib/tty/tty-slang.c     va_list args;
args              753 lib/tty/tty-slang.c     va_start (args, fmt);
args              754 lib/tty/tty-slang.c     SLsmg_vprintf ((char *) fmt, args);
args              755 lib/tty/tty-slang.c     va_end (args);
args             1499 lib/util.c             va_list args;
args             1501 lib/util.c             va_start (args, format);
args             1502 lib/util.c             tmp_error = g_error_new_valist (MC_ERROR, code, format, args);
args             1503 lib/util.c             va_end (args);
args             1525 lib/util.c             va_list args;
args             1527 lib/util.c             va_start (args, format);
args             1528 lib/util.c             tmp_error = g_error_new_valist (MC_ERROR, code, format, args);
args             1529 lib/util.c             va_end (args);
args              282 lib/util.h     char *mc_build_filenamev (const char *first_element, va_list args);
args             1293 lib/utilunix.c mc_build_filenamev (const char *first_element, va_list args)
args             1310 lib/utilunix.c             element = va_arg (args, char *);
args             1318 lib/utilunix.c             element = va_arg (args, char *);
args             1347 lib/utilunix.c     va_list args;
args             1353 lib/utilunix.c     va_start (args, first_element);
args             1354 lib/utilunix.c     ret = mc_build_filenamev (first_element, args);
args             1355 lib/utilunix.c     va_end (args);
args             1268 lib/vfs/path.c     va_list args;
args             1275 lib/vfs/path.c     va_start (args, first_element);
args             1276 lib/vfs/path.c     str_path = mc_build_filenamev (first_element, args);
args             1277 lib/vfs/path.c     va_end (args);
args             1297 lib/vfs/path.c     va_list args;
args             1305 lib/vfs/path.c     va_start (args, first_element);
args             1306 lib/vfs/path.c     str_path = mc_build_filenamev (first_element, args);
args             1307 lib/vfs/path.c     va_end (args);
args             1330 lib/vfs/path.c     va_list args;
args             1339 lib/vfs/path.c     va_start (args, first_vpath);
args             1351 lib/vfs/path.c         current_vpath = va_arg (args, const vfs_path_t *);
args             1354 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              190 lib/widget/label.c     va_list args;
args              193 lib/widget/label.c     va_start (args, format);
args              194 lib/widget/label.c     g_vsnprintf (buf, sizeof (buf), format, args);
args              195 lib/widget/label.c     va_end (args);
args              354 lib/widget/wtools.c     va_list args;
args              358 lib/widget/wtools.c     va_start (args, text);
args              359 lib/widget/wtools.c     p = g_strdup_vprintf (text, args);
args              360 lib/widget/wtools.c     va_end (args);
args               88 src/diffviewer/internal.h     const char *args;              // Args passed to diff
args              806 src/diffviewer/ydiff.c dff_execute (const char *args, const char *extra, const char *file1, const char *file2, GArray *ops)
args              822 src/diffviewer/ydiff.c     cmd = g_strdup_printf ("diff %s %s %s %s %s", args, extra, opt, file1_esc, file2_esc);
args             1714 src/diffviewer/ydiff.c     ndiff = dff_execute (dview->args, extra, dview->file[DIFF_LEFT], dview->file[DIFF_RIGHT], ops);
args             2386 src/diffviewer/ydiff.c dview_init (WDiff *dview, const char *args, const char *file1, const char *file2,
args             2441 src/diffviewer/ydiff.c     dview->args = args;
args              809 src/editor/syntax.c get_args (char *l, char **args, int args_size)
args              825 src/editor/syntax.c         args[argc++] = convert (p);
args              827 src/editor/syntax.c     args[argc] = (char *) NULL;
args              954 src/editor/syntax.c edit_read_syntax_rules (WEdit *edit, FILE *f, char **args, int args_size)
args              967 src/editor/syntax.c     args[0] = NULL;
args             1006 src/editor/syntax.c         argc = get_args (l, args, args_size);
args             1007 src/editor/syntax.c         a = args + 1;
args             1008 src/editor/syntax.c         if (args[0] == NULL)
args             1012 src/editor/syntax.c         else if (strcmp (args[0], "include") == 0)
args             1020 src/editor/syntax.c             f = open_include_file (args[1]);
args             1030 src/editor/syntax.c         else if (strcmp (args[0], "caseinsensitive") == 0)
args             1034 src/editor/syntax.c         else if (strcmp (args[0], "wholechars") == 0)
args             1055 src/editor/syntax.c         else if (strcmp (args[0], "context") == 0)
args             1122 src/editor/syntax.c             subst_defines (edit->defines, a, &args[ARGS_LEN]);
args             1139 src/editor/syntax.c         else if (strcmp (args[0], "spellcheck") == 0)
args             1148 src/editor/syntax.c         else if (strcmp (args[0], "keyword") == 0)
args             1186 src/editor/syntax.c             subst_defines (edit->defines, a, &args[ARGS_LEN]);
args             1205 src/editor/syntax.c         else if (*(args[0]) == '#')
args             1209 src/editor/syntax.c         else if (strcmp (args[0], "file") == 0)
args             1213 src/editor/syntax.c         else if (strcmp (args[0], "define") == 0)
args             1291 src/editor/syntax.c     char *args[ARGS_LEN], *l = NULL;
args             1309 src/editor/syntax.c     args[0] = NULL;
args             1316 src/editor/syntax.c         (void) get_args (l, args, ARGS_LEN - 1);  // Final NULL
args             1317 src/editor/syntax.c         if (args[0] == NULL)
args             1321 src/editor/syntax.c         if (!found && strcmp (args[0], "include") == 0)
args             1323 src/editor/syntax.c             if (args[1] == NULL || (g = open_include_file (args[1])) == NULL)
args             1332 src/editor/syntax.c         if (strcmp (args[0], "file") != 0)
args             1338 src/editor/syntax.c         if (args[1] == NULL || args[2] == NULL)
args             1347 src/editor/syntax.c             g_ptr_array_add (pnames, g_strdup (args[2]));
args             1352 src/editor/syntax.c             if (strcmp (type, args[2]) == 0)
args             1360 src/editor/syntax.c             q = mc_search (args[1], DEFAULT_CHARSET, editor_file, MC_SEARCH_T_REGEX);
args             1362 src/editor/syntax.c             if (!q && args[3] != NULL)
args             1365 src/editor/syntax.c                 q = mc_search (args[3], DEFAULT_CHARSET, first_line, MC_SEARCH_T_REGEX);
args             1373 src/editor/syntax.c                 syntax_type = args[2];
args             1374 src/editor/syntax.c                 line_error = edit_read_syntax_rules (edit, g ? g : f, args, ARGS_LEN - 1);
args              549 src/filemanager/ext.c get_popen_information (const char *cmd_file, const char *args, char *buf, int buflen)
args              555 src/filemanager/ext.c     command = g_strconcat (cmd_file, args, " 2>/dev/null", (char *) NULL);
args              627 src/filemanager/ext.c             char *args;
args              629 src/filemanager/ext.c             args = g_strdup_printf (" -L %s -i %s", lang, filename_quoted);
args              632 src/filemanager/ext.c             ret = get_popen_information ("enca", args, buf, buflen);
args              633 src/filemanager/ext.c             g_free (args);