/Zephyr-latest/subsys/logging/frontends/stmesp/ |
D | zephyr_custom_log.h | 41 #define Z_LOG_STMESP_0(_level, _source, ...) \ argument 43 if (!Z_LOG_LEVEL_ALL_CHECK(_level, __log_current_const_data, _source)) { \ 46 LOG_FRONTEND_STMESP_LOG0(_source, STRINGIFY(_level) __VA_ARGS__); \ 67 #define Z_LOG_STMESP_1(_level, _source, ...) \ argument 74 if (!Z_LOG_LEVEL_ALL_CHECK(_level, __log_current_const_data, _source)) { \ 77 LOG_FRONTEND_STMESP_LOG1(_source, STRINGIFY(_level) __VA_ARGS__, dummy); \ 89 #define Z_LOG_STMESP(_level, _source, ...) \ argument 91 (Z_LOG_STMESP_0(_level, _source, __VA_ARGS__)), ( \ 93 (Z_LOG_STMESP_1(_level, _source, __VA_ARGS__)), \
|
/Zephyr-latest/include/zephyr/logging/ |
D | log_msg.h | 271 #define Z_LOG_MSG_SIMPLE_CREATE_1(_source, _level, ...) \ argument 272 z_log_msg_simple_create_1(_source, _level, GET_ARG_N(1, __VA_ARGS__), \ 277 #define Z_LOG_MSG_SIMPLE_CREATE_2(_source, _level, ...) \ argument 278 z_log_msg_simple_create_2(_source, _level, GET_ARG_N(1, __VA_ARGS__), \ 291 #define Z_LOG_MSG_SIMPLE_FUNC2(arg_cnt, _source, _level, ...) \ argument 293 (z_log_msg_simple_create_0(_source, _level, GET_ARG_N(1, __VA_ARGS__))), \ 295 Z_LOG_MSG_SIMPLE_CREATE_1(_source, _level, __VA_ARGS__, dummy) \ 297 Z_LOG_MSG_SIMPLE_CREATE_2(_source, _level, __VA_ARGS__, dummy, dummy) \ 310 #define LOG_MSG_SIMPLE_FUNC(_source, _level, ...) \ argument 311 Z_LOG_MSG_SIMPLE_FUNC2(NUM_VA_ARGS_LESS_1(__VA_ARGS__), _source, _level, __VA_ARGS__) [all …]
|
D | log_core.h | 170 #define Z_LOG_STATIC_INST_LEVEL_CHECK(_level, _inst, _source) \ argument 172 (_level <= ((const struct log_source_const_data *)_source)->level)) 184 #define Z_LOG_DYNAMIC_LEVEL_CHECK(_level, _source) \ argument 186 ((_level) <= Z_LOG_RUNTIME_FILTER(((struct log_source_dynamic_data *)_source)->filters))) 199 #define Z_LOG_LEVEL_ALL_CHECK(_level, _inst, _source) \ argument 201 Z_LOG_STATIC_INST_LEVEL_CHECK(_level, _inst, _source) && \ 202 Z_LOG_DYNAMIC_LEVEL_CHECK(_level, _source)) 292 #define Z_LOG2(_level, _inst, _source, ...) \ argument 294 if (!Z_LOG_LEVEL_ALL_CHECK(_level, _inst, _source)) { \ 305 LOG_STRING_WARNING(_mode, _source, __VA_ARGS__); \ [all …]
|
D | log_frontend_stmesp.h | 109 #define LOG_FRONTEND_STMESP_LOG0(_source, ...) \ argument 118 log_frontend_stmesp_log0(_source, idx); \ 126 #define LOG_FRONTEND_STMESP_LOG1(_source, ...) \ argument 135 log_frontend_stmesp_log1(_source, idx, (uintptr_t)(GET_ARG_N(2, __VA_ARGS__))); \
|
/Zephyr-latest/drivers/regulator/ |
D | regulator_max20335.c | 341 #define REGULATOR_MAX20335_DEFINE(node_id, id, child_name, _source) \ argument 346 .source = _source, \
|
D | regulator_npm6001.c | 584 #define REGULATOR_NPM6001_DEFINE(node_id, id, _source) \ argument 590 .source = _source, \
|
D | regulator_npm1300.c | 647 #define REGULATOR_NPM1300_DEFINE(node_id, id, _source) \ argument 653 .source = _source, \
|
D | regulator_npm2100.c | 755 #define REGULATOR_NPM2100_DEFINE(node_id, id, _source) \ argument 761 .source = _source, \
|