Home
last modified time | relevance | path

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

/art/libdexfile/external/
Ddex_file_ext.cc149 /*out*/ const ExtDexFileString** ext_error_msg, in ExtDexFileOpenFromMemory() argument
153 *ext_error_msg = nullptr; in ExtDexFileOpenFromMemory()
166 *ext_error_msg = new ExtDexFileString{ in ExtDexFileOpenFromMemory()
174 *ext_error_msg = new ExtDexFileString{ in ExtDexFileOpenFromMemory()
181 *ext_error_msg = nullptr; in ExtDexFileOpenFromMemory()
197 *ext_error_msg = new ExtDexFileString{std::move(error_msg)}; in ExtDexFileOpenFromMemory()
208 /*out*/ const ExtDexFileString** ext_error_msg, in ExtDexFileOpenFromFd() argument
215 *ext_error_msg = new ExtDexFileString{ in ExtDexFileOpenFromFd()
220 *ext_error_msg = new ExtDexFileString{ in ExtDexFileOpenFromFd()
228 *ext_error_msg = new ExtDexFileString{android::base::StringPrintf( in ExtDexFileOpenFromFd()
[all …]
/art/libdexfile/external/include/art_api/
Ddex_file_support.h146 const ExtDexFileString* ext_error_msg = nullptr; in OpenFromMemory() local
147 if (g_ExtDexFileOpenFromMemory(addr, size, location.c_str(), &ext_error_msg, &ext_dex_file)) { in OpenFromMemory()
150 *error_msg = (ext_error_msg == nullptr) ? "" : std::string(DexString(ext_error_msg)); in OpenFromMemory()
169 const ExtDexFileString* ext_error_msg = nullptr; in OpenFromFd() local
170 if (g_ExtDexFileOpenFromFd(fd, offset, location.c_str(), &ext_error_msg, &ext_dex_file)) { in OpenFromFd()
173 *error_msg = std::string(DexString(ext_error_msg)); in OpenFromFd()