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.cc192 /*out*/ const ExtDexFileString** ext_error_msg, in ExtDexFileOpenFromMemory() argument
196 *ext_error_msg = nullptr; in ExtDexFileOpenFromMemory()
209 *ext_error_msg = new ExtDexFileString{ in ExtDexFileOpenFromMemory()
217 *ext_error_msg = new ExtDexFileString{ in ExtDexFileOpenFromMemory()
224 *ext_error_msg = nullptr; in ExtDexFileOpenFromMemory()
240 *ext_error_msg = new ExtDexFileString{std::move(error_msg)}; in ExtDexFileOpenFromMemory()
251 /*out*/ const ExtDexFileString** ext_error_msg, in ExtDexFileOpenFromFd() argument
258 *ext_error_msg = new ExtDexFileString{ in ExtDexFileOpenFromFd()
263 *ext_error_msg = new ExtDexFileString{ in ExtDexFileOpenFromFd()
271 *ext_error_msg = new ExtDexFileString{android::base::StringPrintf( in ExtDexFileOpenFromFd()
[all …]
/art/libdexfile/external/include/art_api/
Ddex_file_support.h159 const ExtDexFileString* ext_error_msg = nullptr; in OpenFromMemory() local
160 if (g_ExtDexFileOpenFromMemory(addr, size, location.c_str(), &ext_error_msg, &ext_dex_file)) { in OpenFromMemory()
163 *error_msg = (ext_error_msg == nullptr) ? "" : std::string(DexString(ext_error_msg)); in OpenFromMemory()
182 const ExtDexFileString* ext_error_msg = nullptr; in OpenFromFd() local
183 if (g_ExtDexFileOpenFromFd(fd, offset, location.c_str(), &ext_error_msg, &ext_dex_file)) { in OpenFromFd()
186 *error_msg = std::string(DexString(ext_error_msg)); in OpenFromFd()