Searched refs:count_ptr (Results 1 – 11 of 11) sorted by relevance
/art/openjdkjvmti/ |
D | ti_stack.h | 52 static jvmtiError GetFrameCount(jvmtiEnv* env, jthread thread, jint* count_ptr); 65 jint* count_ptr);
|
D | ti_properties.h | 42 static jvmtiError GetSystemProperties(jvmtiEnv* env, jint* count_ptr, char*** property_ptr);
|
D | ti_properties.cc | 93 jint* count_ptr, in GetSystemProperties() argument 95 if (count_ptr == nullptr || property_ptr == nullptr) { in GetSystemProperties() 139 *count_ptr = kPropertiesSize + 2; in GetSystemProperties()
|
D | ti_stack.cc | 175 jint* count_ptr) { in TranslateFrameVector() argument 191 *count_ptr = static_cast<jint>(frames.size()); in TranslateFrameVector() 204 *count_ptr = static_cast<jint>(count); in TranslateFrameVector() 240 jint* count_ptr) { in GetStackTrace() argument 264 if (frame_buffer == nullptr || count_ptr == nullptr) { in GetStackTrace() 271 *count_ptr = 0; in GetStackTrace() 284 *count_ptr = static_cast<jint>(closure.index); in GetStackTrace() 303 count_ptr); in GetStackTrace() 705 jint* count_ptr) { in GetFrameCount() argument 725 if (count_ptr == nullptr) { in GetFrameCount() [all …]
|
D | ti_class.h | 80 jint* count_ptr,
|
D | jvmti_weak_table-inl.h | 309 jint* count_ptr, 325 if (count_ptr == nullptr) { 384 *count_ptr = static_cast<jint>(count);
|
D | ti_method.h | 50 jint* count_ptr,
|
D | ti_class.cc | 873 /*out*/jint* count_ptr, in CopyClassDescriptors() argument 908 *count_ptr = static_cast<jint>(descriptors.size()); in CopyClassDescriptors() 915 /*out*/jint* count_ptr, in GetClassLoaderClassDescriptors() argument 922 } else if (count_ptr == nullptr || classes == nullptr) { in GetClassLoaderClassDescriptors() 931 count_ptr, in GetClassLoaderClassDescriptors() 958 return CopyClassDescriptors(env, dex_files, count_ptr, classes); in GetClassLoaderClassDescriptors()
|
D | OpenjdkJvmTi.cc | 290 jint* count_ptr) { in GetStackTrace() argument 297 count_ptr); in GetStackTrace() 321 static jvmtiError GetFrameCount(jvmtiEnv* env, jthread thread, jint* count_ptr) { in GetFrameCount() argument 323 return StackUtil::GetFrameCount(env, thread, count_ptr); in GetFrameCount() 462 jint* count_ptr, in GetObjectsWithTags() argument 477 count_ptr, in GetObjectsWithTags() 1286 static jvmtiError GetSystemProperties(jvmtiEnv* env, jint* count_ptr, char*** property_ptr) { in GetSystemProperties() argument 1288 return PropertiesUtil::GetSystemProperties(env, count_ptr, property_ptr); in GetSystemProperties()
|
D | jvmti_weak_table.h | 110 /* out */ jint* count_ptr,
|
/art/openjdkjvmti/include/ |
D | jvmti.h | 1083 jint* count_ptr); 1542 jint* count_ptr); 1593 jint* count_ptr, 1667 jint* count_ptr, 1904 jint* count_ptr) { in GetStackTrace() 1905 …turn functions->GetStackTrace(this, thread, start_depth, max_frame_count, frame_buffer, count_ptr); in GetStackTrace() 1922 jint* count_ptr) { in GetFrameCount() 1923 return functions->GetFrameCount(this, thread, count_ptr); in GetFrameCount() 1998 jint* count_ptr, in GetObjectsWithTags() 2001 …return functions->GetObjectsWithTags(this, tag_count, tags, count_ptr, object_result_ptr, tag_resu… in GetObjectsWithTags() [all …]
|