/Zephyr-Core-3.4.0/scripts/logging/dictionary/dictionary_parser/ |
D | log_database.py | 78 self.database = new_db 83 return self.database['version'] 88 return self.database['build_id'] 93 self.database['build_id'] = build_id 98 return self.database['arch'] 103 self.database['arch'] = arch 108 if 'bits' in self.database['target']: 109 return self.database['target']['bits'] 116 self.database['target']['bits'] = bits 122 if 'bits' not in self.database['target']: [all …]
|
D | mipi_syst.py | 68 def __gen_syst_modules(database): argument 72 if 'log_subsys' not in database.database: 75 if 'log_instances' not in database.database['log_subsys']: 78 instances = database.database['log_subsys']['log_instances'] 94 def __gen_syst_catalog(database): argument 98 if not database.has_string_mappings(): 101 if database.is_tgt_64bit(): 108 for addr, one_str in database.get_string_mappings().items(): 111 if database.is_tgt_64bit(): 119 def gen_syst_xml_file(database): argument [all …]
|
D | __init__.py | 14 def get_parser(database): argument 16 db_ver = int(database.get_version()) 20 return LogParserV1(database)
|
D | log_parser.py | 16 def __init__(self, database): argument 17 self.database = database
|
D | log_parser_v1.py | 105 def __init__(self, database): argument 106 self.database = database 109 if database.is_tgt_64bit(): 125 if self.database.is_tgt_little_endian(): 146 if self.database.is_tgt_64bit(): 169 def __init__(self, database): argument 170 super().__init__(database=database) 172 if self.database.is_tgt_little_endian(): 180 if self.database.is_tgt_64bit(): 185 if "CONFIG_LOG_TIMESTAMP_64BIT" in self.database.get_kconfigs(): [all …]
|
/Zephyr-Core-3.4.0/scripts/logging/dictionary/ |
D | database_gen.py | 170 def parse_log_const_symbols(database, log_const_area, log_const_symbols, string_mappings): argument 172 if database.is_tgt_little_endian(): 177 if database.is_tgt_64bit(): 223 database.add_log_instance(source_id, instance_name, level, sym.entry['st_value']) 226 def extract_elf_information(elf, database): argument 232 database.set_tgt_endianness(LogDatabase.LITTLE_ENDIAN) 234 database.set_tgt_endianness(LogDatabase.BIG_ENDIAN) 240 def process_kconfigs(elf, database): argument 245 database.set_tgt_bits(64 if "CONFIG_64BIT" in kconfigs else 32) 250 database.set_arch(name) [all …]
|
D | log_parser.py | 116 database = LogDatabase.read_json_database(args.dbfile) 117 if database is None: 126 log_parser = dictionary_parser.get_parser(database) 128 logger.debug("# Build ID: %s", database.get_build_id()) 129 logger.debug("# Target: %s, %d-bit", database.get_arch(), database.get_tgt_bits()) 130 if database.is_tgt_little_endian():
|
/Zephyr-Core-3.4.0/boards/arm64/fvp_baser_aemv8r/doc/ |
D | debug-with-arm-ds.rst | 37 Create a new configuration database 40 Create a new configuration database by selecting ``File -> New -> Other... -> Configuration Databas… 42 .. image:: images/create-new-configuration-database.jpg 44 :alt: Arm DS create new configuration database 46 Choose a name for the database. Here ``Zephyr`` is used: 50 :alt: Arm DS create new configuration database: choose database name 52 Click ``Finish`` and the new configuration database can be seen in ``Project Explorer``: 56 :alt: Arm DS create new configuration database: shown in project explorer
|
/Zephyr-Core-3.4.0/scripts/coccinelle/ |
D | find_dev_usage.cocci | 4 // Uses a python database (a dict) to find where const struct device
|
D | find_functions.cocci | 7 // Generate a q&d python database (a dict actually) of all the
|
/Zephyr-Core-3.4.0/scripts/footprint/ |
D | upload_data.py | 47 client.write_points(footprint_data, time_precision='s', database='footprint_tracking')
|
/Zephyr-Core-3.4.0/.github/ISSUE_TEMPLATE/ |
D | 007_ext-source.md | 44 database)?
|
/Zephyr-Core-3.4.0/doc/_extensions/zephyr/kconfig/static/ |
D | kconfig.mjs | 480 /* load database */ 481 showProgress('Loading database...'); 514 showError(`Kconfig database could not be loaded (${error})`);
|
/Zephyr-Core-3.4.0/doc/connectivity/bluetooth/api/mesh/ |
D | shell.rst | 317 …Provision the mesh node itself. If the Configuration database is enabled, the network key must be … 418 … Client is depending on the provisioning features and the Configuration database to be fully funct… 1584 Configuration database 1587 …database is an optional mesh subsystem that can be enabled through the :kconfig:option:`CONFIG_BT_… 1592 Create a Configuration database. argument 1600 Clear all data from the Configuration database. argument 1606 Show all data in the Configuration database. argument 1612 …Manually add a mesh node to the configuration database. Note that devices provisioned with ``mesh … 1624 …e Configuration database. If possible, the node should be reset with ``mesh reset`` before it is d… argument 1632 …nfiguration database. The network key can later be passed to mesh nodes in the network. Note that … argument [all …]
|
D | provisioning.rst | 45 value database. The URI is advertised in a separate beacon, with a URI hash
|
/Zephyr-Core-3.4.0/doc/develop/tools/ |
D | coccinelle.rst | 230 When no ID file is specified coccinelle assumes your ID database file 232 carries a script scripts/idutils_index.sh which creates the database with: 238 If you have another database filename you can also just symlink with this 245 Alternatively you can specify the database filename explicitly, for
|
/Zephyr-Core-3.4.0/subsys/bluetooth/host/ |
D | Kconfig.gatt | 103 bool "GATT dynamic database support" 119 changed on the GATT database.
|
/Zephyr-Core-3.4.0/doc/connectivity/bluetooth/api/ |
D | gatt.rst | 7 GATT layer manages the service database providing APIs for service registration
|
/Zephyr-Core-3.4.0/samples/boards/nrf/mesh/onoff-app/ |
D | README.rst | 76 The meshctl utility maintains a persistent JSON database containing
|
/Zephyr-Core-3.4.0/share/zephyr-package/cmake/ |
D | zephyr_package_search.cmake | 4 # Windows: Registry database
|
/Zephyr-Core-3.4.0/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/ |
D | README.rst | 96 The meshctl utility maintains a persistent JSON database containing
|
/Zephyr-Core-3.4.0/subsys/bluetooth/mesh/ |
D | Kconfig | 120 int "Maximum number of nodes in the database" 125 save in the configuration database. 128 int "Maximum number of subnets in the database" 133 saved in the configuration database. 136 int "Maximum number of application keys in the database" 141 be saved in the configuration database.
|
/Zephyr-Core-3.4.0/subsys/bluetooth/ |
D | Kconfig.logging | 570 bool "[DEPRECATED] Configuration database debug" 574 Use this option to enable configuration database debug logs. 1029 module-str = "Configuration database"
|
/Zephyr-Core-3.4.0/doc/services/logging/ |
D | index.rst | 719 a JSON database file, named :file:`log_dictionary.json`, will be created 720 in the build directory. This database file contains information for the parser 721 to correctly parse the log data. Note that this database file only works 731 to the JSON database file, and the second part is the file containing log data.
|
/Zephyr-Core-3.4.0/doc/releases/ |
D | release-notes-1.8.rst | 123 * Host: GATT database changed to a linked list in preparation for dynamic allocation
|