Home
last modified time | relevance | path

Searched refs:strLog (Results 1 – 4 of 4) sorted by relevance

/external/parameter-framework/upstream/test/functional-tests/include/
DStoreLogger.hpp65 void warning(const std::string &strLog) override in warning() argument
67 logs.push_back({Log::Level::warning, strLog}); in warning()
69 void info(const std::string &strLog) override { logs.push_back({Log::Level::info, strLog}); } in info() argument
/external/parameter-framework/upstream/parameter/log/include/log/
DILogger.h43 virtual void info(const std::string &strLog) = 0;
44 virtual void warning(const std::string &strLog) = 0;
/external/parameter-framework/upstream/parameter/include/
DParameterMgrPlatformConnector.h57 virtual void info(const std::string &strLog) = 0;
58 virtual void warning(const std::string &strLog) = 0;
/external/parameter-framework/upstream/bindings/c/
DParameterFramework.cpp126 void log(PfwLogLevel level, const string &strLog) in log() argument
131 mLogger.logCb(mLogger.userCtx, level, strLog.c_str()); in log()