Home
last modified time | relevance | path

Searched refs:aLevel (Results 1 – 10 of 10) sorted by relevance

/external/ot-br-posix/src/common/
Dlogging.cpp66 void otbrLogSetLevel(otbrLogLevel aLevel) in otbrLogSetLevel() argument
68 assert(aLevel >= OTBR_LOG_EMERG && aLevel <= OTBR_LOG_DEBUG); in otbrLogSetLevel()
69 sLevel = aLevel; in otbrLogSetLevel()
73 void otbrLogInit(const char *aIdent, otbrLogLevel aLevel, bool aPrintStderr) in otbrLogInit() argument
76 assert(aLevel >= OTBR_LOG_EMERG && aLevel <= OTBR_LOG_DEBUG); in otbrLogInit()
79 sLevel = aLevel; in otbrLogInit()
108 void otbrLog(otbrLogLevel aLevel, const char *aLogTag, const char *aFormat, ...) in otbrLog() argument
116 if ((aLevel <= sLevel) && (vsnprintf(buffer, sizeof(buffer), aFormat, ap) > 0)) in otbrLog()
118 … syslog(static_cast<int>(aLevel), "%s%s: %s", sLevelString[aLevel], GetPrefix(aLogTag), buffer); in otbrLog()
127 void otbrLogv(otbrLogLevel aLevel, const char *aFormat, va_list aArgList) in otbrLogv() argument
[all …]
Dlogging.hpp71 void otbrLogSetLevel(otbrLogLevel aLevel);
89 void otbrLogInit(const char *aIdent, otbrLogLevel aLevel, bool aPrintStderr);
99 void otbrLog(otbrLogLevel aLevel, const char *aLogTag, const char *aFormat, ...);
109 void otbrLogv(otbrLogLevel aLevel, const char *aFormat, va_list aArgList);
119 void otbrLogvNoFilter(otbrLogLevel aLevel, const char *aFormat, va_list aArgList);
131 void otbrDump(otbrLogLevel aLevel, const char *aLogTag, const char *aPrefix, const void *aMemory, s…
/external/ot-br-posix/src/ncp/
Dncp_openthread.cpp123 otLogLevel ControllerOpenThread::ConvertToOtLogLevel(otbrLogLevel aLevel) in ConvertToOtLogLevel() argument
127 switch (aLevel) in ConvertToOtLogLevel()
Dncp_openthread.hpp193 static otLogLevel ConvertToOtLogLevel(otbrLogLevel aLevel);
/external/openthread/src/core/meshcop/
Ddtls.hpp379 …static void HandleMbedtlsDebug(void *aContext, int aLevel, const char *aFile, int aLine, const cha…
380 void HandleMbedtlsDebug(int aLevel, const char *aFile, int aLine, const char *aStr);
Ddtls.cpp959 void Dtls::HandleMbedtlsDebug(void *aContext, int aLevel, const char *aFile, int aLine, const char … in HandleMbedtlsDebug() argument
961 static_cast<Dtls *>(aContext)->HandleMbedtlsDebug(aLevel, aFile, aLine, aStr); in HandleMbedtlsDebug()
964 void Dtls::HandleMbedtlsDebug(int aLevel, const char *aFile, int aLine, const char *aStr) in HandleMbedtlsDebug() argument
970 switch (aLevel) in HandleMbedtlsDebug()
/external/openthread/src/core/common/
Dlog.hpp61 #define OT_SHOULD_LOG_AT(aLevel) (OT_SHOULD_LOG && (OPENTHREAD_CONFIG_LOG_LEVEL >= (aLevel))) argument
/external/sqlite/dist/orig/
Dsqlite3.c227361 Fts5StructureLevel aLevel[1]; /* Array of nLevel level objects */
227841 sqlite3_free(pStruct->aLevel[i].aSeg);
227882 for(i=0; i<p->nLevel; i++) pNew->aLevel[i].aSeg = 0;
227884 Fts5StructureLevel *pLvl = &pNew->aLevel[i];
227885 nByte = sizeof(Fts5StructureSegment) * pNew->aLevel[i].nSeg;
227889 sqlite3_free(pNew->aLevel[i].aSeg);
227894 memcpy(pLvl->aSeg, p->aLevel[i].aSeg, nByte);
227955 Fts5StructureLevel *pLvl = &pRet->aLevel[iLvl];
228019 memset(&pStruct->aLevel[nLevel], 0, sizeof(Fts5StructureLevel));
228040 Fts5StructureLevel *pLvl = &pStruct->aLevel[iLvl];
[all …]
/external/sqlite/dist/
Dsqlite3.c227393 Fts5StructureLevel aLevel[1]; /* Array of nLevel level objects */
227873 sqlite3_free(pStruct->aLevel[i].aSeg);
227914 for(i=0; i<p->nLevel; i++) pNew->aLevel[i].aSeg = 0;
227916 Fts5StructureLevel *pLvl = &pNew->aLevel[i];
227917 nByte = sizeof(Fts5StructureSegment) * pNew->aLevel[i].nSeg;
227921 sqlite3_free(pNew->aLevel[i].aSeg);
227926 memcpy(pLvl->aSeg, p->aLevel[i].aSeg, nByte);
227987 Fts5StructureLevel *pLvl = &pRet->aLevel[iLvl];
228051 memset(&pStruct->aLevel[nLevel], 0, sizeof(Fts5StructureLevel));
228072 Fts5StructureLevel *pLvl = &pStruct->aLevel[iLvl];
[all …]
/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3.c220134 Fts5StructureLevel aLevel[1]; /* Array of nLevel level objects */
220610 sqlite3_free(pStruct->aLevel[i].aSeg);
220672 Fts5StructureLevel *pLvl = &pRet->aLevel[iLvl];
220734 memset(&pStruct->aLevel[nLevel], 0, sizeof(Fts5StructureLevel));
220755 Fts5StructureLevel *pLvl = &pStruct->aLevel[iLvl];
220848 assert_nc( p->pStruct->aLevel[i].nMerge==pTest->aLevel[i].nMerge );
220849 assert_nc( p->pStruct->aLevel[i].nSeg==pTest->aLevel[i].nSeg );
220850 for(j=0; j<pTest->aLevel[i].nSeg; j++){
220851 Fts5StructureSegment *p1 = &pTest->aLevel[i].aSeg[j];
220852 Fts5StructureSegment *p2 = &p->pStruct->aLevel[i].aSeg[j];
[all …]