Lines Matching refs:res
59 char *res; in d_namespace_path() local
65 res = dentry_path(path->dentry, buf, buflen); in d_namespace_path()
66 *name = res; in d_namespace_path()
67 if (IS_ERR(res)) { in d_namespace_path()
69 return PTR_ERR(res); in d_namespace_path()
85 res = __d_path(path, &root, buf, buflen); in d_namespace_path()
88 res = d_absolute_path(path, buf, buflen); in d_namespace_path()
96 if (!res || IS_ERR(res)) { in d_namespace_path()
97 if (PTR_ERR(res) == -ENAMETOOLONG) in d_namespace_path()
100 res = dentry_path_raw(path->dentry, buf, buflen); in d_namespace_path()
101 if (IS_ERR(res)) { in d_namespace_path()
102 error = PTR_ERR(res); in d_namespace_path()
109 *name = res; in d_namespace_path()
142 if (*res == '/') in d_namespace_path()
143 *name = res + 1; in d_namespace_path()