Searched refs:curNumWarnings (Results 1 - 1 of 1) sorted by relevance

/external/svox/pico/lib/
H A Dpicoos.c625 picoos_uint8 curNumWarnings; member in struct:picoos_exception_manager
635 this->curNumWarnings = 0;
853 if ((this->curNumWarnings < PICOOS_MAX_NUM_WARNINGS) && (PICO_OK != warningCode)) {
854 if (PICOOS_MAX_NUM_WARNINGS-1 == this->curNumWarnings) {
855 this->curWarningCode[this->curNumWarnings] = PICO_EXC_MAX_NUM_EXCEED;
856 picoos_strlcpy(this->curWarningMessage[this->curNumWarnings],(picoos_char *) "too many warnings",PICOOS_MAX_WARN_MSG_LEN);
858 this->curWarningCode[this->curNumWarnings] = warningCode;
860 picoos_vSetErrorMsg(this->curWarningMessage[this->curNumWarnings],PICOOS_MAX_WARN_MSG_LEN, warningCode, baseMessage, fmt,args);
863 this->curNumWarnings++;
867 this->curWarningCode[this->curNumWarnings
[all...]

Completed in 34 milliseconds