Searched refs:value_ptr (Results 1 – 5 of 5) sorted by relevance
/art/openjdkjvmti/ |
D | ti_properties.cc | 161 static jvmtiError GetLibraryPath(jvmtiEnv* env, char** value_ptr) { in GetLibraryPath() argument 167 return Copy(env, prop_assignment.substr(assign_pos + 1).c_str(), value_ptr); in GetLibraryPath() 197 *value_ptr = nullptr; in GetLibraryPath() 202 return Copy(env, chars.c_str(), value_ptr); in GetLibraryPath() 207 char** value_ptr) { in GetSystemProperty() argument 208 if (property == nullptr || value_ptr == nullptr) { in GetSystemProperty() 213 return GetLibraryPath(env, value_ptr); in GetSystemProperty() 217 return Copy(env, DefaultToDot(art::Runtime::Current()->GetClassPathString()), value_ptr); in GetSystemProperty() 222 return Copy(env, kProperties[i][1], value_ptr); in GetSystemProperty()
|
D | ti_properties.h | 44 static jvmtiError GetSystemProperty(jvmtiEnv* env, const char* property, char** value_ptr);
|
D | OpenjdkJvmTi.cc | 534 jobject* value_ptr) { in GetLocalObject() argument 537 return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); in GetLocalObject() 543 jobject* value_ptr) { in GetLocalInstance() argument 546 return MethodUtil::GetLocalInstance(env, thread, depth, value_ptr); in GetLocalInstance() 553 jint* value_ptr) { in GetLocalInt() argument 556 return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); in GetLocalInt() 563 jlong* value_ptr) { in GetLocalLong() argument 566 return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); in GetLocalLong() 573 jfloat* value_ptr) { in GetLocalFloat() argument 576 return MethodUtil::GetLocalVariable(env, thread, depth, slot, value_ptr); in GetLocalFloat() [all …]
|
/art/tools/jvmti-agents/titrace/ |
D | titrace.cc | 106 char* value_ptr; in Initialize() local 107 error = jvmti->GetSystemProperty("java.vm.name", /*out*/ &value_ptr); in Initialize() 109 CHECK(value_ptr != nullptr) << "Returned property was null for 'java.vm.name'"; in Initialize() 111 if (strcmp("Dalvik", value_ptr) == 0) { in Initialize()
|
/art/openjdkjvmti/include/ |
D | jvmti.h | 1111 jobject* value_ptr); 1118 jint* value_ptr); 1125 jlong* value_ptr); 1132 jfloat* value_ptr); 1139 jdouble* value_ptr); 1673 char** value_ptr); 1782 jobject* value_ptr); 2037 jobject* value_ptr) { in GetLocalObject() 2038 return functions->GetLocalObject(this, thread, depth, slot, value_ptr); in GetLocalObject() 2043 jobject* value_ptr) { in GetLocalInstance() [all …]
|