Lines Matching refs:fhp
413 struct file_handle *fhp, *fhp2;
420 fhsize = sizeof(*fhp);
421 fhp = calloc(1, fhsize);
422 if (!fhp) {
426 err = name_to_handle_at(dirfd, cgroup_workdir, fhp, &mount_id, flags);
427 if (err >= 0 || fhp->handle_bytes != 8) {
432 fhsize = sizeof(struct file_handle) + fhp->handle_bytes;
433 fhp2 = realloc(fhp, fhsize);
439 fhp = fhp2;
445 memcpy(id.raw_bytes, fhp->f_handle, 8);
449 free(fhp);