Lines Matching refs:out0
122 std::unique_ptr<mockfs_buf_out> out0(new mockfs_buf_out); in ReturnErrno() local
123 out0->header.unique = in.header.unique; in ReturnErrno()
124 out0->header.error = -error; in ReturnErrno()
125 out0->header.len = sizeof(out0->header); in ReturnErrno()
126 out.push_back(std::move(out0)); in ReturnErrno()
136 std::unique_ptr<mockfs_buf_out> out0(new mockfs_buf_out); in ReturnNegativeCache() local
137 out0->body.entry.nodeid = 0; in ReturnNegativeCache()
138 out0->header.unique = in.header.unique; in ReturnNegativeCache()
139 out0->header.error = 0; in ReturnNegativeCache()
140 out0->body.entry.entry_valid = entry_valid->tv_sec; in ReturnNegativeCache()
141 out0->body.entry.entry_valid_nsec = entry_valid->tv_nsec; in ReturnNegativeCache()
142 SET_OUT_HEADER_LEN(*out0, entry); in ReturnNegativeCache()
143 out.push_back(std::move(out0)); in ReturnNegativeCache()
152 std::unique_ptr<mockfs_buf_out> out0(new mockfs_buf_out); in ReturnImmediate() local
153 out0->header.unique = in.header.unique; in ReturnImmediate()
154 f(in, *out0); in ReturnImmediate()
155 out.push_back(std::move(out0)); in ReturnImmediate()
904 std::unique_ptr<mockfs_buf_out> out0(new mockfs_buf_out); in process_default() local
905 out0->header.unique = in.header.unique; in process_default()
906 out0->header.error = -EOPNOTSUPP; in process_default()
907 out0->header.len = sizeof(out0->header); in process_default()
908 out.push_back(std::move(out0)); in process_default()