Searched defs:isSetup (Results 1 - 3 of 3) sorted by relevance

/external/srec/srec/Recognizer/include/
H A DSR_Recognizer.h185 * @param isSetup True if recognizer is configured
188 ESR_ReturnCode(*isSetup)(struct SR_Recognizer_t* self, ESR_BOOL* isSetup); member in struct:SR_Recognizer_t
595 * @param isSetup True if recognizer is configured
598 SREC_RECOGNIZER_API ESR_ReturnCode SR_RecognizerIsSetup(SR_Recognizer* self, ESR_BOOL* isSetup);
/external/srec/srec/Recognizer/src/
H A DRecognizer.c84 ESR_ReturnCode SR_RecognizerIsSetup(SR_Recognizer* self, ESR_BOOL* isSetup) argument
91 return self->isSetup(self, isSetup);
H A DRecognizerImpl.c636 impl->Interface.isSetup = &SR_RecognizerIsSetupImpl;
800 ESR_BOOL exists; // isSetup;
859 /* CHKLOG(rc, self->isSetup(self, &isSetup));
860 if (isSetup)
1351 ESR_ReturnCode SR_RecognizerIsSetupImpl(SR_Recognizer* self, ESR_BOOL* isSetup) argument
1355 if (isSetup == NULL)
1360 *isSetup = impl->models != NULL;

Completed in 53 milliseconds