Lines Matching refs:efi_file_handle

147 	 struct efi_file_handle **root);
150 (struct efi_file_handle *this,
151 struct efi_file_handle **new_handle,
154 static efi_status_t EFIAPI close(struct efi_file_handle *this);
156 static efi_status_t EFIAPI delete(struct efi_file_handle *this);
159 (struct efi_file_handle *this, efi_uintn_t *buffer_size, void *buffer);
162 (struct efi_file_handle *this, efi_uintn_t *buffer_size, void *buffer);
164 static efi_status_t EFIAPI getpos(struct efi_file_handle *this, u64 *pos);
166 static efi_status_t EFIAPI setpos(struct efi_file_handle *this, u64 pos);
169 (struct efi_file_handle *this, const efi_guid_t *info_type,
173 (struct efi_file_handle *this, const efi_guid_t *info_type,
176 static efi_status_t EFIAPI flush(struct efi_file_handle *this);
191 static struct efi_file_handle file = {
206 static struct efi_file_handle volume = {
228 struct efi_file_handle **root) in open_volume()
240 (struct efi_file_handle *this, in open()
241 struct efi_file_handle **new_handle, in open()
254 static efi_status_t EFIAPI close(struct efi_file_handle *this) in close()
266 static efi_status_t EFIAPI delete(struct efi_file_handle *this) in delete()
275 (struct efi_file_handle *this, efi_uintn_t *buffer_size, void *buffer) in read()
292 (struct efi_file_handle *this, efi_uintn_t *buffer_size, void *buffer) in write()
300 static efi_status_t EFIAPI getpos(struct efi_file_handle *this, u64 *pos) in getpos()
310 static efi_status_t EFIAPI setpos(struct efi_file_handle *this, u64 pos) in setpos()
321 (struct efi_file_handle *this, const efi_guid_t *info_type, in getinfo()
352 (struct efi_file_handle *this, const efi_guid_t *info_type, in setinfo()
361 static efi_status_t EFIAPI flush(struct efi_file_handle *this) in flush()