OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:eventLog
(Results
1 - 9
of
9
) sorted by null
/external/srec/srec/Session/src/
SR_Session.c
34
SR_EventLog*
eventLog
= NULL;
40
CHKLOG(rc, SR_EventLogCreate(&
eventLog
));
72
SR_EventLog*
eventLog
= NULL;
74
ESR_SessionGetProperty(L("
eventlog
"), (void **)&
eventLog
, TYPES_SR_EVENTLOG);
75
if (
eventLog
!= NULL)
77
CHKLOG(rc,
eventLog
->destroy(
eventLog
));
78
ESR_SessionRemoveProperty(L("
eventlog
")); /* failure is ok */
/external/srec/srec/Nametag/src/
NametagsImpl.c
57
impl->
eventLog
= NULL;
62
CHKLOG(rc, ESR_SessionGetProperty(L("
eventlog
"), (void **)&impl->
eventLog
, TYPES_SR_EVENTLOG));
63
CHKLOG(rc, SR_EventLogTokenInt_BASIC(impl->
eventLog
, impl->logLevel, L("pointer"), (int) self));
64
CHKLOG(rc, SR_EventLogEvent_BASIC(impl->
eventLog
, impl->logLevel, L("SR_NametagsCreate")));
122
CHKLOG(rc, SR_EventLogToken_BASIC(impl->
eventLog
, impl->logLevel, L("removeCount"), number));
173
CHKLOG(rc, SR_EventLogToken_BASIC(impl->
eventLog
, impl->logLevel, tokenName, value));
176
CHKLOG(rc, SR_EventLogToken_BASIC(impl->
eventLog
, impl->logLevel, L("filename"), filename));
180
CHKLOG(rc, SR_EventLogToken_BASIC(impl->
eventLog
, impl->logLevel, L("addCount"), number));
181
CHKLOG(rc, SR_EventLogEvent_BASIC(impl->
eventLog
, impl->logLevel, L("SR_NametagsLoad")))
[
all
...]
/external/srec/srec/Recognizer/src/
RecognizerImpl.c
689
impl->
eventLog
= NULL;
709
CHKLOG(rc, ESR_SessionGetProperty(L("
eventlog
"), (void **)&impl->
eventLog
, TYPES_SR_EVENTLOG)) (…)
[
all
...]
/external/srec/srec/Grammar/src/
SR_GrammarImpl.c
66
impl->
eventLog
= NULL;
94
rc = ESR_SessionGetProperty(L("
eventlog
"), (void **)&impl->
eventLog
, TYPES_SR_EVENTLOG);
229
if (impl->
eventLog
!= NULL)
231
CHKLOG(logrc, SR_EventLogTokenInt_BASIC(impl->
eventLog
, impl->logLevel, L("igrm"), (int)impl));
232
CHKLOG(logrc, SR_EventLogToken_BASIC(impl->
eventLog
, impl->logLevel, L("SLOT"), slot));
233
CHKLOG(logrc, SR_EventLogToken_BASIC(impl->
eventLog
, impl->logLevel, L("WORD"), word));
235
CHKLOG(logrc, SR_EventLogToken_BASIC(impl->
eventLog
, impl->logLevel, L("PRON"), pronunciation));
237
CHKLOG(logrc, SR_EventLogToken_BASIC(impl->
eventLog
, impl->logLevel, L("GPRON"), pronunciation));
238
CHKLOG(logrc, SR_EventLogTokenInt_BASIC(impl->
eventLog
, impl->logLevel, L("WEIGHT"), weight))
[
all
...]
/external/srec/srec/Nametag/include/
SR_NametagsImpl.h
48
SR_EventLog*
eventLog
;
50
*
Eventlog
logging level.
/external/srec/srec/EventLog/src/
EventLogImpl.c
100
SR_EventLog*
eventLog
= (SR_EventLog*) data;
110
CHKLOG(rc, SR_EventLogTokenInt(
eventLog
, name, *((int*) newValue)));
113
CHKLOG(rc, SR_EventLogTokenUint16_t(
eventLog
, name, *((asr_uint16_t*) newValue)));
116
CHKLOG(rc, SR_EventLogTokenSize_t(
eventLog
, name, *((size_t*) newValue)));
119
CHKLOG(rc, SR_EventLogTokenBool(
eventLog
, name, *((ESR_BOOL*) newValue)));
122
CHKLOG(rc, SR_EventLogTokenFloat(
eventLog
, name, *((float*) newValue)));
125
CHKLOG(rc, SR_EventLogToken(
eventLog
, name, (LCHAR*) newValue));
131
CHKLOG(rc, SR_EventLogTokenInt(
eventLog
, name, len));
137
CHKLOG(rc, SR_EventLogTokenInt(
eventLog
, lValue, iValue));
174
rc = ESR_SessionGetProperty(L("
eventlog
"), (void **)&any_existing_eventlog, TYPES_SR_EVENTLOG)
[
all
...]
/external/srec/srec/Grammar/include/
SR_GrammarImpl.h
100
SR_EventLog*
eventLog
;
/external/srec/srec/AcousticModels/src/
AcousticModelsImpl.c
218
SR_EventLog*
eventLog
;
225
rc = ESR_SessionGetProperty(L("
eventlog
"), (void **)&
eventLog
, TYPES_SR_EVENTLOG);
231
if (
eventLog
)
241
rc = SR_EventLogTokenSize_t(
eventLog
, L("VER"), ver);
242
rc = SR_EventLogEvent(
eventLog
, L("ESRarbd"));
/external/srec/srec/Recognizer/include/
SR_RecognizerImpl.h
274
*
EventLog
pointer
276
SR_EventLog*
eventLog
;
Completed in 864 milliseconds