/Zephyr-Core-3.5.0/tests/subsys/logging/log_links/src/ |
D | mock_log_link.c | 16 link->ctrl_blk->source_cnt[i] = mock->domains[i]->source_cnt; in initiate() 32 *length = strlen(mock->domains[domain_id]->name); in get_domain_name() 35 strncpy(buf, mock->domains[domain_id]->name, *length); in get_domain_name() 46 strncpy(buf, mock->domains[domain_id]->sources[source_id].source, in get_source_name() 48 *length = strlen(mock->domains[domain_id]->sources[source_id].source); in get_source_name() 58 *level = mock->domains[domain_id]->sources[source_id].clevel; in get_levels() 61 *runtime_level = mock->domains[domain_id]->sources[source_id].rlevel; in get_levels() 72 mock->domains[domain_id]->sources[source_id].rlevel = level; in set_runtime_level()
|
D | mock_log_link.h | 25 struct mock_log_link_domain **domains; member
|
D | main.c | 104 .domains = domains_a 110 .domains = domains_b
|
/Zephyr-Core-3.5.0/scripts/west_commands/ |
D | flash.py | 31 domains = load_domains(build_dir).get_domains(my_args.domain, 33 do_run_common(self, my_args, runner_args, domains=domains)
|
D | run_common.py | 146 def do_run_common(command, user_args, user_runner_args, domains=None): argument 158 if domains is None: 162 domains = [load_domains(build_dir).get_default_domain()] 166 domains = load_domains(build_dir).get_domains(user_args.domain) 168 if len(domains) > 1 and len(user_runner_args) > 0: 173 for d in domains:
|
D | build.py | 231 self.domains = load_domains(self.build_dir) 611 domains = load_domains(self.build_dir) 617 build_dir_list = [domains.get_top_build_dir()] 620 domain_list = domains.get_domains(domain)
|
D | build_helpers.py | 25 from domains import Domains
|
/Zephyr-Core-3.5.0/scripts/tests/build_helpers/ |
D | test_domains.py | 17 import domains 50 result = domains.Domains.from_file('domains.yaml') 117 doms = domains.Domains.from_yaml(data) 163 doms = domains.Domains( 214 doms = domains.Domains( 247 domain = domains.Domain(name, build_dir)
|
/Zephyr-Core-3.5.0/doc/services/ipc/ipc_service/ |
D | ipc_service.rst | 10 The IPC service API provides an interface to exchange data between two domains 20 between two domains or CPUs. The actual implementation and internal 23 An individual instance is not used to send data between domains/CPUs. To send 25 instance. This allows for the connection of the two domains of interest. 33 two domains (connected by the instance). An endpoint is always associated to an 53 To send data between domains or CPUs, an endpoint must be registered onto
|
/Zephyr-Core-3.5.0/share/sysbuild/cmake/ |
D | domains.cmake | 19 file(GENERATE OUTPUT ${CMAKE_BINARY_DIR}/domains.yaml CONTENT "${domains_yaml}")
|
/Zephyr-Core-3.5.0/drivers/power_domain/ |
D | Kconfig | 7 Include drivers for power domains in system config
|
/Zephyr-Core-3.5.0/tests/benchmarks/sched_userspace/ |
D | README.rst | 8 in userspace with different memory domains.
|
/Zephyr-Core-3.5.0/subsys/logging/ |
D | Kconfig.misc | 100 int "Maximum number of link domains" 103 Number of domains that can be handled by a link
|
/Zephyr-Core-3.5.0/doc/services/pm/ |
D | power_domain.rst | 15 Power domains are optional on Zephyr, to enable this feature the 59 called "power domains", can be present in a hierarchy and can be 70 Placing devices on power domains can be done for a variety of reasons,
|
/Zephyr-Core-3.5.0/share/sysbuild/ |
D | CMakeLists.txt | 43 include(cmake/domains.cmake)
|
/Zephyr-Core-3.5.0/doc/services/logging/ |
D | index.rst | 503 More complex systems can consist of multiple domains where each domain is an 504 independent binary. Examples of domains are a core in a multicore SoC or one 516 In this approach, log messages are passed between domains using a connection between domains 526 There are three types of domains in a multi-domain system: 530 * The *relay domain* has one or more links to other domains but does not 542 In this architecture, a link can handle multiple domains. 544 the example illustrated above). There are four domains in the system, as 567 The following offset equals the previous link offset plus the number of domains in the previous 606 As such, to filter logs in multiple domains, each source requires a runtime 608 sources in other domains is not known during the compilation, the runtime filtering [all …]
|
/Zephyr-Core-3.5.0/scripts/pylib/twister/twisterlib/ |
D | testinstance.py | 65 self.domains = None 301 build_dir = self.domains.get_default_domain().build_dir
|
D | runner.py | 25 from domains import Domains 430 domains = Domains.from_file(domain_path) 432 self.instance.domains = domains 433 domain_build = domains.get_default_domain().build_dir
|
/Zephyr-Core-3.5.0/arch/arm64/core/cortex_r/ |
D | Kconfig | 27 guard, user thread stack, and application memory domains), if the
|
/Zephyr-Core-3.5.0/samples/userspace/shared_mem/ |
D | README.rst | 9 unique memory domains with protected partitions. The
|
/Zephyr-Core-3.5.0/doc/kernel/usermode/ |
D | memory_domain.rst | 145 Memory domains are *not* intended to control access to memory from supervisor 155 user mode has over memory domains is that any user thread's child threads 186 - The same partition may be specified in multiple memory domains. For example 187 there may be a shared memory area that multiple domains grant access to. 304 to specific memory domains. 385 threads assigned to it. Threads are assigned to memory domains with an API
|
/Zephyr-Core-3.5.0/doc/services/ipc/ipc_service/backends/ |
D | ipc_service_icmsg.rst | 29 unique (not overlapping any other region) and accessible by both domains
|
/Zephyr-Core-3.5.0/arch/x86/ |
D | Kconfig | 334 If this option is enabled, userspace memory domains will not have their 340 int "Maximum number of memory domains" 345 default memory domain. Instantiation of additional memory domains 349 Zephyr test cases assume 3 additional domains can be instantiated.
|
/Zephyr-Core-3.5.0/doc/_extensions/zephyr/ |
D | domain.py | 56 from sphinx.domains import Domain, ObjType
|
/Zephyr-Core-3.5.0/share/sysbuild/cmake/modules/ |
D | sysbuild_extensions.cmake | 486 # PRE_DOMAINS : Invoke pre-domains call for modules before creating domains yaml. 487 # POST_DOMAINS: Invoke post-domains call for modules after creation of domains yaml. 635 # all images will appear in `domains.yaml`.
|