Home | History | Annotate | Download | only in libsync

Lines Matching refs:info

54     struct sync_fence_info_data *info;
57 info = malloc(4096);
58 if (info == NULL)
61 info->len = 4096;
62 err = ioctl(fd, SYNC_IOC_FENCE_INFO, info);
64 free(info);
68 return info;
71 struct sync_pt_info *sync_pt_info(struct sync_fence_info_data *info,
75 itr = (struct sync_pt_info *) info->pt_info;
79 if ((__u8 *)itr - (__u8 *)info >= (int)info->len)
85 void sync_fence_info_free(struct sync_fence_info_data *info)
87 free(info);