Home
last modified time | relevance | path

Searched refs:rec (Results 1 – 2 of 2) sorted by relevance

/bionic/tests/
Ddlext_test.cpp2013 for (const auto& rec : maps) { in TEST() local
2014 if (rec.pathname == private_library_absolute_path) { in TEST()
2016 addr_start = rec.addr_start; in TEST()
2018 addr_end = rec.addr_end; in TEST()
2019 has_executable_segment = has_executable_segment || (rec.perms & PROT_EXEC) != 0; in TEST()
2021 maps_to_copy.push_back(rec); in TEST()
2037 for (auto& rec : maps_to_copy) { in TEST() local
2038 if (ns_get_dlopened_string_addr >= rec.addr_start && in TEST()
2039 ns_get_dlopened_string_addr < rec.addr_end) { in TEST()
2040 ASSERT_TRUE((rec.perms & PROT_WRITE) == 0); in TEST()
[all …]
Ddlfcn_test.cpp952 for (const map_record& rec : maps) { in TEST() local
953 if (executable_path == rec.pathname) { in TEST()
954 base_address = reinterpret_cast<void*>(rec.addr_start); in TEST()