Home
last modified time | relevance | path

Searched refs:argRefs (Results 1 – 1 of 1) sorted by relevance

/external/oj-libjdwp/src/share/back/
Dinvoker.c111 jobject *argRefs = NULL; in createGlobalRefs() local
117 argRefs = jvmtiAllocate((jint)(request->argumentCount*sizeof(jobject))); in createGlobalRefs()
118 if ( argRefs==NULL ) { in createGlobalRefs()
122 (void)memset(argRefs, 0, request->argumentCount*sizeof(jobject)); in createGlobalRefs()
140 if ( error == JVMTI_ERROR_NONE && argRefs!=NULL ) { in createGlobalRefs()
152 saveGlobalRef(env, argument->l, &argRefs[argIndex]); in createGlobalRefs()
153 if (argRefs[argIndex] == NULL) { in createGlobalRefs()
176 if ( argRefs!=NULL ) { in createGlobalRefs()
183 argument->l = argRefs[argIndex]; in createGlobalRefs()
189 jvmtiDeallocate(argRefs); in createGlobalRefs()
[all …]