HomeSort by relevance Sort by last modified time
    Searched refs:ESR_ReturnCode (Results 1 - 25 of 155) sorted by null

1 2 3 4 5 6 7

  /external/srec/srec/Session/include/
SR_Session.h 25 #include "ESR_ReturnCode.h"
45 SREC_SESSION_API ESR_ReturnCode SR_SessionCreate(const LCHAR* filename);
52 SREC_SESSION_API ESR_ReturnCode SR_SessionDestroy(void);
  /external/srec/portable/include/
PStackTrace.h 25 #include "ESR_ReturnCode.h"
54 PORTABLE_API ESR_ReturnCode PStackTraceCreate(void);
62 PORTABLE_API ESR_ReturnCode PStackTraceIsInitialized(ESR_BOOL* value);
70 PORTABLE_API ESR_ReturnCode PStackTraceGetDepth(size_t* depth);
80 PORTABLE_API ESR_ReturnCode PStackTraceGetValue(LCHAR* text, size_t* len);
90 PORTABLE_API ESR_ReturnCode PStackTraceGetFunctionName(LCHAR* text, size_t* len);
98 PORTABLE_API ESR_ReturnCode PStackTracePopLevel(LCHAR* text);
105 PORTABLE_API ESR_ReturnCode PStackTraceDestroy(void);
ArrayList.h 25 #include "ESR_ReturnCode.h"
49 ESR_ReturnCode(*add)(struct ArrayList_t* self, void* element);
63 ESR_ReturnCode(*insertAt)(struct ArrayList_t* self, size_t index,
73 ESR_ReturnCode(*remove)(struct ArrayList_t* self, const void* element);
83 ESR_ReturnCode(*removeAtIndex)(struct ArrayList_t* self, size_t index);
91 ESR_ReturnCode(*removeAll)(struct ArrayList_t* self);
101 ESR_ReturnCode(*contains)(struct ArrayList_t* self, const void* element, ESR_BOOL* exists);
110 ESR_ReturnCode(*getSize)(struct ArrayList_t* self, size_t* size);
120 ESR_ReturnCode(*get)(struct ArrayList_t* self, size_t index, void** element);
131 ESR_ReturnCode(*set)(struct ArrayList_t* self, size_t index, void* element)
    [all...]
pcputimer.h 43 PORTABLE_API ESR_ReturnCode PCPUTimerCreate(PCPUTimer **timer);
52 PORTABLE_API ESR_ReturnCode PCPUTimerDestroy(PCPUTimer *timer);
61 PORTABLE_API ESR_ReturnCode PCPUTimerStart(PCPUTimer *timer);
68 PORTABLE_API ESR_ReturnCode PCPUTimerStop(PCPUTimer *timer);
78 PORTABLE_API ESR_ReturnCode PCPUTimerGetElapsed(PCPUTimer *timer,
88 PORTABLE_API ESR_ReturnCode PCPUTimerReset(PCPUTimer *timer);
ptimer.h 44 PORTABLE_API ESR_ReturnCode PTimerCreate(PTimer **timer);
51 PORTABLE_API ESR_ReturnCode PTimerDestroy(PTimer *timer);
58 PORTABLE_API ESR_ReturnCode PTimerStart(PTimer *timer);
63 PORTABLE_API ESR_ReturnCode PTimerStop(PTimer *timer);
71 PORTABLE_API ESR_ReturnCode PTimerGetElapsed(PTimer *timer,
79 PORTABLE_API ESR_ReturnCode PTimerReset(PTimer *timer);
PFileSystem.h 25 #include "ESR_ReturnCode.h"
67 ESR_ReturnCode(*destroy)(struct PFileSystem_t* self);
77 ESR_ReturnCode(*createPFile)(struct PFileSystem_t* self, const LCHAR* path, ESR_BOOL littleEndian, PFile** file);
87 ESR_ReturnCode(*mkdir)(struct PFileSystem_t* self, const LCHAR* path);
96 ESR_ReturnCode(*chdir)(struct PFileSystem_t* self, const LCHAR* path);
106 PORTABLE_API ESR_ReturnCode PFileSystemCreate(void);
114 PORTABLE_API ESR_ReturnCode PFileSystemIsCreated(ESR_BOOL* isCreated);
121 PORTABLE_API ESR_ReturnCode PFileSystemDestroy(void);
131 PORTABLE_API ESR_ReturnCode PFileSystemCreatePFile(const LCHAR* path, ESR_BOOL littleEndian, PFile** file);
140 PORTABLE_API ESR_ReturnCode PFileSystemIsAbsolutePath(const LCHAR* path, ESR_BOOL* isAbsolute)
    [all...]
PFileSystemImpl.h 25 #include "ESR_ReturnCode.h"
57 PORTABLE_API ESR_ReturnCode PFileSystemDestroyImpl(PFileSystem* self);
65 PORTABLE_API ESR_ReturnCode PFileSystemInitializeStreamsImpl(void);
69 PORTABLE_API ESR_ReturnCode PFileSystemShutdownStreamsImpl(void);
81 PORTABLE_API ESR_ReturnCode PFileSystemAddPathImpl(PFileSystem* self, const LCHAR* basePath);
90 PORTABLE_API ESR_ReturnCode PFileSystemRemovePathImpl(PFileSystem* self, const LCHAR* basePath);
102 PORTABLE_API ESR_ReturnCode PFileSystemGetFS(const LCHAR* path, PFileSystem** fileSystem, LCHAR* relativePath);
113 PORTABLE_API ESR_ReturnCode PFileSystemIsDirectoryPath(const LCHAR* path, ESR_BOOL* isDirectory);
ptrd.h 30 #include "ESR_ReturnCode.h"
89 PORTABLE_API ESR_ReturnCode PtrdSleep(asr_uint32_t sleepTimeMs);
103 PORTABLE_API ESR_ReturnCode PtrdMonitorCreate(PtrdMonitor **monitor);
113 PORTABLE_API ESR_ReturnCode PtrdMonitorDestroy(PtrdMonitor *monitor);
124 PORTABLE_API ESR_ReturnCode PtrdMonitorLockWithLine(PtrdMonitor *monitor, const LCHAR *fname, int line);
144 PORTABLE_API ESR_ReturnCode PtrdMonitorUnlock(PtrdMonitor *monitor);
166 PORTABLE_API ESR_ReturnCode PtrdMonitorWait(PtrdMonitor *monitor);
185 PORTABLE_API ESR_ReturnCode PtrdMonitorWaitTimeout(PtrdMonitor *monitor,
213 PORTABLE_API ESR_ReturnCode PtrdMonitorNotify(PtrdMonitor *monitor);
240 PORTABLE_API ESR_ReturnCode PtrdMonitorNotifyAll(PtrdMonitor *monitor)
    [all...]
PANSIFileSystem.h 25 #include "ESR_ReturnCode.h"
66 ESR_ReturnCode(*addPath)(PFileSystem* self, const LCHAR* virtualPath, const LCHAR* realPath);
75 ESR_ReturnCode(*removePath)(PFileSystem* self, const LCHAR* virtualPath);
88 ESR_ReturnCode(*getcwd)(PFileSystem* self, LCHAR* cwd, size_t* len);
98 PORTABLE_API ESR_ReturnCode PANSIFileSystemCreate(void);
105 PORTABLE_API ESR_ReturnCode PANSIFileSystemDestroy(void);
118 PORTABLE_API ESR_ReturnCode PANSIFileSystemAddPath(const LCHAR* virtualPath, const LCHAR* realPath);
126 PORTABLE_API ESR_ReturnCode PANSIFileSystemRemovePath(const LCHAR* virtualPath);
142 PORTABLE_API ESR_ReturnCode PANSIFileSystemGetcwd(LCHAR* cwd, size_t* len);
151 PORTABLE_API ESR_ReturnCode PANSIFileSystemSetDefault(ESR_BOOL isDefault)
    [all...]
  /external/srec/shared/include/
lstring.h 25 #include "ESR_ReturnCode.h"
48 ESR_ReturnCode(*append)(struct LString_t* self, const LCHAR* value);
54 ESR_ReturnCode(*reset)(struct LString_t* self);
62 ESR_ReturnCode(*toLCHAR)(struct LString_t* self, LCHAR** result);
68 ESR_ReturnCode(*destroy)(struct LString_t* self);
79 ESR_SHARED_API ESR_ReturnCode LStringCreate(LString** self);
86 ESR_SHARED_API ESR_ReturnCode LStringAppend(LString* self, const LCHAR* value);
92 ESR_SHARED_API ESR_ReturnCode LStringReset(LString* self);
100 ESR_SHARED_API ESR_ReturnCode LStringToLCHAR(LString* self, LCHAR** result);
106 ESR_SHARED_API ESR_ReturnCode LStringDestroy(LString* self)
    [all...]
IntArrayList.h 25 #include "ESR_ReturnCode.h"
48 ESR_ReturnCode(*add)(struct IntArrayList_t* self, int element);
56 ESR_ReturnCode(*remove)(struct IntArrayList_t* self, int element);
63 ESR_ReturnCode(*removeAll)(struct IntArrayList_t* self);
72 ESR_ReturnCode(*contains)(struct IntArrayList_t* self, int element, ESR_BOOL* exists);
80 ESR_ReturnCode(*getSize)(struct IntArrayList_t* self, size_t* size);
89 ESR_ReturnCode(*get)(struct IntArrayList_t* self, size_t index, int* element);
99 ESR_ReturnCode(*set)(struct IntArrayList_t* self, size_t index, int element);
108 ESR_ReturnCode(*toStaticArray)(struct IntArrayList_t* self, int** newArray);
114 ESR_ReturnCode(*destroy)(struct IntArrayList_t* self)
    [all...]
ESR_Session.h 25 #include "ESR_ReturnCode.h"
50 ESR_ReturnCode(*getProperty)(const LCHAR* name, void** value, VariableTypes type);
57 ESR_ReturnCode(*getPropertyType)(const LCHAR* name, VariableTypes* type);
64 ESR_ReturnCode(*getInt)(const LCHAR* name, int* value);
71 ESR_ReturnCode(*getUint16_t)(const LCHAR* name, asr_uint16_t* value);
78 ESR_ReturnCode(*getSize_t)(const LCHAR* name, size_t* value);
85 ESR_ReturnCode(*getFloat)(const LCHAR* name, float* value);
92 ESR_ReturnCode(*getBool)(const LCHAR* name, ESR_BOOL* value);
101 ESR_ReturnCode(*getLCHAR)(const LCHAR* name, LCHAR* value, size_t* len);
108 ESR_ReturnCode(*contains)(const LCHAR* name, ESR_BOOL* exists)
    [all...]
Int8ArrayList.h 25 #include "ESR_ReturnCode.h"
48 ESR_ReturnCode(*add)(struct Int8ArrayList_t* self, asr_int8_t element);
56 ESR_ReturnCode(*remove)(struct Int8ArrayList_t* self, asr_int8_t element);
63 ESR_ReturnCode(*removeAll)(struct Int8ArrayList_t* self);
72 ESR_ReturnCode(*contains)(struct Int8ArrayList_t* self, asr_int8_t element, ESR_BOOL* exists);
80 ESR_ReturnCode(*getSize)(struct Int8ArrayList_t* self, size_t* size);
89 ESR_ReturnCode(*get)(struct Int8ArrayList_t* self, size_t index, asr_int8_t* element);
99 ESR_ReturnCode(*set)(struct Int8ArrayList_t* self, size_t index, asr_int8_t element);
107 ESR_ReturnCode(*clone)(struct Int8ArrayList_t* self, struct Int8ArrayList_t* clone);
116 ESR_ReturnCode(*toStaticArray)(struct Int8ArrayList_t* self, asr_int8_t** newArray)
    [all...]
ESR_SessionType.h 25 #include "ESR_ReturnCode.h"
53 ESR_ReturnCode(*getProperty)(struct ESR_SessionType_t* self, const LCHAR* name, void** value, VariableTypes type);
62 ESR_ReturnCode(*getPropertyType)(struct ESR_SessionType_t* self, const LCHAR* name, VariableTypes* type);
71 ESR_ReturnCode(*getInt)(struct ESR_SessionType_t* self, const LCHAR* name, int* value);
79 ESR_ReturnCode(*getUint16_t)(struct ESR_SessionType_t* self, const LCHAR* name, asr_uint16_t* value);
89 ESR_ReturnCode(*getSize_t)(struct ESR_SessionType_t* self, const LCHAR* name, size_t* value);
98 ESR_ReturnCode(*getFloat)(struct ESR_SessionType_t* self, const LCHAR* name, float* value);
107 ESR_ReturnCode(*getBool)(struct ESR_SessionType_t* self, const LCHAR* name, ESR_BOOL* value);
118 ESR_ReturnCode(*getLCHAR)(struct ESR_SessionType_t* self, const LCHAR* name, LCHAR* value, size_t* len);
127 ESR_ReturnCode(*contains)(struct ESR_SessionType_t* self, const LCHAR* name, ESR_BOOL* exists)
    [all...]
HashMap.h 25 #include "ESR_ReturnCode.h"
52 ESR_ReturnCode(*put)(struct HashMap_t* self, const LCHAR* key, void* value);
61 ESR_ReturnCode(*remove)(struct HashMap_t* self, const LCHAR* key);
70 ESR_ReturnCode(*removeAndFree)(struct HashMap_t* self, const LCHAR* key);
79 ESR_ReturnCode(*removeAtIndex)(struct HashMap_t* self, const size_t index);
87 ESR_ReturnCode(*removeAll)(struct HashMap_t* self);
95 ESR_ReturnCode(*removeAndFreeAll)(struct HashMap_t* self);
105 ESR_ReturnCode(*containsKey)(struct HashMap_t* self, const LCHAR* key, ESR_BOOL* exists);
114 ESR_ReturnCode(*getSize)(struct HashMap_t* self, size_t* size);
126 ESR_ReturnCode(*get)(struct HashMap_t* self, const LCHAR* key, void** value)
    [all...]
ESR_SessionTypeImpl.h 26 #include "ESR_ReturnCode.h"
66 ESR_SHARED_API ESR_ReturnCode ESR_SessionTypeGetPropertyImpl(ESR_SessionType* self,
73 ESR_SHARED_API ESR_ReturnCode ESR_SessionTypeGetIntImpl(ESR_SessionType* self,
79 ESR_SHARED_API ESR_ReturnCode ESR_SessionTypeGetUint16_tImpl(ESR_SessionType* self,
85 ESR_SHARED_API ESR_ReturnCode ESR_SessionTypeGetSize_tImpl(ESR_SessionType* self,
91 ESR_SHARED_API ESR_ReturnCode ESR_SessionTypeGetFloatImpl(ESR_SessionType* self,
97 ESR_SHARED_API ESR_ReturnCode ESR_SessionTypeGetBoolImpl(ESR_SessionType* self,
103 ESR_SHARED_API ESR_ReturnCode ESR_SessionTypeGetLCHARImpl(ESR_SessionType* self,
109 ESR_SHARED_API ESR_ReturnCode ESR_SessionTypeContainsImpl(ESR_SessionType* self,
115 ESR_SHARED_API ESR_ReturnCode ESR_SessionTypeSetPropertyImpl(ESR_SessionType* self
    [all...]
IntArrayListImpl.h 25 #include "ESR_ReturnCode.h"
56 ESR_SHARED_API ESR_ReturnCode IntArrayList_Add(IntArrayList* self, const int element);
61 ESR_SHARED_API ESR_ReturnCode IntArrayList_Remove(IntArrayList* self, const int element);
66 ESR_SHARED_API ESR_ReturnCode IntArrayList_RemoveAll(IntArrayList* self);
71 ESR_SHARED_API ESR_ReturnCode IntArrayList_Contains(IntArrayList* self, const int element, ESR_BOOL* exists);
76 ESR_SHARED_API ESR_ReturnCode IntArrayList_Get(IntArrayList* self, size_t index, int* element);
81 ESR_SHARED_API ESR_ReturnCode IntArrayList_Set(IntArrayList* self, size_t index, const int element);
86 ESR_SHARED_API ESR_ReturnCode IntArrayList_GetSize(IntArrayList* self, size_t* size);
91 ESR_SHARED_API ESR_ReturnCode IntArrayList_ToStaticArray(IntArrayList* self, int** newArray);
96 ESR_SHARED_API ESR_ReturnCode IntArrayList_Destroy(IntArrayList* self)
    [all...]
  /external/srec/srec/AcousticState/include/
SR_AcousticState.h 31 #include "ESR_ReturnCode.h"
56 ESR_ReturnCode(*reset)(SR_Recognizer* recognizer);
64 ESR_ReturnCode(*load)(SR_Recognizer* recognizer, const LCHAR* filename);
72 ESR_ReturnCode(*save)(SR_Recognizer* recognizer, const LCHAR* filename);
80 ESR_ReturnCode(*get)(SR_Recognizer* recognizer, LCHAR *param_string, size_t* len );
88 ESR_ReturnCode(*set)(SR_Recognizer* recognizer, const LCHAR *param_string );
95 ESR_ReturnCode(*destroy)(SR_Recognizer* recognizer);
121 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateLoad(SR_Recognizer* recognizer, const LCHAR* filename);
129 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateSave(SR_Recognizer* recognizer, const LCHAR* filename);
148 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateReset(SR_Recognizer* recognizer)
    [all...]
SR_AcousticStateImpl.h 31 #include "ESR_ReturnCode.h"
49 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateCreateImpl(SR_Recognizer* recognizer);
53 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateDestroyImpl(SR_Recognizer* recognizer);
57 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateResetImpl(SR_Recognizer* recognizer);
61 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateLoadImpl(SR_Recognizer* recognizer, const LCHAR* filename);
65 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateSaveImpl(SR_Recognizer* recognizer, const LCHAR* filename);
69 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateSetImpl(SR_Recognizer* recognizer, const LCHAR *param_string );
73 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateGetImpl(SR_Recognizer* recognizer, LCHAR *param_string, size_t* len );
77 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateActivateModelImpl(SR_Recognizer* recognizer, SR_AcousticModelID id);
81 SREC_ACOUSTICSTATE_API ESR_ReturnCode SR_AcousticStateDeactivateModelImpl(SR_Recognizer* recognizer, SR_AcousticModelID id)
    [all...]
  /external/srec/srec/Nametag/include/
SR_Nametag.h 38 SREC_NAMETAG_API ESR_ReturnCode SR_NametagCreate(const SR_RecognizerResult* result,
52 SREC_NAMETAG_API ESR_ReturnCode SR_NametagCreateFromValue(const LCHAR* id, const char* value, size_t len, SR_Nametag** self);
61 SREC_NAMETAG_API ESR_ReturnCode SR_NametagGetID(const SR_Nametag* self, LCHAR** id);
70 SREC_NAMETAG_API ESR_ReturnCode SR_NametagGetValue(const SR_Nametag* self, const char** pvalue, size_t *plen);
79 SREC_NAMETAG_API ESR_ReturnCode SR_NametagSetID(SR_Nametag* self, const LCHAR* id);
88 SREC_NAMETAG_API ESR_ReturnCode SR_NametagClone(const SR_Nametag* self, SR_Nametag** result);
96 SREC_NAMETAG_API ESR_ReturnCode SR_NametagDestroy(SR_Nametag* self);
SR_NametagDefs.h 28 #include "ESR_ReturnCode.h"
54 ESR_ReturnCode (*getID)(const struct SR_Nametag_t* self, LCHAR** id);
64 ESR_ReturnCode (*getValue)(const struct SR_Nametag_t* self, const char** pvalue, size_t* plen);
73 ESR_ReturnCode (*setID)(struct SR_Nametag_t* self, const LCHAR* id);
82 ESR_ReturnCode (*clone)(const struct SR_Nametag_t* self, struct SR_Nametag_t** result);
90 ESR_ReturnCode (*destroy)(struct SR_Nametag_t* self);
SR_Nametags.h 30 #include "ESR_ReturnCode.h"
51 ESR_ReturnCode(*load)(struct SR_Nametags_t* self, const LCHAR* filename);
59 ESR_ReturnCode(*save)(struct SR_Nametags_t* self, const LCHAR* filename);
67 ESR_ReturnCode(*add)(struct SR_Nametags_t* self, SR_Nametag* nametag);
75 ESR_ReturnCode(*remove)(struct SR_Nametags_t* self, const LCHAR* id);
83 ESR_ReturnCode(*getSize)(struct SR_Nametags_t* self, size_t* result);
93 ESR_ReturnCode(*get)(struct SR_Nametags_t* self, const LCHAR* id, SR_Nametag** nametag);
103 ESR_ReturnCode(*getAtIndex)(struct SR_Nametags_t* self, size_t index, SR_Nametag** nametag);
112 ESR_ReturnCode(*contains)(struct SR_Nametags_t* self, const LCHAR* id, ESR_BOOL* result);
119 ESR_ReturnCode(*destroy)(struct SR_Nametags_t* self)
    [all...]
SR_NametagsImpl.h 26 #include "ESR_ReturnCode.h"
60 SREC_NAMETAG_API ESR_ReturnCode SR_NametagsLoadImpl(SR_Nametags* self, const LCHAR* filename);
64 SREC_NAMETAG_API ESR_ReturnCode SR_NametagsSaveImpl(SR_Nametags* self, const LCHAR* filename);
68 SREC_NAMETAG_API ESR_ReturnCode SR_NametagsAddImpl(SR_Nametags* self, SR_Nametag* nametag);
72 SREC_NAMETAG_API ESR_ReturnCode SR_NametagsRemoveImpl(SR_Nametags* self, const LCHAR* id);
76 SREC_NAMETAG_API ESR_ReturnCode SR_NametagsGetSizeImpl(SR_Nametags* self, size_t* result);
80 SREC_NAMETAG_API ESR_ReturnCode SR_NametagsGetImpl(SR_Nametags* self, const LCHAR* id, SR_Nametag** nametag);
84 SREC_NAMETAG_API ESR_ReturnCode SR_NametagsGetAtIndexImpl(SR_Nametags* self, size_t index, SR_Nametag** nametag);
88 SREC_NAMETAG_API ESR_ReturnCode SR_NametagsContainsImpl(SR_Nametags* self, const LCHAR* id, ESR_BOOL* result);
92 SREC_NAMETAG_API ESR_ReturnCode SR_NametagsDestroyImpl(SR_Nametags* self)
    [all...]
  /external/srec/srec/Semproc/include/
SR_SemanticGraph.h 29 #include "ESR_ReturnCode.h"
51 ESR_ReturnCode(*destroy)(struct SR_SemanticGraph_t* self);
62 ESR_ReturnCode(*load)(struct SR_SemanticGraph_t* self, wordmap* ilabels, const LCHAR* basename, int num_words_to_add);
69 ESR_ReturnCode(*unload)(struct SR_SemanticGraph_t* self);
78 ESR_ReturnCode(*save)(struct SR_SemanticGraph_t* self, const LCHAR* filename, int version_number);
89 ESR_ReturnCode(*addWordToSlot)(struct SR_SemanticGraph_t* self, const LCHAR* slot, const LCHAR* word, const LCHAR* tag, const ESR_BOOL maybeMultiMeaning);
95 ESR_ReturnCode(*reset)(struct SR_SemanticGraph_t* self);
105 SREC_SEMPROC_API ESR_ReturnCode SR_SemanticGraphCreate(SR_SemanticGraph** self);
  /external/srec/srec/Recognizer/include/
SR_Recognizer.h 25 #include "ESR_ReturnCode.h"
129 typedef ESR_ReturnCode(*SR_RecognizerLockFunction)(ESR_LOCKMODE mode, void* data);
150 ESR_ReturnCode(*start)(struct SR_Recognizer_t* self);
159 ESR_ReturnCode(*stop)(struct SR_Recognizer_t* self);
166 ESR_ReturnCode(*destroy)(struct SR_Recognizer_t* self);
173 ESR_ReturnCode(*setup)(struct SR_Recognizer_t* self);
180 ESR_ReturnCode(*unsetup)(struct SR_Recognizer_t* self);
188 ESR_ReturnCode(*isSetup)(struct SR_Recognizer_t* self, ESR_BOOL* isSetup);
201 ESR_ReturnCode(*getParameter)(struct SR_Recognizer_t* self, const LCHAR* key, LCHAR* value, size_t* len);
211 ESR_ReturnCode(*getSize_tParameter)(struct SR_Recognizer_t* self, const LCHAR* key, size_t* value)
    [all...]

Completed in 168 milliseconds

1 2 3 4 5 6 7