Home
last modified time | relevance | path

Searched full:get (Results 1 – 25 of 2664) sorted by relevance

12345678910>>...107

/Zephyr-latest/scripts/west_commands/zspdx/
Dcmakefileapijson.py20 # get reply object
21 reply_dict = js.get("reply", {})
25 # get codemodel object
26 cm_dict = reply_dict.get("codemodel-v2", {})
30 # and get codemodel filename
31 jsonFile = cm_dict.get("jsonFile", "")
55 kind = js.get("kind", "")
59 version = js.get("version", {})
60 versionMajor = version.get("major", -1)
68 # get paths
[all …]
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dplatform.py28 self.exec = data.get("exec")
98 # Get data for various targets and use the main board data as a
101 variants = data.get("variants", {})
104 variant_data = variants.get(alias, {})
109 self.sysbuild = variant_data.get("sysbuild", data.get("sysbuild", self.sysbuild))
110 self.twister = variant_data.get("twister", data.get("twister", self.twister))
113 self.ram = variant_data.get("ram", data.get("ram", self.ram))
115 self.flash = variant_data.get("flash", data.get("flash", self.flash))
117 testing = variant_data.get("testing", data.get("testing", {}))
118 self.timeout_multiplier = testing.get("timeout_multiplier", self.timeout_multiplier)
[all …]
Dreports.py140 env = json_data.get('environment', {})
141 version = env.get('zephyr_version', None)
144 all_suites = json_data.get("testsuites", [])
150 filter(lambda d: TwisterStatus(d.get('status')) != TwisterStatus.FILTER, all_suites)
156 name=suite.get("name"), time="0",
165 ET.SubElement(eleTSPropetries, 'property', name="platform", value=suite.get("platform"))
166 ET.SubElement(eleTSPropetries, 'property', name="architecture", value=suite.get("arch"))
170 handler_time = suite.get('execution_time', 0)
171 runnable = suite.get('runnable', 0)
173 ts_status = TwisterStatus(suite.get('status'))
[all …]
Dhardwaremap.py268 pre_script = dut.get('pre_script')
269 script_param = dut.get('script_param')
270 post_script = dut.get('post_script')
271 post_flash_script = dut.get('post_flash_script')
272 flash_timeout = dut.get('flash_timeout') or self.options.device_flash_timeout
273 flash_with_test = dut.get('flash_with_test')
276 serial_pty = dut.get('serial_pty')
277 flash_before = dut.get('flash_before')
280 platform = dut.get('platform')
287 id = dut.get('id')
[all …]
Dconfig_parser.py145 """Get a dictionary representing the keys/values within a scenario
206 extracted_common.get("CONF_FILE", []) + \
207 self.common.get("extra_conf_files", []) + \
208 extracted_testsuite.get("CONF_FILE", []) + \
209 self.scenarios[name].get("extra_conf_files", [])
213 extracted_common.get("OVERLAY_CONFIG", []) + \
214 self.common.get("extra_overlay_confs", []) + \
215 extracted_testsuite.get("OVERLAY_CONFIG", []) + \
216 self.scenarios[name].get("extra_overlay_confs", [])
219 extracted_common.get("DTC_OVERLAY_FILE", []) + \
[all …]
/Zephyr-latest/doc/connectivity/networking/api/
Dptp.rst67 0x0000, NULL_PTP_MANAGEMENT, GET SET COMMAND
68 0x0001, CLOCK_DESCRIPTION, GET
69 0x0002, USER_DESCRIPTION, GET
75 0x2000, DEFAULT_DATA_SET, GET
76 0x2001, CURRENT_DATA_SET, GET
77 0x2002, PARENT_DATA_SET, GET
78 0x2003, TIME_PROPERTIES_DATA_SET, GET
79 0x2004, PORT_DATA_SET, GET
80 0x2005, PRIORITY1, GET SET
81 0x2006, PRIORITY2, GET SET
[all …]
/Zephyr-latest/samples/sensor/sensor_shell/
DREADME.rst9 This is a simple shell module to get data from sensors presented in the system.
37 get :Get sensor data. Channel names are optional. All channels are read when
40 info :Get sensor info, such as vendor and model name, for all sensors.
43 **get**: prints all the sensor channels data for a given sensor device name.
51 uart:~$ sensor get mma8652fc@1d
57 uart:~$ sensor get mma8652fc@1d accel_z
60 uart:~$ sensor get mma8652fc@1d 2
64 A valid sensor device name should be passed otherwise you will get an
/Zephyr-latest/include/zephyr/drivers/i3c/
Dccc.h188 /** Get Max Write Length (Direct) */
191 /** Get Max Read Length (Direct) */
194 /** Get Provisioned ID (Direct) */
197 /** Get Bus Characteristics Register (Direct) */
200 /** Get Device Characteristics Register (Direct) */
203 /** Get Device Status (Direct) */
206 /** Get Accept Controller Role (Direct) */
212 /** Get Max Data Speed (Direct) */
215 /** Get Optional Feature Capabilities (Direct) */
224 /** Get Exchange Timing Information (Direct) */
[all …]
/Zephyr-latest/tests/lib/acpi/integration/src/
Dmain.c27 zassert_not_null(mcfg, "Failed to get MCFG table"); in ZTEST()
40 zassert_not_null(dev, "Failed to get acpi device with given HID"); in ZTEST()
44 zassert_ok(ret, "Failed to get current resource setting"); in ZTEST()
60 zassert_not_null(dev, "Failed to get acpi device with given HID"); in ZTEST()
66 zassert_ok(ret, "Failed to get MMIO resources"); in ZTEST()
72 zassert_ok(ret, "Failed to get IRQ resources"); in ZTEST()
/Zephyr-latest/tests/benchmarks/latency_measure/
DREADME.rst71 …fifo.get.immediate.kernel - Get data from FIFO (no ctx switch) : …
73 …fifo.get.free.immediate.kernel - Free when getting data from FIFO (no ctx switch) : …
74 …fifo.get.blocking.k_to_k - Get data from FIFO (w/ ctx switch) : …
76 …fifo.get.free.blocking.k_to_k - Free when getting data from FIFO (w/ ctx siwtch) : …
79 …lifo.get.immediate.kernel - Get data from LIFO (no ctx switch) : …
81 …lifo.get.free.immediate.kernel - Free when getting data from LIFO (no ctx switch) : …
82 …lifo.get.blocking.k_to_k - Get data from LIFO (w/ ctx switch) : …
84 …lifo.get.free.blocking.k_to_k - Free when getting data from LIFO (w/ ctx switch) : …
101 …stack.pop.immediate.kernel - Get data from k_stack (no ctx switch) : …
102 …stack.pop.blocking.k_to_k - Get data from k_stack (w/ ctx switch) : …
[all …]
/Zephyr-latest/tests/benchmarks/footprints/src/
Dpm_device.c40 /* Get the PM state from a device with PM support */ in run_pm_device()
43 printk("\n PM device get state failed\n"); in run_pm_device()
48 printk("\n PM device runtime get failed\n"); in run_pm_device()
57 /* Get the PM state from a device without PM support */ in run_pm_device()
60 printk("\n PM device get state did not fail\n"); in run_pm_device()
/Zephyr-latest/tests/drivers/uart/uart_basic_api/src/
Dtest_uart_config.c15 * - Configure Get: test_uart_config_get( )
21 * -# When test UART CONFIG Configure Get, the app will get/retrieve the
57 /* test UART configure get (retrieve configuration) */
80 /* Verify config_get() - get device configuration, put in cfg */ in test_config_get()
82 /* so get the configurations from the device and check */ in test_config_get()
84 zassert_true(ret == 0, "get config error"); in test_config_get()
Dtest_uart_config_wide.c15 * - Configure Get: test_uart_config_get_wide( )
21 * -# When test UART CONFIG Configure Get, the app will get/retrieve the
57 /* test UART configure get (retrieve configuration) */
80 /* Verify config_get() - get device configuration, put in cfg */ in test_config_get_wide()
82 /* so get the configurations from the device and check */ in test_config_get_wide()
84 zassert_true(ret == 0, "get config error"); in test_config_get_wide()
/Zephyr-latest/include/zephyr/devicetree/
Dordinals.h21 * @brief Get a node's dependency ordinal
28 * @brief Get a node's dependency ordinal in string sortable form
35 * @brief Get a list of dependency ordinals of a node's direct dependencies
54 * @brief Get a list of dependency ordinals of what depends directly on a node
71 * @brief Get a DT_DRV_COMPAT instance's dependency ordinal
81 * @brief Get a list of dependency ordinals of a DT_DRV_COMPAT instance's
93 * @brief Get a list of dependency ordinals of what depends directly on a
/Zephyr-latest/scripts/
Dlist_hardware.py50 for f in data.get('family', []):
52 for s in f.get('series', []):
55 [c['name'] for c in soc.get('cpuclusters', [])],
57 for soc in s.get('socs', [])]
64 [c['name'] for c in soc.get('cpuclusters', [])],
66 for soc in f.get('socs', [])]
70 for s in data.get('series', []):
73 [c['name'] for c in soc.get('cpuclusters', [])],
75 for soc in s.get('socs', [])]
80 for soc in data.get('socs', []):
[all …]
Dlist_boards.py47 for r in revision.get('revisions', []):
60 for v in variant.get('variants', []):
109 # Get the main board directory.
243 board_array = b.get('boards', [b.get('board', None)])
262 board_revision = board.get('revision')
263 if board_revision is not None and board_revision.get('format') != 'custom':
264 if board_revision.get('default') is None:
267 if board_revision.get('revisions') is None:
275 socs = [Soc.from_soc(systems.get_soc(s['name']), s.get('variants', []))
276 for s in board.get('socs', {})]
[all …]
/Zephyr-latest/include/zephyr/drivers/
Dsyscon.h32 * API template to get the base address of the syscon region.
53 * API template to get the size of the syscon register.
70 * @brief Get the syscon base address
72 * @param dev The device to get the register size for.
95 * @param dev The device to get the register size for.
120 * @param dev The device to get the register size for.
140 * Get the size of the syscon register in bytes.
142 * @param dev The device to get the register size for.
/Zephyr-latest/samples/bluetooth/hap_ha/src/
Dvcp_vol_renderer.c24 printk("VCS state get failed (%d)\n", err); in vcs_state_cb()
33 printk("VCS flags get failed (%d)\n", err); in vcs_flags_cb()
42 printk("AICS state get failed (%d) for inst %p\n", err, inst); in aics_state_cb()
53 printk("AICS gain settings get failed (%d) for inst %p\n", err, inst); in aics_gain_setting_cb()
63 printk("AICS input type get failed (%d) for inst %p\n", err, inst); in aics_input_type_cb()
72 printk("AICS status get failed (%d) for inst %p\n", err, inst); in aics_status_cb()
81 printk("AICS description get failed (%d) for inst %p\n", err, inst); in aics_description_cb()
89 printk("VOCS state get failed (%d) for inst %p\n", err, inst); in vocs_state_cb()
98 printk("VOCS location get failed (%d) for inst %p\n", err, inst); in vocs_location_cb()
107 printk("VOCS description get failed (%d) for inst %p\n", err, inst); in vocs_description_cb()
/Zephyr-latest/tests/kernel/fifo/fifo_api/src/
Dtest_fifo_loop.c31 /*get fifo data from "fifo_put"*/ in tfifo_get()
33 /**TESTPOINT: fifo get*/ in tfifo_get()
42 TC_PRINT("isr fifo get\n"); in tIsr_entry()
50 TC_PRINT("thread fifo get\n"); in tThread_entry()
73 TC_PRINT("main fifo get\n"); in tfifo_read_write()
92 * -# fifo get from spawn thread
/Zephyr-latest/tests/kernel/lifo/lifo_api/src/
Dtest_lifo_loop.c31 /*get lifo data*/ in tlifo_get()
33 /**TESTPOINT: lifo get*/ in tlifo_get()
42 TC_PRINT("isr lifo get\n"); in tIsr_entry()
50 TC_PRINT("thread lifo get\n"); in tThread_entry()
73 TC_PRINT("main lifo get\n"); in tlifo_read_write()
92 * -# lifo get from spawn thread
/Zephyr-latest/tests/kernel/timer/timer_behavior/pytest/
Dsaleae_logic2.py76 device_id = options.get('device-id')
77 address = str(options.get('address'))
78 port = int(options.get('port'))
79 channel = int(options.get('channel'))
80 sample_rate = int(options.get('sample-rate'))
81 threshold_volts = float(options.get('threshold-volts'))
/Zephyr-latest/lib/posix/options/
Dsched.c13 * @brief Get minimum priority value for a given policy
23 * @brief Get maximum priority value for a given policy
33 * @brief Get scheduling parameters
48 * @brief Get scheduling policy
/Zephyr-latest/samples/net/sockets/dumb_http_server_mt/
Ddocker-test.sh13 start_docker "/usr/local/bin/http-get-file-test.sh 5" || return $?
17 # curl timeout is return code 28. If we get that, zephyr will never
44 start_docker "/usr/local/bin/https-get-file-test.sh 5" || return $?
48 # curl timeout is return code 28. If we get that, zephyr will never
/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/bridge/
Dbrg_table_state_change.sh13 # 4. While bridging table is empty, Tester sends a GET message to each node encrypted with primary
17 # 6. Tester sends a DATA and GET messages to device 1 encrypted with primary key and verifies that
21 # 10. Tester sends a GET message to device 1 encrypted with primary key and verifies that a STATUS
25 # 12. Tester sends a GET message to device 1 encrypted with primary key and verifies that a STATUS
/Zephyr-latest/soc/nordic/
Dsysbuild.cmake8 list(GET launcher_quals 1 launcher_soc)
9 list(GET launcher_quals 2 launcher_vpr)
14 list(GET launcher_quals 3 launcher_variant)

12345678910>>...107