Lines Matching refs:isDebugMode
539 int HiLogSecOutputS(SecPrintfStream *stream, bool isDebugMode, const char *cformat, va_list arglist)
1320 if (!isDebugMode && isPrivacy) {
1408 int HiLogSecVsnprintfImpl(char *string, size_t count, bool isDebugMode, const char *format, va_list arglist)
1416 retVal = HiLogSecOutputS(&str, isDebugMode, format, arglist);
1429 int HiLog_Printf(char *strDest, size_t destMax, size_t count, bool isDebugMode, const char *format, va_list arglist)
1443 retVal = HiLogSecVsnprintfImpl(strDest, count + 1, isDebugMode, format, arglist);
1449 retVal = HiLogSecVsnprintfImpl(strDest, destMax, isDebugMode, format, arglist);
1494 bool isDebugMode = 1;
1499 isDebugMode = 0;
1502 isDebugMode = 1;
1545 HiLog_Printf(buf + bufLen, LOG_BUF_SIZE - bufLen, LOG_BUF_SIZE - bufLen - 1, isDebugMode, fmt, ap);