Searched refs:result_length (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnv.cpp2251 int result_length = instanceK_h->methods()->length(); local
2252 jmethodID* result_list = (jmethodID*)jvmtiMalloc(result_length * sizeof(jmethodID));
2257 for (index = 0; index < result_length; index++) {
2260 assert(original_index >= 0 && original_index < result_length, "invalid original method index");
2266 for (index = 0; index < result_length; index++) {
2273 *method_count_ptr = result_length;
2361 const int result_length = (interface_list.is_null() ? 0 : interface_list->length()); local
2362 jclass* result_list = (jclass*) jvmtiMalloc(result_length * sizeof(jclass));
2363 for (int i_index = 0; i_index < result_length; i_index += 1) {
2372 *interface_count_ptr = result_length;
[all...]

Completed in 38 milliseconds