/system/connectivity/wificond/scanning/ |
D | radio_chain_info.h | 30 RadioChainInfo(int32_t chain_id, int32_t level) in RadioChainInfo() argument 31 : chain_id(chain_id), level(level) {} in RadioChainInfo() 33 : chain_id(0), level(0) {} in RadioChainInfo() 35 return chain_id == rhs.chain_id && level == rhs.level; 41 int32_t level; variable
|
/system/chre/platform/slpi/ |
D | chre_api_re.cc | 26 inline void logToFarf(enum chreLogLevel level, const char *logStr) { in logToFarf() argument 27 switch (level) { in logToFarf() 44 inline ashLogLevel chreLogLevelToAshLogLevel(enum chreLogLevel level) { in chreLogLevelToAshLogLevel() argument 46 switch (level) { in chreLogLevelToAshLogLevel() 64 DLL_EXPORT void chreLog(enum chreLogLevel level, const char *formatStr, ...) { in chreLog() argument 70 chre::LogBufferManagerSingleton::get()->logVa(level, formatStr, args); in chreLog() 78 logToFarf(level, logBuf); in chreLog() 80 ashVaLog(ASH_SOURCE_CHRE, chreLogLevelToAshLogLevel(level), formatStr, args); in chreLog()
|
/system/core/libcutils/ |
D | klog.cpp | 33 void klog_set_level(int level) { in klog_set_level() argument 34 klog_level = level; in klog_set_level() 47 void klog_writev(int level, const struct iovec* iov, int iov_count) { in klog_writev() argument 48 if (level > klog_level) return; in klog_writev() 55 void klog_write(int level, const char* fmt, ...) { in klog_write() argument 56 if (level > klog_level) return; in klog_write() 69 klog_writev(level, iov, 1); in klog_write()
|
/system/libhidl/vintfdata/ |
D | freeze.sh | 12 local level="$1" 31 echo "Updating level ${level}" 32 …"${ANDROID_HOST_OUT}/bin/vintffm" --update --level "${level}" --dirmap "/system:${ANDROID_PRODUCT_… 34 …r}/frozen/%s\n" $(ls -1 -t -r ${mydir}/frozen | xargs -I{} basename {} | grep -B1 "${level}.xml"))"
|
D | README.md | 5 Add a new `<hal>` entry without a `max-level` attribute. The `<hal>` entry can 22 Leave `max-level` attribute empty. 26 When a framework HAL is deprecated, set `max-level` field of the HAL from empty 28 For example, if IDisplayService is deprecated in Android S, set `max-level` to 33 <hal format="hidl" max-level="5"> <!-- Level::R --> 41 Note that the `max-level` of the HAL is set to Android R, meaning that the HAL 47 When setting `max-level` of a HAL: 50 `max-level > last_frozen_level`. 52 `max-level` is set appropriately. 60 Devices that are lower than the `max-level` attribute of the HAL may start to [all …]
|
/system/nvram/core/include/nvram/core/ |
D | logger.h | 43 #define NVRAM_LOG_EMIT(level, fmt, ...) \ argument 44 LOG_PRI(NVRAM_ANDROID_LOG_PRI_##level, LOG_TAG, fmt, ##__VA_ARGS__) 53 #define NVRAM_LOG_EMIT(level, fmt, ...) \ argument 63 #define NVRAM_LOG(level, fmt, ...) \ argument 65 if (NVRAM_LOG_LEVEL_##level <= NVRAM_LOG_LEVEL) { \ 66 NVRAM_LOG_EMIT(level, __FILE__ ":" NVRAM_STRINGIFY(__LINE__) ": " fmt, \
|
/system/chre/platform/slpi/include/chre/target_platform/ |
D | log.h | 49 #define CHRE_BUFFER_LOG(level, fmt, ...) \ argument 52 chrePlatformLogToBuffer(level, fmt, ##__VA_ARGS__); \ 63 #define CHRE_SEND_TOKENIZED_LOG(level, fmt, ...) \ argument 66 PW_TOKENIZE_TO_GLOBAL_HANDLER_WITH_PAYLOAD((void *)level, fmt, \ 112 #define CHRE_SLPI_LOG(level, fmt, ...) \ argument 115 FARF(level, fmt, ##__VA_ARGS__); \ 128 #define CHRE_SLPI_LOG(level, fmt, ...) \ argument 131 ashLog(ASH_SOURCE_CHRE, level, fmt, ##__VA_ARGS__); \
|
/system/timezone/input_tools/android/common/src/main/java/com/android/libcore/timezone/util/ |
D | Errors.java | 37 private int level = 0; field in Errors 93 return level >= LEVEL_ERROR; in hasError() 98 return level >= LEVEL_FATAL; in hasFatal() 101 private void addInternal(String msg, Throwable t, int level) { in addInternal() argument 102 this.level = Math.max(this.level, level); in addInternal()
|
/system/libvintf/analyze_matrix/ |
D | analyze_matrix.cpp | 71 std::string GetDescription(Level level) { in GetDescription() argument 72 switch (level) { in GetDescription() 94 return "Level " + std::to_string(level); in GetDescription() 107 DEFINE_bool(level, false, "Write level (FCM version) of the compatibility matrix."); 126 if (mat->level() == Level::UNSPECIFIED) { in main() 129 std::cout << mat->level() << std::endl; in main() 135 if (mat->level() == Level::UNSPECIFIED) { in main() 138 std::cout << GetDescription(mat->level()) << std::endl; in main()
|
D | hals_for_release.py | 164 def __init__(self, level: str, level_name: str, instances: Sequence[str]): 165 self.level = level 182 level, level_name = GetLevel(args.analyze_matrix, file), GetLevelName(args.analyze_matrix, file) 183 if level is None: 189 if level in matrices: 190 logger.warning("Found duplicated matrix for level %s, ignoring: %s", level, file) 192 matrices[level] = MatrixData(level, level_name, instances) 407 self.matrixData2.level, self.matrixData2.level_name, 408 self.matrixData1.level, self.matrixData1.level_name), 438 "old": {"level": self.matrixData1.level, [all …]
|
/system/libvintf/ |
D | VintfFm.cpp | 213 int VintfFm::update(const FsFactory& vintfFsFactory, const std::string& dir, Level level) { in update() argument 214 if (level == Level::UNSPECIFIED) { in update() 219 auto manifest = getManifestForLevel(vintfFsFactory, level); in update() 221 LOG(ERROR) << "Unable to determine manifests for level " << level; in update() 225 if (!dumpMatrix(*manifest, dir, level)) { in update() 237 for (const auto& [level, matrix] : *frozenMatrices) { in check() 238 auto manifest = getManifestForLevel(vintfFsFactory, level); in check() 240 LOG(ERROR) << "Unable to determine manifests for level " << level; in check() 245 LOG(ERROR) << "Framework manifest is incompatible with frozen matrix at level " << level in check() 254 Level level) { in getManifestForLevel() argument [all …]
|
D | MatrixKernel.cpp | 30 void MatrixKernel::setSourceMatrixLevel(Level level) { in setSourceMatrixLevel() argument 31 mSourceMatrixLevel = level; in setSourceMatrixLevel()
|
D | CompatibilityMatrix.cpp | 57 kernel.setSourceMatrixLevel(level()); in addKernel() 117 Level CompatibilityMatrix::level() const { in level() function in android::vintf::CompatibilityMatrix 194 if (other == nullptr || other->level() <= level()) { in addAllHalsAsOptional() 252 if (other == nullptr || other->level() <= level()) { in addAllXmlFilesAsOptional() 274 kernel.setSourceMatrixLevel(other->level()); in addAllKernels() 352 if (e.level() == Level::UNSPECIFIED) { in combine() 360 [](const auto& x, const auto& y) { return x.level() < y.level(); }); in combine() 369 if (e.level() < deviceLevel) { in combine() 371 if (e.level() < kernelLevel) continue; in combine() 373 } else if (e.level() == deviceLevel) { in combine() [all …]
|
/system/keymaster/android_keymaster/ |
D | logger.cpp | 25 int Logger::Log(LogLevel level, const char* fmt, va_list args) { in Log() argument 27 return instance_->log_msg(level, fmt, args); in Log() 32 int Logger::Log(LogLevel level, const char* fmt, ...) { in Log() argument 35 int result = Log(level, fmt, args); in Log()
|
/system/core/libcutils/include/cutils/ |
D | klog.h | 26 void klog_set_level(int level); 28 void klog_write(int level, const char *fmt, ...) 30 void klog_writev(int level, const struct iovec* iov, int iov_count);
|
/system/core/libcutils/include_outside_system/cutils/ |
D | klog.h | 26 void klog_set_level(int level); 28 void klog_write(int level, const char *fmt, ...) 30 void klog_writev(int level, const struct iovec* iov, int iov_count);
|
/system/libvintf/include-test/vintf/ |
D | VintfFm.h | 48 int update(const FsFactory& vintfFsFactory, const std::string& dir, Level level); 50 Level level); 51 bool dumpMatrix(const HalManifest& manifest, const std::string& dir, Level level);
|
/system/logging/liblog/tests/ |
D | liblog_test.cpp | 1243 int level; in TEST() member 1267 if (levels[i].level == -2) { in TEST() 1271 if (levels[j].level == -2) { in TEST() 1276 levels[i].level, tag, strlen(tag), levels[j].level); in TEST() 1277 if ((levels[i].level < levels[j].level) || (levels[j].level == -1)) { in TEST() 1284 levels[i].level, tag, strlen(tag), levels[j].level)); in TEST() 1293 levels[i].level, tag, strlen(tag), levels[j].level)); in TEST() 1301 if (levels[i].level == -2) { in TEST() 1315 levels[i].level, tag, strlen(tag), ANDROID_LOG_DEBUG); in TEST() 1316 if ((levels[i].level < levels[j].level) || (levels[j].level == -1) || in TEST() [all …]
|
/system/chre/platform/tinysys/include/chre/target_platform/ |
D | log.h | 43 void chrePlatformLogToBuffer(enum chreLogLevel level, const char *format, ...); 46 #define CHRE_BUFFER_LOG(level, fmt, arg...) \ argument 49 chrePlatformLogToBuffer(level, fmt, ##arg); \
|
/system/keymaster/include/keymaster/ |
D | logger.h | 37 virtual int log_msg(LogLevel level, const char* fmt, va_list args) const = 0; 39 static int Log(LogLevel level, const char* fmt, va_list args); 40 static int Log(LogLevel level, const char* fmt, ...);
|
/system/chre/external/pigweed/pw_log_nanoapp/public_overrides/pw_log_backend/ |
D | log_backend.h | 23 #define PW_HANDLE_LOG(level, module, flags, fmt, ...) \ argument 26 switch (level) { \
|
/system/chre/core/ |
D | log.cc | 25 void EncodeTokenizedMessage(uint32_t level, pw_tokenizer_Token token, in EncodeTokenizedMessage() argument 32 chrePlatformEncodedLogToBuffer(static_cast<chreLogLevel>(level), in EncodeTokenizedMessage()
|
/system/chre/platform/tinysys/ |
D | chre_api_re.cc | 21 DLL_EXPORT void chreLog(enum chreLogLevel level, const char *formatStr, ...) { in chreLog() argument 29 switch (level) { in chreLog()
|
/system/chre/platform/linux/ |
D | chre_api_re.cc | 23 DLL_EXPORT void chreLog(enum chreLogLevel level, const char *formatStr, ...) { in chreLog() argument 31 switch (level) { in chreLog()
|
/system/chre/platform/exynos/ |
D | chre_api_re.cc | 20 DLL_EXPORT void chreLog(enum chreLogLevel level, const char *formatStr, ...) { in chreLog() argument 28 switch (level) { in chreLog()
|