HomeSort by relevance Sort by last modified time
    Searched refs:opened_dex_files (Results 1 - 11 of 11) sorted by null

  /art/test/674-hiddenapi/
hiddenapi.cc 30 std::vector<std::vector<std::unique_ptr<const DexFile>>> opened_dex_files; member in namespace:art::Test674HiddenApi
44 CHECK_LT(index, opened_dex_files.size());
45 for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files[index]) {
58 const size_t index = opened_dex_files.size();
60 opened_dex_files.push_back(std::vector<std::unique_ptr<const DexFile>>());
70 &opened_dex_files[index])) {
78 for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files[index]) {
  /art/runtime/
class_loader_context.cc 96 for (std::unique_ptr<const DexFile>& dex_file : info->opened_dex_files) {
397 // Opens requested class path files and appends them to opened_dex_files. If the dex files have
430 size_t opened_dex_files_index = info->opened_dex_files.size();
462 &info->opened_dex_files)) {
475 info->opened_dex_files.insert(info->opened_dex_files.end(),
488 &info->opened_dex_files)) {
506 for (size_t k = opened_dex_files_index; k < info->opened_dex_files.size(); k++) {
507 std::unique_ptr<const DexFile>& dex = info->opened_dex_files[k];
616 for (size_t k = 0; k < info.opened_dex_files.size(); k++)
    [all...]
class_loader_context.h 54 // Opens requested class path files and appends them to ClassLoaderInfo::opened_dex_files.
185 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; member in struct:art::ClassLoaderContext::ClassLoaderInfo
oat_file_manager.cc 267 std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) {
275 opened_dex_files->push_back(std::move(dex_file));
294 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local
299 AddDexFilesFromOat(oat_file, &dex_files_unloaded, &opened_dex_files);
    [all...]
class_loader_context_test.cc 151 ASSERT_EQ(all_dex_files->size(), info.opened_dex_files.size());
155 info.opened_dex_files[cur_open_dex_index++];
    [all...]
  /art/dex2oat/linker/
oat_writer.h 182 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files);
318 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files);
342 const std::vector<std::unique_ptr<const DexFile>>& opened_dex_files);
344 const std::vector<std::unique_ptr<const DexFile>>& opened_dex_files);
oat_writer_test.cc 178 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local
187 &opened_dex_files)) {
194 for (const std::unique_ptr<const DexFile>& dex_file : opened_dex_files) {
257 for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files) {
    [all...]
image_test.h 245 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local
276 opened_dex_files.push_back(std::move(cur_dex_file));
oat_writer.cc 667 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) {
709 *opened_dex_files = std::move(dex_files);
    [all...]
  /art/dex2oat/
dex2oat.cc 1575 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local
    [all...]
  /art/oatdump/
oatdump.cc 121 static std::map<const OatDexFile*, std::unique_ptr<const DexFile>> opened_dex_files; member in namespace:art
125 auto it = opened_dex_files.find(oat_dex_file);
126 if (it != opened_dex_files.end()) {
130 opened_dex_files.emplace(oat_dex_file, std::unique_ptr<const DexFile>(ret));
    [all...]

Completed in 558 milliseconds