resolved_path      21 include/crm/common/io_internal.h int pcmk__real_path(const char *path, char **resolved_path);
resolved_path      81 lib/common/io.c pcmk__real_path(const char *path, char **resolved_path)
resolved_path      83 lib/common/io.c     CRM_CHECK((path != NULL) && (resolved_path != NULL), return EINVAL);
resolved_path      87 lib/common/io.c     *resolved_path = realpath(path, NULL);
resolved_path      88 lib/common/io.c     return (*resolved_path == NULL)? errno : pcmk_rc_ok;
resolved_path      93 lib/common/io.c     *resolved_path = malloc(PATH_MAX);
resolved_path      94 lib/common/io.c     if ((*resolved_path == NULL) || (realpath(path, *resolved_path) == NULL)) {
resolved_path      99 lib/common/io.c     *resolved_path = NULL;