Searched refs:outVector (Results 1 – 1 of 1) sorted by relevance
34 static void jintarrayToVector(JNIEnv *env, jintArray array, std::vector<int> *const outVector) { in jintarrayToVector() argument36 outVector->clear(); in jintarrayToVector()40 outVector->resize(arrayLength); in jintarrayToVector()41 env->GetIntArrayRegion(array, 0 /* start */, arrayLength, outVector->data()); in jintarrayToVector()