Searched defs:_strings (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglCreateShaderProgramv.cpp9 const GLchar** _strings = NULL; local
22 _strings = (const GLchar**) calloc(_count, sizeof(const GLchar*));
23 if (!_strings) {
46 _strings[i] = _env->GetStringUTFChars(_jstrings[i], 0);
49 _returnValue = glCreateShaderProgramv((GLenum)type, _count, _strings);
51 if (_strings && _jstrings) {
53 if (_strings[i] && _jstrings[i]) {
54 _env->ReleaseStringUTFChars(_jstrings[i], _strings[i]);
58 if (_strings) {
59 free(_strings);
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES31.cpp895 const GLchar** _strings = NULL; local
908 _strings = (const GLchar**) calloc(_count, sizeof(const GLchar*));
909 if (!_strings) {
932 _strings[i] = _env->GetStringUTFChars(_jstrings[i], 0);
935 _returnValue = glCreateShaderProgramv((GLenum)type, _count, _strings);
937 if (_strings && _jstrings) {
939 if (_strings[i] && _jstrings[i]) {
940 _env->ReleaseStringUTFChars(_jstrings[i], _strings[i]);
944 if (_strings) {
945 free(_strings);
[all...]

Completed in 71 milliseconds