Lines Matching refs:string_mappings
175 def parse_log_const_symbols(database, log_const_area, log_const_symbols, string_mappings): argument
219 instance_name = find_string_in_mappings(string_mappings, str_ptr)
269 def extract_logging_subsys_information(elf, database, string_mappings): argument
288 parse_log_const_symbols(database, section_log_const, log_const_symbols, string_mappings)
462 string_mappings = {}
472 string_mappings[str_var['addr']] = one_str
494 if one_str not in string_mappings:
495 string_mappings[one_str] = rawstr_map[one_str]
497 return string_mappings
557 string_mappings = extract_static_strings(elf, database, section_extraction)
558 if len(string_mappings) > 0:
559 database.set_string_mappings(string_mappings)
560 logger.info("Found %d strings", len(string_mappings))
568 string_mappings = extract_static_strings(elf, database, section_extraction=True)
570 extract_logging_subsys_information(elf, database, string_mappings)