diff options
Diffstat (limited to 'runtime/class_loader_context.h')
-rw-r--r-- | runtime/class_loader_context.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime/class_loader_context.h b/runtime/class_loader_context.h index 71f40ac167..83fb2de595 100644 --- a/runtime/class_loader_context.h +++ b/runtime/class_loader_context.h @@ -227,12 +227,13 @@ class ClassLoaderContext { // of the call. void CheckDexFilesOpened(const std::string& calling_method) const; - // Adds the `class_loader` info to the context. + // Creates the `ClassLoaderInfo` representing`class_loader`. // The dex file present in `dex_elements` array (if not null) will be added at the end of // the classpath. - bool AddInfoToContextFromClassLoader(ScopedObjectAccessAlreadyRunnable& soa, - Handle<mirror::ClassLoader> class_loader, - Handle<mirror::ObjectArray<mirror::Object>> dex_elements) + static bool CreateInfoFromClassLoader(ScopedObjectAccessAlreadyRunnable& soa, + Handle<mirror::ClassLoader> class_loader, + Handle<mirror::ObjectArray<mirror::Object>> dex_elements, + std::unique_ptr<ClassLoaderInfo>* return_info) REQUIRES_SHARED(Locks::mutator_lock_); // Encodes the context as a string suitable to be passed to dex2oat or to be added to the |