resolved_path     235 lib/util.h     char *mc_realpath (const char *path, char *resolved_path);
resolved_path    1062 lib/utilunix.c mc_realpath (const char *path, char *resolved_path)
resolved_path    1090 lib/utilunix.c     return realpath (path, resolved_path);
resolved_path    1194 lib/utilunix.c                     strcpy (resolved_path, got_path);
resolved_path    1228 lib/utilunix.c         strcpy (resolved_path, got_path);
resolved_path    1229 lib/utilunix.c         return resolved_path;
resolved_path      38 tests/lib/mc_realpath.c static char resolved_path[PATH_MAX];
resolved_path     105 tests/lib/mc_realpath.c     if (mc_realpath (data->input_string, resolved_path) == NULL)
resolved_path     106 tests/lib/mc_realpath.c         resolved_path[0] = '\0';
resolved_path     109 tests/lib/mc_realpath.c     mctest_assert_str_eq (resolved_path, data->expected_string);