Lines Matching defs:oh
1867 struct fuse_out_header oh;
1873 err = fuse_copy_one(cs, &oh, sizeof(oh));
1878 if (oh.len != nbytes)
1882 * Zero oh.unique indicates unsolicited notification message
1885 if (!oh.unique) {
1897 err = fuse_notify(fch->conn, oh.error, nbytes - sizeof(oh), cs);
1902 if (oh.error <= -512 || oh.error > 0)
1908 req = fuse_request_find(fpq, oh.unique & ~FUSE_INT_REQ_BIT);
1917 if (oh.unique & FUSE_INT_REQ_BIT) {
1924 else if (oh.error == -ENOSYS)
1926 else if (oh.error == -EAGAIN)
1936 req->out.h = oh;
1943 if (oh.error)
1944 err = nbytes != sizeof(oh) ? -EINVAL : 0;