Lines Matching refs:DexFileLoader
48 class DexFileLoader {
110 DexFileLoader(const char* filename, int fd, const std::string& location) in DexFileLoader() function
115 DexFileLoader(std::shared_ptr<DexFileContainer> container, const std::string& location) in DexFileLoader() function
120 DexFileLoader(const uint8_t* base, size_t size, const std::string& location);
122 DexFileLoader(std::vector<uint8_t>&& memory, const std::string& location);
124 DexFileLoader(MemMap&& mem_map, const std::string& location);
126 DexFileLoader(int fd, const std::string& location) in DexFileLoader() function
127 : DexFileLoader(/*filename=*/location.c_str(), fd, location) {} in DexFileLoader()
129 DexFileLoader(const char* filename, const std::string& location) in DexFileLoader() function
130 : DexFileLoader(filename, /*fd=*/-1, location) {} in DexFileLoader()
132 explicit DexFileLoader(const std::string& location) in DexFileLoader() function
133 : DexFileLoader(location.c_str(), /*fd=*/-1, location) {} in DexFileLoader()
135 virtual ~DexFileLoader() {} in ~DexFileLoader()