Lines Matching refs:extension_info
214 jvmtiExtensionFunctionInfo* extension_info; in find_extension_functions() local
222 (gdata->jvmti, &num_extensions, &extension_info); in find_extension_functions()
231 if (strcmp("com.android.art.internal.ddm.process_chunk", extension_info[i].id) == 0) { in find_extension_functions()
232 gdata->ddm_process_chunk = (DdmProcessChunk) extension_info[i].func; in find_extension_functions()
235 extension_info[i].id) == 0) { in find_extension_functions()
236 gdata->raw_monitor_enter_no_suspend = (RawMonitorEnterNoSuspend) extension_info[i].func; in find_extension_functions()
238 jvmtiDeallocate(extension_info[i].id); in find_extension_functions()
239 jvmtiDeallocate(extension_info[i].short_description); in find_extension_functions()
240 for (j = 0; j < extension_info[i].param_count; j++) { in find_extension_functions()
241 jvmtiDeallocate(extension_info[i].params[j].name); in find_extension_functions()
243 jvmtiDeallocate(extension_info[i].params); in find_extension_functions()
244 jvmtiDeallocate(extension_info[i].errors); in find_extension_functions()
246 jvmtiDeallocate(extension_info); in find_extension_functions()