Home
last modified time | relevance | path

Searched refs:level (Results 26 – 50 of 843) sorted by relevance

12345678910>>...34

/Zephyr-latest/arch/arm64/core/
Dmmu.c154 static inline bool is_table_desc(uint64_t desc, unsigned int level) in is_table_desc() argument
156 return level != XLAT_LAST_LEVEL && in is_table_desc()
186 unsigned int level) in is_desc_superset() argument
188 uint64_t mask = DESC_ATTRS_MASK | GENMASK64(47, LEVEL_TO_VA_SIZE_SHIFT(level)); in is_desc_superset()
194 static void debug_show_pte(uint64_t *pte, unsigned int level) in debug_show_pte() argument
196 MMU_DEBUG("%.*s", level * 2U, ". . . "); in debug_show_pte()
206 if (is_table_desc(*pte, level)) { in debug_show_pte()
234 static inline void debug_show_pte(uint64_t *pte, unsigned int level) { } in debug_show_pte() argument
237 static void set_pte_table_desc(uint64_t *pte, uint64_t *table, unsigned int level) in set_pte_table_desc() argument
241 debug_show_pte(pte, level); in set_pte_table_desc()
[all …]
/Zephyr-latest/scripts/native_simulator/common/src/
Dnsi_tasks.h52 #define NSI_TASK(fn, level, prio) \ argument
55 __attribute__((__section__(".nsi_" #level NSI_STRINGIFY(prio) "_task")))\
58 _Static_assert(NSITASK_##level##_LEVEL >= 0, \
66 void nsi_run_tasks(int level);
Dnsi_tasks.c12 void nsi_run_tasks(int level) in nsi_run_tasks() argument
36 for (fptr = nsi_pre_tasks[level]; fptr < nsi_pre_tasks[level+1]; in nsi_run_tasks()
/Zephyr-latest/soc/intel/intel_adsp/ace/
D_soc_inthandlers.h21 #error core-isa.h interrupt level does not match dispatcher!
24 #error core-isa.h interrupt level does not match dispatcher!
27 #error core-isa.h interrupt level does not match dispatcher!
30 #error core-isa.h interrupt level does not match dispatcher!
33 #error core-isa.h interrupt level does not match dispatcher!
36 #error core-isa.h interrupt level does not match dispatcher!
39 #error core-isa.h interrupt level does not match dispatcher!
42 #error core-isa.h interrupt level does not match dispatcher!
45 #error core-isa.h interrupt level does not match dispatcher!
/Zephyr-latest/scripts/native_simulator/common/other/
Dlinker_script.pre.ld12 #define NSI_INIT_LEVEL(level) \ argument
13 __nsi_##level##_tasks_start = .; \
14 KEEP(*(SORT(.nsi_##level[0-9]_task))); \
15 KEEP(*(SORT(.nsi_##level[1-9][0-9]_task))); \
16 KEEP(*(SORT(.nsi_##level[1-9][0-9][0-9]_task))); \
/Zephyr-latest/samples/subsys/logging/logger/src/
Dext_log_system.h24 typedef void (*ext_log_handler)(enum ext_log_level level,
37 #define ext_log(level, ...) log_handler(level, __VA_ARGS__) argument
/Zephyr-latest/soc/native/inf_clock/
Dnative_tasks.c12 void run_native_tasks(int level) in run_native_tasks() argument
32 for (fptr = native_pre_tasks[level]; fptr < native_pre_tasks[level+1]; in run_native_tasks()
Dposix_native_task.h41 #define NATIVE_TASK(fn, level, prio) \ argument
43 __attribute__((__section__(".native_" #level STRINGIFY(prio) "_task")))\
58 void run_native_tasks(int level);
/Zephyr-latest/include/zephyr/logging/
Dlog_frontend.h47 void log_frontend_simple_0(const void *source, uint32_t level, const char *fmt);
62 void log_frontend_simple_1(const void *source, uint32_t level, const char *fmt, uint32_t arg);
78 void log_frontend_simple_2(const void *source, uint32_t level,
/Zephyr-latest/subsys/emul/espi/
Demul_espi_host.c26 uint8_t level; member
128 enum espi_vwire_signal vw, uint8_t level) in emul_host_set_vw() argument
140 data->vw_state[idx].level = level; in emul_host_set_vw()
146 enum espi_vwire_signal vw, uint8_t *level) in emul_host_get_vw() argument
158 *level = data->vw_state[idx].level; in emul_host_get_vw()
164 uint8_t level) in emul_espi_host_send_vw() argument
187 data_host->vw_state[idx].level = level; in emul_espi_host_send_vw()
191 evt.evt_data = level; in emul_espi_host_send_vw()
/Zephyr-latest/tests/kernel/threads/no-multithreading/src/
Dmain.c82 #define SYS_INIT_CREATE(level) \ argument
83 static int pre_kernel_##level##_init_func(void) \
85 if (init_order != IDX_##level && sys_init_result == 0) { \
92 SYS_INIT(pre_kernel_##level##_init_func, level, 0)
/Zephyr-latest/subsys/bluetooth/services/bas/
Dbas.c113 int bt_bas_set_battery_level(uint8_t level) in bt_bas_set_battery_level() argument
117 if (level > 100U) { in bt_bas_set_battery_level()
121 battery_level = level; in bt_bas_set_battery_level()
123 rc = bt_gatt_notify(NULL, &bas.attrs[1], &level, sizeof(level)); in bt_bas_set_battery_level()
126 bt_bas_bls_set_battery_level(level); in bt_bas_set_battery_level()
/Zephyr-latest/tests/subsys/logging/log_api/src/
Dmock_frontend.h19 uint8_t level,
24 static inline void mock_log_frontend_record(uint16_t source_id, uint8_t level, const char *str) in mock_log_frontend_record() argument
26 mock_log_frontend_generic_record(source_id, 0, level, str, NULL, 0); in mock_log_frontend_record()
Dmock_backend.h22 uint8_t level; member
55 uint8_t level,
64 uint8_t level, in mock_log_backend_record() argument
68 mock_log_backend_generic_record(backend, source_id, domain_id, level, in mock_log_backend_record()
/Zephyr-latest/subsys/logging/
Dlog_output.c65 static int level_to_rfc5424_severity(uint32_t level) in level_to_rfc5424_severity() argument
69 switch (level) { in level_to_rfc5424_severity()
275 bool color, bool start, uint32_t level) in color_print() argument
278 const char *log_color = start && (colors[level] != NULL) ? in color_print()
279 colors[level] : LOG_COLOR_CODE_DEFAULT; in color_print()
285 bool color, uint32_t level) in color_prefix() argument
287 color_print(output, color, true, level); in color_prefix()
291 bool color, uint32_t level) in color_postfix() argument
293 color_print(output, color, false, level); in color_postfix()
304 uint32_t level) in ids_print() argument
[all …]
/Zephyr-latest/tests/subsys/logging/log_link_order/src/
Dmock_log_link.c42 uint16_t source_id, uint8_t *level, uint8_t *runtime_level) in get_levels() argument
44 if (level) { in get_levels()
45 *level = LOG_LEVEL_INF; in get_levels()
55 uint16_t source_id, uint8_t level) in set_runtime_level() argument
/Zephyr-latest/lib/posix/options/
Dsyslog.c72 int level = syslog_priority_to_zephyr_log_level(priority); in vsyslog() local
74 if (level < 0) { in vsyslog()
83 if ((BIT(level) & mask) == 0) { in vsyslog()
91 log_generic(level, format, ap); in vsyslog()
/Zephyr-latest/include/zephyr/
Ddevice.h172 config, level, prio, api) \ argument
175 pm, data, config, level, prio, api, \
183 #define DEVICE_DEFINE(dev_id, name, init_fn, pm, data, config, level, prio, \ argument
186 level, prio, api)
237 level, prio, api, ...) \ argument
241 Z_DEVICE_DT_FLAGS(node_id), pm, data, config, level, \
252 #define DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, prio, api, \ argument
255 level, prio, api, __VA_ARGS__)
1186 #define Z_DEVICE_SECTION_NAME(level, prio) \ argument
1187 _CONCAT(INIT_LEVEL_ORD(level), _##prio)
[all …]
/Zephyr-latest/soc/snps/arc_iot/
Dsysconf.c231 void arc_iot_dvfs_clk_divisor(uint8_t level, uint8_t div) in arc_iot_dvfs_clk_divisor() argument
233 if (level == DVFS_PERF_LEVEL0) { in arc_iot_dvfs_clk_divisor()
236 } else if (level == DVFS_PERF_LEVEL1) { in arc_iot_dvfs_clk_divisor()
239 } else if (level == DVFS_PERF_LEVEL2) { in arc_iot_dvfs_clk_divisor()
242 } else if (level == DVFS_PERF_LEVEL3) { in arc_iot_dvfs_clk_divisor()
248 void arc_iot_dvfs_vdd_config(uint8_t level, uint8_t val) in arc_iot_dvfs_vdd_config() argument
252 if (level == DVFS_PERF_LEVEL0) { in arc_iot_dvfs_vdd_config()
255 } else if (level == DVFS_PERF_LEVEL1) { in arc_iot_dvfs_vdd_config()
258 } else if (level == DVFS_PERF_LEVEL2) { in arc_iot_dvfs_vdd_config()
261 } else if (level == DVFS_PERF_LEVEL3) { in arc_iot_dvfs_vdd_config()
/Zephyr-latest/modules/openthread/platform/
Dlogging.c47 int level = log_translate(aLogLevel); in otPlatLog() local
50 if (level < 0) { in otPlatLog()
55 log_generic(level, aFormat, param_list); in otPlatLog()
/Zephyr-latest/include/zephyr/drivers/firmware/scmi/
Dutil.h182 #define DT_INST_SCMI_TRANSPORT_DEFINE(inst, pm, data, config, level, prio, api) \ argument
184 pm, data, config, level, prio, api)
212 level, prio, api) \ argument
217 config, level, prio, api)
233 level, prio, api) \ argument
235 data, config, level, prio, api)
/Zephyr-latest/samples/subsys/logging/logger/
DREADME.rst10 main features: severity levels, timestamping, module level filtering and
11 instance level filtering. It also showcases logging capabilities in terms of
38 Instance level logging showcase.
66 [00:00:03.165,977] <err> ext_log_system: critical level log
67 [00:00:03.165,991] <err> ext_log_system: error level log, 1 arguments: 1
68 [00:00:03.166,006] <wrn> ext_log_system: warning level log, 2 arguments: 12
69 [00:00:03.166,025] <inf> ext_log_system: notice level log, 3 arguments: 105
70 [00:00:03.166,044] <inf> ext_log_system: info level log, 4 arguments : 1 24
/Zephyr-latest/drivers/sensor/st/vl53l1x/
Dvl53l1_platform_log.h113 uint32_t level,
128 uint32_t level,
161 #define _LOG_TRACE_PRINT(module, level, function, ...) \ argument
162 VL53L1_trace_print_module_function(module, level, function, ##__VA_ARGS__);
190 #define _LOG_TRACE_PRINT(module, level, function, ...) argument
/Zephyr-latest/include/zephyr/net/
Dlwm2m_path.h89 #define LWM2M_OBJ1(oi) (struct lwm2m_obj_path) {.obj_id = oi, .level = 1}
90 #define LWM2M_OBJ2(oi, oii) (struct lwm2m_obj_path) {.obj_id = oi, .obj_inst_id = oii, .level = 2}
92 {.obj_id = oi, .obj_inst_id = oii, .res_id = ri, .level = 3}
94 {.obj_id = oi, .obj_inst_id = oii, .res_id = ri, .res_inst_id = rii, .level = 4}
/Zephyr-latest/subsys/net/lib/lwm2m/
Dlwm2m_rw_opaque.c119 if (msg->path.level < LWM2M_PATH_LEVEL_RESOURCE) { in do_read_op_opaque()
121 } else if (msg->path.level > LWM2M_PATH_LEVEL_RESOURCE) { in do_read_op_opaque()
124 } else if (msg->path.level > LWM2M_PATH_LEVEL_RESOURCE_INST) { in do_read_op_opaque()
156 if (msg->path.level < LWM2M_PATH_LEVEL_RESOURCE) { in do_write_op_opaque()
157 msg->path.level = LWM2M_PATH_LEVEL_RESOURCE; in do_write_op_opaque()

12345678910>>...34