HomeSort by relevance Sort by last modified time
    Searched refs:sync_file_info (Results 1 - 5 of 5) sorted by null

  /system/core/libsync/include/ndk/
sync.h 62 * The returned sync_file_info must be freed by calling sync_file_info_free().
64 struct sync_file_info *sync_file_info(int32_t fd);
72 static inline struct sync_fence_info* sync_get_fence_info(const struct sync_file_info* info) {
81 /** Free a struct sync_file_info structure */
82 void sync_file_info_free(struct sync_file_info *info);
  /bionic/libc/kernel/uapi/linux/
sync_file.h 41 struct sync_file_info { struct
54 #define SYNC_IOC_FILE_INFO _IOWR(SYNC_IOC_MAGIC, 4, struct sync_file_info)
  /external/kernel-headers/original/uapi/linux/
sync_file.h 50 * struct sync_file_info - data returned from fence info ioctl
53 * @flags: sync_file_info flags
59 struct sync_file_info { struct
90 * Takes a struct sync_file_info. If num_fences is 0, the field is updated
95 #define SYNC_IOC_FILE_INFO _IOWR(SYNC_IOC_MAGIC, 4, struct sync_file_info)
  /system/core/libsync/
sync.c 205 static struct sync_file_info *modern_sync_file_info(int fd)
207 struct sync_file_info local_info;
208 struct sync_file_info *info;
216 info = calloc(1, sizeof(struct sync_file_info) +
232 const struct sync_file_info *info)
261 static struct sync_file_info* legacy_fence_info_to_sync_file_info(
264 struct sync_file_info *info;
275 info = calloc(1, sizeof(struct sync_file_info) +
319 struct sync_file_info* file_info;
332 struct sync_file_info* sync_file_info(int32_t fd function
    [all...]
  /system/core/libsync/tests/
sync_test.cpp 176 struct sync_file_info *info = sync_file_info(getFd());
216 struct sync_file_info* modern = sync_file_info(f.getFd());

Completed in 98 milliseconds