/cts/hostsidetests/security/securityPatch/CVE-2016-9120/ |
poc.c | 98 struct ion_allocation_data* g_allocation = NULL; variable in typeref:struct:ion_allocation_data 117 g_allocation = (struct ion_allocation_data*)data; 119 g_allocation->len = 0x1000; 120 g_allocation->align = 8; 121 g_allocation->heap_id_mask = 1 << 25; 122 g_allocation->flags = ION_FLAG_CACHED; 123 g_allocation->handle = -1; 132 ioctl(g_fd, ION_IOC_ALLOC, g_allocation);
|
/cts/hostsidetests/security/securityPatch/CVE-2016-8428/ |
poc.c | 107 struct nvmap_create_handle* g_allocation = NULL; variable in typeref:struct:nvmap_create_handle 126 g_allocation->handle = -1; 127 ioctl(g_fd, NVMAP_IOC_CREATE, g_allocation); 129 return g_allocation->handle; 157 g_allocation = (struct nvmap_create_handle*)data; 158 g_allocation->size = 0x40;
|
/cts/hostsidetests/security/securityPatch/CVE-2016-8429/ |
poc.c | 91 struct nvmap_create_handle* g_allocation = NULL; variable in typeref:struct:nvmap_create_handle 106 ioctl(g_fd, NVMAP_IOC_CREATE, g_allocation); 119 alloc.handle = g_allocation->handle; 139 g_allocation = (struct nvmap_create_handle*)data; 140 g_allocation->size = 1024; 141 g_allocation->handle = -1;
|
/cts/hostsidetests/security/securityPatch/CVE-2016-8424/ |
poc.c | 64 struct nvmap_create_handle* g_allocation = NULL; variable in typeref:struct:nvmap_create_handle 78 ioctl(g_fd, NVMAP_IOC_CREATE, g_allocation); 79 //printf("[*] NVMAP_IOC_CREATE, fd(%d), last error = %d\n", g_allocation->handle, errno); 101 g_allocation = (struct nvmap_create_handle*)data; 102 g_allocation->size = 1024;
|