Searched defs:tag_result_ptr (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnv.cpp1700 // tag_result_ptr - NULL is a valid value, must be checked
1702 JvmtiEnv::GetObjectsWithTags(jint tag_count, const jlong* tags, jint* count_ptr, jobject** object_result_ptr, jlong** tag_result_ptr) { argument
1704 return JvmtiTagMap::tag_map_for(this)->get_objects_with_tags((jlong*)tags, tag_count, count_ptr, object_result_ptr, tag_result_ptr);
H A DjvmtiTagMap.cpp1565 jvmtiError result(jint* count_ptr, jobject** object_result_ptr, jlong** tag_result_ptr) { argument
1582 // if tag_result_ptr is not NULL then allocate the result and copy
1584 if (tag_result_ptr != NULL) {
1585 error = _env->Allocate(count * sizeof(jlong), (unsigned char**)tag_result_ptr);
1593 (*tag_result_ptr)[i] = (jlong)_tag_results->at(i);
1604 jint count, jint* count_ptr, jobject** object_result_ptr, jlong** tag_result_ptr) {
1612 return collector.result(count_ptr, object_result_ptr, tag_result_ptr);
1603 get_objects_with_tags(const jlong* tags, jint count, jint* count_ptr, jobject** object_result_ptr, jlong** tag_result_ptr) argument
/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h1595 jlong** tag_result_ptr);
2000 jlong** tag_result_ptr) {
2001 return functions->GetObjectsWithTags(this, tag_count, tags, count_ptr, object_result_ptr, tag_result_ptr);
1996 GetObjectsWithTags(jint tag_count, const jlong* tags, jint* count_ptr, jobject** object_result_ptr, jlong** tag_result_ptr) argument

Completed in 832 milliseconds