resolved_path     218 lib/util.h     char *mc_realpath (const char *path, char *resolved_path);
resolved_path     992 lib/utilunix.c mc_realpath (const char *path, char *resolved_path)
resolved_path    1020 lib/utilunix.c     return realpath (path, resolved_path);
resolved_path    1124 lib/utilunix.c                     strcpy (resolved_path, got_path);
resolved_path    1158 lib/utilunix.c         strcpy (resolved_path, got_path);
resolved_path    1159 lib/utilunix.c         return resolved_path;
resolved_path      38 tests/lib/mc_realpath.c static char resolved_path[PATH_MAX];
resolved_path      95 tests/lib/mc_realpath.c     if (mc_realpath (data->input_string, resolved_path) == NULL)
resolved_path      96 tests/lib/mc_realpath.c         resolved_path[0] = '\0';
resolved_path      99 tests/lib/mc_realpath.c     mctest_assert_str_eq (resolved_path, data->expected_string);