Searched defs:relro_fd (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/include/android/
H A Ddlext.h39 /* When set, write the GNU RELRO section of the mapped library to relro_fd
46 /* When set, compare the GNU RELRO section of the mapped library to relro_fd
69 int relro_fd; member in struct:__anon25
/bionic/tests/
H A Ddlext_test.cpp183 extinfo_.relro_fd = -1;
192 if (extinfo_.relro_fd != -1) {
193 ASSERT_NOERROR(close(extinfo_.relro_fd));
198 int relro_fd = open(relro_file_, O_CREAT | O_RDWR | O_TRUNC, 0644); local
199 ASSERT_NOERROR(relro_fd);
205 extinfo_.relro_fd = relro_fd;
215 ASSERT_NOERROR(close(relro_fd));
223 relro_fd = open(relro_file_, O_RDONLY);
224 ASSERT_NOERROR(relro_fd);
254 int relro_fd = open(relro_file_, O_CREAT | O_RDWR | O_TRUNC, 0644); local
263 int relro_fd = open(relro_file_, O_RDONLY); local
[all...]

Completed in 157 milliseconds