resolved_path     245 lib/util.h     char *mc_realpath (const char *path, char *resolved_path);
resolved_path    1052 lib/utilunix.c mc_realpath (const char *path, char *resolved_path)
resolved_path    1078 lib/utilunix.c     return realpath (path, resolved_path);
resolved_path    1182 lib/utilunix.c                     strcpy (resolved_path, got_path);
resolved_path    1216 lib/utilunix.c         strcpy (resolved_path, got_path);
resolved_path    1217 lib/utilunix.c         return resolved_path;
resolved_path      38 tests/lib/mc_realpath.c static char resolved_path[PATH_MAX];
resolved_path      90 tests/lib/mc_realpath.c     if (mc_realpath (data->input_string, resolved_path) == NULL)
resolved_path      91 tests/lib/mc_realpath.c         resolved_path[0] = '\0';
resolved_path      94 tests/lib/mc_realpath.c     mctest_assert_str_eq (resolved_path, data->expected_string);