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 | 309 jint* count_ptr, 325 if (count_ptr == nullptr) { 384 *count_ptr = static_cast<jint>(count);
|
D | ti_stack.cc | 192 jint* count_ptr) { in TranslateFrameVector() argument 208 *count_ptr = static_cast<jint>(frames.size()); in TranslateFrameVector() 221 *count_ptr = static_cast<jint>(count); in TranslateFrameVector() 257 jint* count_ptr) { in GetStackTrace() argument 281 if (frame_buffer == nullptr || count_ptr == nullptr) { in GetStackTrace() 288 *count_ptr = 0; in GetStackTrace() 301 *count_ptr = static_cast<jint>(closure.index); in GetStackTrace() 320 count_ptr); in GetStackTrace() 722 jint* count_ptr) { in GetFrameCount() argument 742 if (count_ptr == nullptr) { in GetFrameCount() [all …]
|
D | ti_method.h | 50 jint* count_ptr,
|
D | OpenjdkJvmTi.cc | 292 jint* count_ptr) { in GetStackTrace() argument 299 count_ptr); in GetStackTrace() 323 static jvmtiError GetFrameCount(jvmtiEnv* env, jthread thread, jint* count_ptr) { in GetFrameCount() argument 325 return StackUtil::GetFrameCount(env, thread, count_ptr); in GetFrameCount() 454 jint* count_ptr, in GetObjectsWithTags() argument 469 count_ptr, in GetObjectsWithTags() 1256 static jvmtiError GetSystemProperties(jvmtiEnv* env, jint* count_ptr, char*** property_ptr) { in GetSystemProperties() argument 1258 return PropertiesUtil::GetSystemProperties(env, count_ptr, property_ptr); in GetSystemProperties()
|
D | ti_class.cc | 879 /*out*/jint* count_ptr, in CopyClassDescriptors() argument 914 *count_ptr = static_cast<jint>(descriptors.size()); in CopyClassDescriptors() 921 /*out*/jint* count_ptr, in GetClassLoaderClassDescriptors() argument 928 } else if (count_ptr == nullptr || classes == nullptr) { in GetClassLoaderClassDescriptors() 937 count_ptr, in GetClassLoaderClassDescriptors() 964 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 …]
|