Searched defs:segment (Results 1 - 6 of 6) sorted by relevance

/art/test/929-search/
H A Dsearch.cc34 JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jstring segment) {
35 ScopedUtfChars utf(env, segment);
44 JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jstring segment) {
45 ScopedUtfChars utf(env, segment);
33 Java_Main_addToBootClassLoader( JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jstring segment) argument
43 Java_Main_addToSystemClassLoader( JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jstring segment) argument
/art/test/929-search/src/
H A DMain.java30 private static void doTest(boolean boot, String segment, String className) throws Exception { argument
34 addToBootClassLoader(segment);
37 addToSystemClassLoader(segment);
42 throw new RuntimeException(className + "(" + boot + "/" + segment + "): " +
/art/openjdkjvmti/
H A Dti_search.cc154 for (const std::string& segment : gSystemOnloadSegments) {
158 str_value += segment;
217 const char* segment) {
225 if (segment == nullptr) {
233 segment, segment, /* verify */ true, /* verify_checksum */ true, &error_msg, &dex_files)) {
234 LOG(WARNING) << "Could not open " << segment << " for boot classpath extension: " << error_msg;
247 const char* segment) {
248 if (segment == nullptr) {
257 gSystemOnloadSegments.push_back(segment);
216 AddToBootstrapClassLoaderSearch(jvmtiEnv* env ATTRIBUTE_UNUSED, const char* segment) argument
246 AddToSystemClassLoaderSearch(jvmtiEnv* jvmti_env ATTRIBUTE_UNUSED, const char* segment) argument
[all...]
H A DOpenjdkJvmTi.cc1277 static jvmtiError AddToBootstrapClassLoaderSearch(jvmtiEnv* env, const char* segment) { argument
1279 return SearchUtil::AddToBootstrapClassLoaderSearch(env, segment);
1282 static jvmtiError AddToSystemClassLoaderSearch(jvmtiEnv* env, const char* segment) { argument
1284 return SearchUtil::AddToSystemClassLoaderSearch(env, segment);
/art/runtime/
H A Delf_file.cc1121 // base_address_ after the first zero segment).
1168 // empty segment, nothing to map
1207 *error_msg = StringPrintf("File size of %zd bytes not large enough to contain ELF segment "
1214 std::unique_ptr<MemMap> segment(
1225 if (segment.get() == nullptr) {
1226 *error_msg = StringPrintf("Failed to map ELF file segment %d from %s: %s",
1230 if (segment->Begin() != p_vaddr) {
1231 *error_msg = StringPrintf("Failed to map ELF file segment %d from %s at expected address %p, "
1233 i, file->GetPath().c_str(), p_vaddr, segment->Begin());
1236 segments_.push_back(segment
1324 const MemMap* segment = segments_[i]; local
[all...]
/art/openjdkjvmti/include/
H A Djvmti.h1751 const char* segment);
1760 const char* segment);
2468 jvmtiError AddToBootstrapClassLoaderSearch(const char* segment) { argument
2469 return functions->AddToBootstrapClassLoaderSearch(this, segment);
2472 jvmtiError AddToSystemClassLoaderSearch(const char* segment) { argument
2473 return functions->AddToSystemClassLoaderSearch(this, segment);

Completed in 664 milliseconds