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

/device/generic/goldfish/opengl/shared/OpenglCodecCommon/
H A DglUtils.cpp436 // pack a list of strings into one.
437 void glUtilsPackStrings(char *ptr, char **strings, GLint *length, GLsizei count) argument
443 if (strings[i]!=NULL) {
445 l = strlen(strings[i]);
446 strcat(p, strings[i]);
449 strncat(p, strings[i], l);
456 // claculate the length of a list of strings
457 int glUtilsCalcShaderSourceLen( char **strings, GLint *length, GLsizei count) argument
463 l = strings[i]!=NULL ? strlen(strings[
[all...]
/device/generic/goldfish/camera/
H A DCallbackNotifier.cpp49 /* Builds an array of strings for the given set of messages.
51 * msg - Messages to get strings for,
52 * strings - Array where to save strings
55 * Number of strings saved into the 'strings' array.
57 static int GetMessageStrings(uint32_t msg, const char** strings, int max) argument
67 strings[out] = lCameraMessages[index];

Completed in 34 milliseconds