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

  /art/runtime/
class_loader_context.cc 67 for (std::unique_ptr<const DexFile>& dex_file : info.opened_dex_files) {
187 // Opens requested class path files and appends them to opened_dex_files. If the dex files have
209 size_t opened_dex_files_index = info.opened_dex_files.size();
234 &info.opened_dex_files)) {
247 info.opened_dex_files.insert(info.opened_dex_files.end(),
268 for (size_t k = opened_dex_files_index; k < info.opened_dex_files.size(); k++) {
269 std::unique_ptr<const DexFile>& dex = info.opened_dex_files[k];
338 for (size_t k = 0; k < info.opened_dex_files.size(); k++) {
339 const std::unique_ptr<const DexFile>& dex_file = info.opened_dex_files[k]
    [all...]
class_loader_context.h 39 // Opens requested class path files and appends them to ClassLoaderInfo::opened_dex_files.
153 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; member in struct:art::ClassLoaderContext::ClassLoaderInfo
oat_file_manager.cc 246 std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) {
254 opened_dex_files->push_back(std::move(dex_file));
373 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local
378 AddDexFilesFromOat(oat_file, &dex_files_unloaded, &opened_dex_files);
class_loader_context_test.cc 83 ASSERT_EQ(all_dex_files->size(), info.opened_dex_files.size());
87 info.opened_dex_files[cur_open_dex_index++];
  /art/compiler/
oat_writer.h 172 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files);
299 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files);
326 const std::vector<std::unique_ptr<const DexFile>>& opened_dex_files);
328 const std::vector<std::unique_ptr<const DexFile>>& opened_dex_files);
oat_test.cc 194 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local
203 &opened_dex_files)) {
210 for (const std::unique_ptr<const DexFile>& dex_file : opened_dex_files) {
261 for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files) {
    [all...]
image_test.h 254 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local
284 opened_dex_files.push_back(std::move(cur_dex_file));
oat_writer.cc 537 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) {
595 *opened_dex_files = std::move(dex_files);
    [all...]
  /art/dex2oat/
dex2oat.cc 1633 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local
    [all...]
  /art/oatdump/
oatdump.cc 102 std::unique_ptr<const DexFile>> opened_dex_files; member in namespace:art
106 auto it = opened_dex_files.find(oat_dex_file);
107 if (it != opened_dex_files.end()) {
111 opened_dex_files.emplace(oat_dex_file, std::unique_ptr<const DexFile>(ret));
    [all...]

Completed in 183 milliseconds