Lines Matching defs:results
1195 jvmtiError *results;
1215 results = newArray(reqCnt, sizeof(jvmtiError));
1216 if (results == NULL) {
1226 (gdata->jvmti, reqCnt, reqList, results);
1245 deleteArray(results);
1309 jvmtiError *results = newArray(reqCnt, sizeof(jvmtiError));
1311 if (results == NULL) {
1312 EXIT_ERROR(AGENT_ERROR_OUT_OF_MEMORY,"suspend list results");
1319 (gdata->jvmti, reqCnt, reqList, results);
1329 if (results[i] == JVMTI_ERROR_NONE) {
1332 } else if (results[i] == JVMTI_ERROR_THREAD_SUSPENDED) {
1337 results[i] = JVMTI_ERROR_NONE;
1338 } else if (results[i] == JVMTI_ERROR_THREAD_NOT_ALIVE) {
1348 results[i] = JVMTI_ERROR_NONE;
1352 if (results[i] == JVMTI_ERROR_NONE) {
1356 deleteArray(results);