HomeSort by relevance Sort by last modified time
    Searched defs:file_handle (Results 1 - 12 of 12) sorted by null

  /external/sfntly/cpp/src/test/
file_io_test.cc 27 FILE* file_handle = NULL; local
29 fopen_s(&file_handle, SAMPLE_TTF_FILE, "rb");
31 file_handle = fopen(SAMPLE_TTF_FILE, "rb");
33 if (file_handle == NULL) {
36 fseek(file_handle, 0, SEEK_END);
37 size_t length = ftell(file_handle);
38 fseek(file_handle, 0, SEEK_SET);
41 size_t bytes_read = fread(&(b1[0]), 1, length, file_handle);
43 fclose(file_handle);
88 FILE* file_handle = NULL local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/drivers/io/
io_semihosting.c 121 long file_handle, sh_result; local
125 file_handle = (long)entity->info;
127 sh_result = semihosting_file_seek(file_handle, offset);
162 long file_handle; local
168 file_handle = (long)entity->info;
170 sh_result = semihosting_file_read(file_handle, &bytes, buffer);
188 long file_handle; local
195 file_handle = (long)entity->info;
197 sh_result = semihosting_file_write(file_handle, &bytes, buffer);
214 long file_handle; local
    [all...]
  /external/libjpeg-turbo/
jmemsys.h 108 short file_handle; /* DOS file handle if it's a temp file */ member in union:__anon23381
  /device/linaro/bootloader/arm-trusted-firmware/lib/semihosting/
semihosting.c 82 long semihosting_file_seek(long file_handle, ssize_t offset)
87 seek_block.handle = file_handle;
99 long semihosting_file_read(long file_handle, size_t *length, uintptr_t buffer)
107 read_block.handle = file_handle;
123 long semihosting_file_write(long file_handle,
132 write_block.handle = file_handle;
142 long semihosting_file_close(long file_handle)
145 (void *) &file_handle);
148 long semihosting_file_length(long file_handle)
151 (void *) &file_handle);
182 long file_handle; local
203 long file_handle; local
    [all...]
  /frameworks/native/libs/vr/libpdx/
client_tests.cpp 556 LocalHandle file_handle; local
557 EXPECT_FALSE(transaction_.GetFileHandle(1, &file_handle));
558 EXPECT_TRUE(transaction_.GetFileHandle(1, &file_handle));
  /external/strace/tests/
file_handle.c 54 struct file_handle { struct
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
    [all...]
  /external/strace/tests-m32/
file_handle.c 54 struct file_handle { struct
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
    [all...]
  /external/strace/tests-mx32/
file_handle.c 54 struct file_handle { struct
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
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
fcntl.h 239 struct file_handle struct
325 struct file_handle *__handle, int *__mnt_id,
332 extern int open_by_handle_at (int __mountdirfd, struct file_handle *__handle,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
fcntl.h 254 struct file_handle struct
343 struct file_handle *__handle, int *__mnt_id,
350 extern int open_by_handle_at (int __mountdirfd, struct file_handle *__handle,
  /external/ImageMagick/MagickCore/
nt-base.c 1671 file_handle, local
2572 file_handle; local
    [all...]
  /external/libusb/libusb/os/
windows_winusb.c 2411 HANDLE file_handle; local
2545 HANDLE file_handle, winusb_handle; local
3628 HANDLE file_handle; local
    [all...]

Completed in 1396 milliseconds