Lines Matching refs:res
91 char *res; in d_namespace_path() local
99 res = dentry_path(path->dentry, buf, buflen); in d_namespace_path()
100 *name = res; in d_namespace_path()
101 if (IS_ERR(res)) { in d_namespace_path()
103 return PTR_ERR(res); in d_namespace_path()
122 res = __d_path(path, &root, buf, buflen); in d_namespace_path()
125 res = d_absolute_path(path, buf, buflen); in d_namespace_path()
133 if (!res || IS_ERR(res)) { in d_namespace_path()
134 if (PTR_ERR(res) == -ENAMETOOLONG) { in d_namespace_path()
140 res = dentry_path_raw(path->dentry, buf, buflen); in d_namespace_path()
141 if (IS_ERR(res)) { in d_namespace_path()
142 error = PTR_ERR(res); in d_namespace_path()
149 *name = res; in d_namespace_path()