resolved_path      58 include/crm/common/internal.h int pcmk__real_path(const char *path, char **resolved_path);
resolved_path     104 lib/common/io.c pcmk__real_path(const char *path, char **resolved_path)
resolved_path     106 lib/common/io.c     CRM_CHECK((path != NULL) && (resolved_path != NULL), return EINVAL);
resolved_path     110 lib/common/io.c     *resolved_path = realpath(path, NULL);
resolved_path     111 lib/common/io.c     return (*resolved_path == NULL)? errno : pcmk_rc_ok;
resolved_path     116 lib/common/io.c     *resolved_path = malloc(PATH_MAX);
resolved_path     117 lib/common/io.c     if ((*resolved_path == NULL) || (realpath(path, *resolved_path) == NULL)) {
resolved_path     122 lib/common/io.c     *resolved_path = NULL;