resolved_path     245 lib/util.h     char *mc_realpath (const char *path, char *resolved_path);
resolved_path    1063 lib/utilunix.c mc_realpath (const char *path, char *resolved_path)
resolved_path    1091 lib/utilunix.c     return realpath (path, resolved_path);
resolved_path    1195 lib/utilunix.c                     strcpy (resolved_path, got_path);
resolved_path    1229 lib/utilunix.c         strcpy (resolved_path, got_path);
resolved_path    1230 lib/utilunix.c         return resolved_path;
resolved_path      38 tests/lib/mc_realpath.c static char resolved_path[PATH_MAX];
resolved_path     100 tests/lib/mc_realpath.c     if (mc_realpath (data->input_string, resolved_path) == NULL)
resolved_path     101 tests/lib/mc_realpath.c         resolved_path[0] = '\0';
resolved_path     104 tests/lib/mc_realpath.c     mctest_assert_str_eq (resolved_path, data->expected_string);