Lines Matching refs:extinfo
94 android_dlextinfo extinfo; in DoCreateRelroFile() local
95 extinfo.flags = ANDROID_DLEXT_RESERVED_ADDRESS | ANDROID_DLEXT_WRITE_RELRO | in DoCreateRelroFile()
98 extinfo.reserved_addr = gReservedAddress; in DoCreateRelroFile()
99 extinfo.reserved_size = gReservedSize; in DoCreateRelroFile()
100 extinfo.relro_fd = tmp_fd; in DoCreateRelroFile()
101 extinfo.library_namespace = ns; in DoCreateRelroFile()
102 void* handle = android_dlopen_ext(lib, RTLD_NOW, &extinfo); in DoCreateRelroFile()
133 android_dlextinfo extinfo; in DoLoadWithRelroFile() local
134 extinfo.flags = ANDROID_DLEXT_RESERVED_ADDRESS | ANDROID_DLEXT_USE_RELRO | in DoLoadWithRelroFile()
137 extinfo.reserved_addr = gReservedAddress; in DoLoadWithRelroFile()
138 extinfo.reserved_size = gReservedSize; in DoLoadWithRelroFile()
139 extinfo.relro_fd = relro_fd; in DoLoadWithRelroFile()
140 extinfo.library_namespace = ns; in DoLoadWithRelroFile()
141 void* handle = android_dlopen_ext(lib, RTLD_NOW, &extinfo); in DoLoadWithRelroFile()