Searched refs:count_ptr (Results 1 – 11 of 11) sorted by relevance
/art/openjdkjvmti/ |
D | ti_properties.h | 42 static jvmtiError GetSystemProperties(jvmtiEnv* env, jint* count_ptr, char*** property_ptr);
|
D | ti_stack.h | 53 static jvmtiError GetFrameCount(jvmtiEnv* env, jthread thread, jint* count_ptr); 66 jint* count_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_class.h | 80 jint* count_ptr,
|
D | jvmti_weak_table-inl.h | 311 jint* count_ptr, 327 if (count_ptr == nullptr) { 386 *count_ptr = static_cast<jint>(count);
|
D | ti_stack.cc | 190 jint* count_ptr) { in TranslateFrameVector() argument 206 *count_ptr = static_cast<jint>(frames.size()); in TranslateFrameVector() 219 *count_ptr = static_cast<jint>(count); in TranslateFrameVector() 255 jint* count_ptr) { in GetStackTrace() argument 279 if (frame_buffer == nullptr || count_ptr == nullptr) { in GetStackTrace() 286 *count_ptr = 0; in GetStackTrace() 299 *count_ptr = static_cast<jint>(closure.index); in GetStackTrace() 318 count_ptr); in GetStackTrace() 721 jint* count_ptr) { in GetFrameCount() argument 741 if (count_ptr == nullptr) { in GetFrameCount() [all …]
|
D | ti_method.h | 50 jint* count_ptr,
|
D | OpenjdkJvmTi.cc | 286 jint* count_ptr) { in GetStackTrace() argument 293 count_ptr); in GetStackTrace() 317 static jvmtiError GetFrameCount(jvmtiEnv* env, jthread thread, jint* count_ptr) { in GetFrameCount() argument 319 return StackUtil::GetFrameCount(env, thread, count_ptr); in GetFrameCount() 448 jint* count_ptr, in GetObjectsWithTags() argument 463 count_ptr, in GetObjectsWithTags() 1250 static jvmtiError GetSystemProperties(jvmtiEnv* env, jint* count_ptr, char*** property_ptr) { in GetSystemProperties() argument 1252 return PropertiesUtil::GetSystemProperties(env, count_ptr, property_ptr); in GetSystemProperties()
|
D | ti_class.cc | 876 /*out*/jint* count_ptr, in CopyClassDescriptors() argument 911 *count_ptr = static_cast<jint>(descriptors.size()); in CopyClassDescriptors() 918 /*out*/jint* count_ptr, in GetClassLoaderClassDescriptors() argument 925 } else if (count_ptr == nullptr || classes == nullptr) { in GetClassLoaderClassDescriptors() 963 return CopyClassDescriptors(env, *dex_files, count_ptr, classes); in GetClassLoaderClassDescriptors()
|
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 …]
|