Lines Matching refs:fhp
261 struct file_handle *fhp, *fhp2; in get_cgroup_id() local
268 fhsize = sizeof(*fhp); in get_cgroup_id()
269 fhp = calloc(1, fhsize); in get_cgroup_id()
270 if (!fhp) { in get_cgroup_id()
274 err = name_to_handle_at(dirfd, cgroup_workdir, fhp, &mount_id, flags); in get_cgroup_id()
275 if (err >= 0 || fhp->handle_bytes != 8) { in get_cgroup_id()
280 fhsize = sizeof(struct file_handle) + fhp->handle_bytes; in get_cgroup_id()
281 fhp2 = realloc(fhp, fhsize); in get_cgroup_id()
287 fhp = fhp2; in get_cgroup_id()
293 memcpy(id.raw_bytes, fhp->f_handle, 8); in get_cgroup_id()
297 free(fhp); in get_cgroup_id()