Home | History | Annotate | Download | only in tests

Lines Matching defs:file_handle

54 struct file_handle {
99 struct file_handle *fh =
100 (struct file_handle *) (uintptr_t) handle;
106 sizeof(struct file_handle),
128 struct file_handle *fh =
129 (struct file_handle *) (uintptr_t) handle;
137 sizeof(struct file_handle),
201 struct file_handle *handle =
202 tail_alloc(sizeof(struct file_handle) + MAX_HANDLE_SZ);
203 struct file_handle *handle_0 =
204 tail_alloc(sizeof(struct file_handle) + 0);
205 struct file_handle *handle_8 =
206 tail_alloc(sizeof(struct file_handle) + 8);
207 struct file_handle *handle_128 =
208 tail_alloc(sizeof(struct file_handle) + 128);
209 struct file_handle *handle_256 =
210 tail_alloc(sizeof(struct file_handle) + 256);
227 { (uintptr_t) (handle_0 + sizeof(struct file_handle)),
240 { (uintptr_t) (handle_0 + sizeof(struct file_handle)),
272 fill_memory((char *) handle_128 + sizeof(struct file_handle), 128);
273 fill_memory((char *) handle_256 + sizeof(struct file_handle), 256);
276 handle_0 + sizeof(struct file_handle));