Home
last modified time | relevance | path

Searched refs:lvl (Results 1 – 8 of 8) sorted by relevance

/Zephyr-Core-3.7.0/arch/xtensa/core/
Dxtensa_intgen.py75 lvl = int(match.group(2)) variable
77 if lvl not in ints_by_lvl:
78 ints_by_lvl[lvl] = []
80 ints_by_lvl[lvl].append(irq)
114 for lvl in range(0, max+1):
115 if not lvl in ints_by_lvl:
116 ints_by_lvl[lvl] = []
119 for lvl in ints_by_lvl:
120 cprint("static inline int _xtensa_handle_one_int" + str(lvl) + "(unsigned int mask)")
123 if not ints_by_lvl[lvl]:
[all …]
/Zephyr-Core-3.7.0/scripts/logging/dictionary/dictionary_parser/
Dlog_parser.py24 def get_log_level_str_color(lvl): argument
26 if lvl < 0 or lvl >= len(LOG_LEVELS):
29 return LOG_LEVELS[lvl]
/Zephyr-Core-3.7.0/subsys/fs/ext2/
Dext2_diskops.c405 static int fetch_level_blocks(struct ext2_inode *inode, uint32_t offsets[4], int lvl, int max_lvl, in fetch_level_blocks() argument
409 bool already_fetched = try_current && (offsets[lvl] == inode->offsets[lvl]); in fetch_level_blocks()
412 if (lvl > max_lvl) { in fetch_level_blocks()
423 ext2_drop_block(inode->blocks[lvl]); in fetch_level_blocks()
425 if (lvl == 0) { in fetch_level_blocks()
428 uint32_t *list = (uint32_t *)inode->blocks[lvl - 1]->data; in fetch_level_blocks()
430 block = sys_le32_to_cpu(list[offsets[lvl]]); in fetch_level_blocks()
434 inode->blocks[lvl] = ext2_get_empty_block(inode->i_fs); in fetch_level_blocks()
436 inode->blocks[lvl] = ext2_get_block(inode->i_fs, block); in fetch_level_blocks()
439 if (inode->blocks[lvl] == NULL) { in fetch_level_blocks()
[all …]
/Zephyr-Core-3.7.0/scripts/build/
Dgen_isr_tables.py172 def get_irq_baseoffset(self, lvl): argument
173 if lvl == 2:
175 if lvl == 3:
177 self.__log.error("Unsupported irq level: {}".format(lvl))
179 def get_irq_index(self, irq, lvl): argument
180 if lvl == 2:
182 elif lvl == 3:
185 self.__log.error("Unsupported irq level: {}".format(lvl))
/Zephyr-Core-3.7.0/subsys/bluetooth/services/ias/
Dias_client.c65 int bt_ias_client_alert_write(struct bt_conn *conn, enum bt_ias_alert_lvl lvl) in bt_ias_client_alert_write() argument
78 lvl_u8 = (uint8_t)lvl; in bt_ias_client_alert_write()
91 LOG_ERR("IAS client level %d write failed: %d", lvl, err); in bt_ias_client_alert_write()
/Zephyr-Core-3.7.0/scripts/west_commands/
Drun_common.py72 lvl = record.levelno
73 if lvl > logging.CRITICAL:
75 elif lvl >= logging.ERROR:
77 elif lvl >= logging.WARNING:
79 elif lvl >= logging.INFO:
81 elif lvl >= logging.DEBUG:
/Zephyr-Core-3.7.0/drivers/clock_control/
Dclock_control_nrf.c37 #define CLOCK_LOG(lvl, dev, subsys, ...) \ argument
38 LOG_##lvl("%s: " GET_ARG_N(1, __VA_ARGS__), \
/Zephyr-Core-3.7.0/subsys/shell/
Dshell.c573 size_t *lvl, size_t *handler_lvl, in active_cmd_prepare() argument
577 *handler_lvl = *lvl; in active_cmd_prepare()