Home
last modified time | relevance | path

Searched full:self (Results 1 – 25 of 261) sorted by relevance

1234567891011

/Zephyr-Core-3.5.0/scripts/west_commands/zspdx/
Dcmakefileapi.py9 def __init__(self): argument
10 super(Codemodel, self).__init__()
12 self.paths_source = ""
13 self.paths_build = ""
14 self.configurations = []
16 def __repr__(self): argument
17 return f"Codemodel: source {self.paths_source}, build {self.paths_build}"
22 def __init__(self): argument
23 super(Config, self).__init__()
25 self.name = ""
[all …]
/Zephyr-Core-3.5.0/scripts/pylib/pytest-twister-harness/src/twister_harness/device/
Dfifo_handler.py23 def __init__(self, fifo_path: str | Path, timeout: float): argument
28 self._fifo_out_path = str(fifo_path) + '.out'
29 self._fifo_in_path = str(fifo_path) + '.in'
30 self._fifo_out_file: io.FileIO | None = None
31 self._fifo_in_file: io.FileIO | None = None
32 self._open_fifo_thread: threading.Thread | None = None
33 self._opening_monitor_thread: threading.Thread | None = None
34 self._fifo_opened: threading.Event = threading.Event()
35 self._stop_waiting_for_opening: threading.Event = threading.Event()
36 self._timeout = timeout
[all …]
Dhardware_adapter.py30 def __init__(self, device_config: DeviceConfig) -> None: argument
32 self._flashing_timeout: float = self.base_timeout
33 self._serial_connection: serial.Serial | None = None
34 self._serial_pty_proc: subprocess.Popen | None = None
35 self._serial_buffer: bytearray = bytearray()
37 self.device_log_path: Path = device_config.build_dir / 'device.log'
38 self._log_files.append(self.device_log_path)
40 def generate_command(self) -> None: argument
43 self.west,
46 '--build-dir', str(self.device_config.build_dir),
[all …]
Dbinary_adapter.py20 def __init__(self, device_config: DeviceConfig) -> None: argument
25 self._process: subprocess.Popen | None = None
26 self.process_kwargs: dict = {
30 'env': self.env,
34 def generate_command(self) -> None: argument
37 def _flash_and_run(self) -> None: argument
38 self._run_subprocess()
40 def _run_subprocess(self) -> None: argument
41 if not self.command:
45 log_command(logger, 'Running command', self.command, level=logging.DEBUG)
[all …]
Ddevice_adapter.py30 def __init__(self, device_config: DeviceConfig) -> None: argument
34 self.device_config: DeviceConfig = device_config
35 self.base_timeout: float = device_config.base_timeout
36 self._device_read_queue: queue.Queue = queue.Queue()
37 self._reader_thread: threading.Thread | None = None
38 self._device_run: threading.Event = threading.Event()
39 self._device_connected: threading.Event = threading.Event()
40 self.command: list[str] = []
41 self._west: str | None = None
43 self.handler_log_path: Path = device_config.build_dir / 'handler.log'
[all …]
Dqemu_adapter.py19 def __init__(self, device_config: DeviceConfig) -> None: argument
21 qemu_fifo_file_path = self.device_config.build_dir / 'qemu-fifo'
22 self._fifo_connection: FifoHandler = FifoHandler(qemu_fifo_file_path, self.base_timeout)
24 def generate_command(self) -> None: argument
26 self.command = [self.west, 'build', '-d', str(self.device_config.build_dir), '-t', 'run']
27 if 'stdin' in self.process_kwargs:
28 self.process_kwargs.pop('stdin')
30 def _flash_and_run(self) -> None: argument
32 self._create_fifo_connection()
34 def _create_fifo_connection(self) -> None: argument
[all …]
/Zephyr-Core-3.5.0/scripts/pylib/twister/twisterlib/
Dharness.py44 def __init__(self): argument
45 self.state = None
46 self.type = None
47 self.regex = []
48 self.matches = OrderedDict()
49 self.ordered = True
50 self.repeat = 1
51 self.id = None
52 self.fail_on_fault = True
53 self.fault = False
[all …]
Dplatform.py20 def __init__(self): argument
25 self.name = ""
26 self.twister = True
28 self.ram = 128
30 self.timeout_multiplier = 1.0
31 self.ignore_tags = []
32 self.only_tags = []
33 self.default = False
35 self.flash = 512
36 self.supported = set()
[all …]
Drunner.py52 def __init__(self, total=0): argument
64 self._done = Value('i', 0)
67 self._iteration = Value('i', 0)
71 self._passed = Value('i', 0)
75 self._skipped_configs = Value('i', 0)
79 self._skipped_runtime = Value('i', 0)
83 self._skipped_filter = Value('i', 0)
86 self._skipped_cases = Value('i', 0)
89 self._error = Value('i', 0)
90 self._failed = Value('i', 0)
[all …]
Dtestinstance.py42 def __init__(self, testsuite, platform, outdir): argument
44 self.testsuite: TestSuite = testsuite
45 self.platform: Platform = platform
47 self.status = None
48 self.reason = "Unknown"
49 self.metrics = dict()
50 self.handler = None
51 self.outdir = outdir
52 self.execution_time = 0
53 self.retries = 0
[all …]
Dhardwaremap.py38 def __init__(self, argument
54 self.serial = serial
55 self.baud = serial_baud or 115200
56 self.platform = platform
57 self.serial_pty = serial_pty
58 self._counter = Value("i", 0)
59 self._available = Value("i", 1)
60 self.connected = connected
61 self.pre_script = pre_script
62 self.id = id
[all …]
/Zephyr-Core-3.5.0/scripts/west_commands/runners/
Dlinkserver.py25 def __init__(self, cfg, device, core, argument
35 self.file = cfg.file
36 self.file_type = cfg.file_type
37 self.hex_name = cfg.hex_file
38 self.bin_name = cfg.bin_file
39 self.elf_name = cfg.elf_file
40 self.gdb_cmd = cfg.gdb if cfg.gdb else None
41 self.device = device
42 self.core = core
43 self.linkserver = linkserver
[all …]
Dpyocd.py19 def __init__(self, cfg, target, argument
30 self.pyocd_config = default
32 self.pyocd_config = None
35 self.target_args = ['-t', target]
36 self.pyocd = pyocd
37 self.flash_addr_args = ['-a', hex(flash_addr)] if flash_addr else []
38 self.erase = erase
39 self.gdb_cmd = [cfg.gdb] if cfg.gdb is not None else None
40 self.gdb_port = gdb_port
41 self.telnet_port = telnet_port
[all …]
Dopenocd.py29 def __init__(self, cfg, pre_init=None, reset_halt_cmd=DEFAULT_OPENOCD_RESET_HALT_CMD, argument
47 self.openocd_config = config
54 if self.openocd_config is not None:
55 for i in self.openocd_config:
63 self.openocd_cmd = [cfg.openocd or 'openocd'] + search_args
66 self.elf_name = Path(cfg.elf_file).as_posix()
67 self.pre_init = pre_init or []
68 self.reset_halt_cmd = reset_halt_cmd
69 self.pre_load = pre_load or []
70 self.load_cmd = load_cmd
[all …]
Dezflashcli.py13 def __init__(self, cfg, tool, sn, erase=False, reset=True): argument
15 self.bin_ = cfg.bin_file
17 self.tool = tool
18 self.sn_arg = ['-j', f'{sn}'] if sn is not None else []
19 self.erase = bool(erase)
20 self.reset = bool(reset)
45 def needs_product_header(self): argument
50 is_mcuboot = self.build_conf.getboolean('CONFIG_MCUBOOT')
51 uses_code_partition = self.build_conf.getboolean('CONFIG_USE_DT_CODE_PARTITION')
55 def program_bin(self): argument
[all …]
Dcanopen_program.py52 def __call__(self, parser, namespace, values, option_string=None): argument
53 setattr(namespace, self.dest, not option_string.startswith('--no-'))
57 def __init__(self, cfg, dev_id, can_context=DEFAULT_CAN_CONTEXT, argument
68 self.dev_id = dev_id # Only use for error checking in do_run()
69 self.bin_file = cfg.bin_file
70 self.confirm = confirm
71 self.confirm_only = confirm_only
72 self.timeout = timeout
73 self.downloader = CANopenProgramDownloader(logger=self.logger,
133 def do_run(self, command, **kwargs): argument
[all …]
Djlink.py30 def __call__(self, parser, args, ignored, option): argument
31 setattr(args, self.dest, not option.startswith('--no-'))
36 def __init__(self, cfg, device, dev_id=None, argument
46 self.file = cfg.file
47 self.file_type = cfg.file_type
48 self.hex_name = cfg.hex_file
49 self.bin_name = cfg.bin_file
50 self.elf_name = cfg.elf_file
51 self.gdb_cmd = [cfg.gdb] if cfg.gdb else None
52 self.device = device
[all …]
Dintel_adsp.py26 def __init__(self, argument
39 self.remote_host = remote_host
40 self.rimage_tool = rimage_tool
41 self.config_dir = config_dir
42 self.bin_fw = os.path.join(cfg.build_dir, 'zephyr', 'zephyr.ri')
44 self.cavstool = os.path.join(ZEPHYR_BASE, DEFAULT_CAVSTOOL)
45 self.platform = os.path.basename(cfg.board_dir)
46 self.pty = pty
49 self.key = key
51 self.key = os.path.join(DEFAULT_KEY_DIR, default_key)
[all …]
Dnrf_common.py30 def __init__(self, cfg, family, softreset, dev_id, erase=False, argument
33 self.hex_ = cfg.hex_file
36 self.family = family
37 self.softreset = softreset
38 self.dev_id = dev_id
39 self.erase = bool(erase)
40 self.reset = bool(reset)
41 self.force = force
42 self.recover = bool(recover)
44 self.tool_opt = []
[all …]
/Zephyr-Core-3.5.0/scripts/pylib/pytest-twister-harness/tests/resources/
Dfifo_mock.py16 def __init__(self, filename, mode): argument
17 self.filename = filename
18 self.mode = mode
19 self.thread = None
20 self.file = None
21 self.logger = logging.getLogger(__name__)
23 def _open(self): argument
24 self.logger.info(f'Creating fifo file: {self.filename}')
26 while not os.path.exists(self.filename):
29 self.logger.error(f'Did not able create fifo file: {self.filename}')
[all …]
/Zephyr-Core-3.5.0/scripts/west_commands/
Dbindesc.py69 def __init__(self): argument
70 self.TAG_TO_NAME = {
73 self.bindesc_gen_tag(self.TYPE_STR, 0x800): 'APP_VERSION_STRING',
74 self.bindesc_gen_tag(self.TYPE_UINT, 0x801): 'APP_VERSION_MAJOR',
75 self.bindesc_gen_tag(self.TYPE_UINT, 0x802): 'APP_VERSION_MINOR',
76 self.bindesc_gen_tag(self.TYPE_UINT, 0x803): 'APP_VERSION_PATCHLEVEL',
77 self.bindesc_gen_tag(self.TYPE_UINT, 0x804): 'APP_VERSION_NUMBER',
78 self.bindesc_gen_tag(self.TYPE_STR, 0x900): 'KERNEL_VERSION_STRING',
79 self.bindesc_gen_tag(self.TYPE_UINT, 0x901): 'KERNEL_VERSION_MAJOR',
80 self.bindesc_gen_tag(self.TYPE_UINT, 0x902): 'KERNEL_VERSION_MINOR',
[all …]
/Zephyr-Core-3.5.0/scripts/dts/python-devicetree/src/devicetree/
Dgrutils.py21 def __init__(self, root=None): argument
22 self.__roots = None
24 self.__roots = {root}
25 self.__edge_map = collections.defaultdict(set)
26 self.__reverse_map = collections.defaultdict(set)
27 self.__nodes = set()
29 def add_node(self, node): argument
33 self.__nodes.add(node)
35 def add_edge(self, source, target): argument
41 self.__edge_map[source].add(target)
[all …]
/Zephyr-Core-3.5.0/scripts/build/
Delf_parser.py22 def __init__(self, elf, sym): argument
23 self.elf = elf
24 self.sym = sym
25 self.data = self.elf.symbol_data(sym)
27 def _data_native_read(self, offset): argument
28 (format, size) = self.elf.native_struct_format
29 return struct.unpack(format, self.data[offset:offset + size])[0]
40 def __init__(self, elf, sym): argument
42 self.flags = self._data_native_read(self.elf.ld_consts['_PM_DEVICE_STRUCT_FLAGS_OFFSET'])
45 def is_power_domain(self): argument
[all …]
/Zephyr-Core-3.5.0/samples/modules/tflite-micro/magic_wand/train/
Ddata_load_test.py32 def setUp(self): # pylint: disable=g-missing-super-call argument
33 self.loader = DataLoader(
36 def test_get_data(self): argument
37 self.assertIsInstance(self.loader.train_data, list)
38 self.assertIsInstance(self.loader.train_label, list)
39 self.assertIsInstance(self.loader.valid_data, list)
40 self.assertIsInstance(self.loader.valid_label, list)
41 self.assertIsInstance(self.loader.test_data, list)
42 self.assertIsInstance(self.loader.test_label, list)
43 self.assertEqual(self.loader.train_len, len(self.loader.train_data))
[all …]
/Zephyr-Core-3.5.0/samples/net/cellular_modem/server/
Dte_udp_receive.py11 def __init__(self, address, timeout = 1): argument
12 self.address = address
13 self.last_packet_received_at = time.monotonic()
14 self.timeout = timeout
15 self.packets_received = 0
16 self.packets_dropped = 0
18 def get_address(self): argument
19 return self.address
21 def on_packet_received(self, data): argument
22 if self._validate_packet_(data):
[all …]

1234567891011