Lines Matching refs:format

113                 self.__log.error("Cannot find sname null termination at IRQ{}".format(entry_raw[0]))
121 self.__log.debug("Unpacked IRQ{}, flags: {}, sname: \"{}\"\n".format(
133 self.__log.debug("{0:<3} {1:<5} {2}".format(
207 "different interrupts: {} and {}").format(sname, i, irq))
225 return '.irq_spurious.0x{:x}'.format(irq)
229 return '.isr_generated.0x{:x}'.format(irq)
233 return '.isr_shared.0x{:x}_0x{:x}'.format(irq, ent)
237 return '.isr_shared.0x{:x}_client_num'.format(irq)
240 return '_Z_ISR_TABLE_ENTRY({irq}, {func}, NULL, "{sect}");'.format(
247 return '_Z_ISR_TABLE_ENTRY({irq}, {func}, {arg}, "{sect}");'.format(
249 arg = '&{}[{}]'.format(self.__config.shared_array_name, irq),
255 return '_Z_ISR_DIRECT_TABLE_ENTRY({irq}, {func}, "{sect}");'.format(
269 fp.write('/* ISR: {} implemented in app in "{}" section. */\n'.format(
277 fp.write('/* ISR: {} implemented in app. */\n'.format(i))
281 "{}[{}];\n".format(self.__config.shared_array_name, self.__nv))
290 '\tZ_GENERIC_SECTION({})\n'.format(self.__shared_entry_section(i, j)) +
291 '\t__used isr_shared_empty_entry_0x{:x}_0x{:x} = {{\n'.format(i, j) +
298 fp.write('/* Shared isr {} entry {} implemented in "{}" section*/\n'.format(
303 'isr_shared_client_num_0x{:x} = {};\n\n').format(
324 fp.write('{} = .;\n'.format(self.__config.irq_vector_array_name))
330 fp.write('KEEP(*("{}"))\n'.format(sname))
333 fp.write(". = ALIGN({});\n".format(self.__shared_isr_table_entry_size))
334 fp.write('{} = .;\n'.format(self.__config.shared_array_name))
345 fp.write('KEEP(*("{}"))\n'.format(self.__shared_entry_section(i, j)))
349 fp.write('/* Repetition of "{}" section */\n'.format(sname))
351 fp.write('KEEP(*("{}"))\n'.format(sname))
352 fp.write('. = . + {};\n'.format(client_num_pads))
353 fp.write('KEEP(*("{}"))\n'.format(self.__shared_client_num_section(i)))
354 fp.write(". = ALIGN({});\n".format(self.__shared_isr_table_entry_size))
357 fp.write(". = ALIGN({});\n".format(self.__swi_table_entry_size))
358 fp.write('{} = .;\n'.format(self.__config.sw_isr_array_name))
364 fp.write('KEEP(*("{}"))\n'.format(sname))