resolved_path      75 include/crm/common/internal.h int pcmk__real_path(const char *path, char **resolved_path);
resolved_path      85 lib/common/io.c pcmk__real_path(const char *path, char **resolved_path)
resolved_path      87 lib/common/io.c     CRM_CHECK((path != NULL) && (resolved_path != NULL), return EINVAL);
resolved_path      91 lib/common/io.c     *resolved_path = realpath(path, NULL);
resolved_path      92 lib/common/io.c     return (*resolved_path == NULL)? errno : pcmk_rc_ok;
resolved_path      97 lib/common/io.c     *resolved_path = malloc(PATH_MAX);
resolved_path      98 lib/common/io.c     if ((*resolved_path == NULL) || (realpath(path, *resolved_path) == NULL)) {
resolved_path     103 lib/common/io.c     *resolved_path = NULL;