Searched refs:split (Results 1 – 25 of 280) sorted by relevance
12345678910>>...12
| /Zephyr-4.3.0/snippets/bt-ll-sw-split/ |
| D | README.rst | 1 .. _snippet-bt-ll-sw-split: 3 Zephyr Bluetooth LE Controller (bt-ll-sw-split) 11 west build -S bt-ll-sw-split [...]
|
| /Zephyr-4.3.0/tests/bluetooth/classic/sdp_c/pytest/ |
| D | test_sdp.py | 369 target_address = address.split(" ")[0] 404 target_address = address.split(" ")[0] 422 if "PROTOCOL:" in line and "L2CAP" in line.split(':')[1]: 423 assert int(line.split(':')[2]) == AVDTP_PSM 435 assert int(line.split(':')[1], base=16) == int(version, base=16) 436 assert int(line.split(':')[2]) == AVDTP_VERSION 463 target_address = address.split(" ")[0] 481 if "PROTOCOL:" in line and "RFCOMM" in line.split(':')[1]: 482 assert int(line.split(':')[2]) == RFCOMM_CHANNEL 490 if "VERSION:" in line and int(line.split(':')[1], base=16) == int( [all …]
|
| /Zephyr-4.3.0/scripts/west_commands/zspdx/ |
| D | cmakecache.py | 27 pline1 = sline.split(":", maxsplit=1) 30 pline2 = pline1[1].split("=", maxsplit=1)
|
| /Zephyr-4.3.0/scripts/build/ |
| D | gen_syscalls.py | 225 def union_decl(ctype, split): argument 226 middle = "struct { uintptr_t lo, hi; } split" if split else "uintptr_t x" 254 split = need_split(argtype) 255 decl = union_decl(argtype, split) 263 if split: 359 split = need_split(argtype) 360 vrfy_parms.append((argtype, split)) 361 nmrsh += 2 if split else 1 387 for i, (argtype, split) in enumerate(vrfy_parms): 388 decl = union_decl(argtype, split) [all …]
|
| D | gen_relocate_app.py | 416 memory_type = memory_type.split("|", 1)[0] 568 obj_filename = filename.split("/")[-1] + ".obj" 571 if obj_file.name == obj_filename and filename.split("/")[-2] in obj_file.parent.name: 582 mem_region, rest = line.split(':', 1) 587 phdr, rest = rest.split(':', 1) 589 flag_list, rest = rest.split(':', 1) 590 flag_list = flag_list.split(';') 593 file_list, symbol_filter = rest.split(',', 1) 594 file_list = file_list.split(';') 698 mem_type = mem_type.split("|", 1)[0]
|
| /Zephyr-4.3.0/tests/bluetooth/classic/l2cap_s/pytest/ |
| D | test_l2cap_server.py | 57 target_address = address.split(" ")[0] 106 target_address = address.split(" ")[0] 152 target_address = address.split(" ")[0] 200 target_address = address.split(" ")[0] 247 peer_address = device.public_address.to_string().split('/P')[0] 252 if conn.self_address.to_string().split('/P')[0] == peer_address.split(" ")[0]: 300 peer_address = device.public_address.to_string().split('/P')[0] 305 if conn.self_address.to_string().split('/P')[0] == peer_address.split(" ")[0]: 351 peer_address = device.public_address.to_string().split('/P')[0] 356 if conn.self_address.to_string().split('/P')[0] == peer_address.split(" ")[0]: [all …]
|
| /Zephyr-4.3.0/scripts/footprint/ |
| D | pack_as_twister.py | 138 (in_path, data_id['board']) = os.path.split(in_path) 141 (in_path, data_id['board']) = os.path.split(in_path) 144 (in_path, data_id['feature']) = os.path.split(in_path) 145 (c_head, data_id['app']) = os.path.split(in_path) 146 (c_head, data_id['version']) = os.path.split(c_head) 187 test_name_parts = args.test_name.split(test_name_sep) 220 suite_type = plan[r_plan]['application'].split('/')
|
| /Zephyr-4.3.0/scripts/pylib/pytest-twister-harness/tests/helpers/ |
| D | utils_test.py | 15 """).split('\n') 23 """).split('\n')
|
| /Zephyr-4.3.0/doc/develop/west/ |
| D | alias.rst | 12 `shlex.split()`_ internally to split the value). This enables adding argument 14 argument separators; use proper escaping if arguments shouldn't be split. 16 .. _shlex.split(): https://docs.python.org/3/library/shlex.html#shlex.split
|
| /Zephyr-4.3.0/scripts/pylib/pytest-twister-harness/tests/resources/ |
| D | zen_of_python.py | 29 """.split('\n')
|
| /Zephyr-4.3.0/scripts/ |
| D | gen_gcov_files.py | 34 file_name = line.split("<")[0][1:] 36 hex_dump = line.split("<")[1][:-1]
|
| /Zephyr-4.3.0/arch/x86/ |
| D | gen_static_shstk_array.py | 192 isr_depth = int(line.split("=")[1].strip()) 194 stack_size = int(line.split("=")[1].strip()) 196 alignment = int(line.split("=")[1].strip()) 198 hw_stack_percentage = int(line.split("=")[1].strip()) 200 hw_stack_min_size = int(line.split("=")[1].strip())
|
| /Zephyr-4.3.0/tests/bluetooth/classic/l2cap_c/pytest/ |
| D | test_l2cap_client.py | 56 target_address = address.split(" ")[0] 108 target_address = address.split(" ")[0] 147 target_address = address.split(" ")[0] 191 target_address = address.split(" ")[0] 235 target_address = address.split(" ")[0] 288 target_address = address.split(" ")[0] 330 target_address = address.split(" ")[0] 379 target_address = address.split(" ")[0] 423 target_address = address.split(" ")[0] 485 target_address = address.split(" ")[0] [all …]
|
| /Zephyr-4.3.0/scripts/west_commands/runners/ |
| D | blackmagicprobe.py | 159 split = self.hex_file.split('.') 161 if len(split) >= 3 and split[-2] == 'signed':
|
| /Zephyr-4.3.0/cmake/sca/polyspace/ |
| D | polyspace-print-console.py | 20 parts = oneline.split(csv_sep) 24 columns = oneline.split(csv_sep)
|
| /Zephyr-4.3.0/tests/bluetooth/classic/smp_key_persist/pytest/ |
| D | test_smp.py | 243 bumble_address = device.public_address.to_string().split('/P')[0] 244 iut_address = address.split(" ")[0] 286 bumble_address = device.public_address.to_string().split('/P')[0] 287 iut_address = address.split(" ")[0] 331 bumble_address = device.public_address.to_string().split('/P')[0] 332 iut_address = address.split(" ")[0] 373 bumble_address = device.public_address.to_string().split('/P')[0] 374 iut_address = address.split(" ")[0]
|
| /Zephyr-4.3.0/doc/_extensions/zephyr/domain/static/js/ |
| D | board-catalog.js | 24 value.split(",").forEach(soc => 41 const features = hashParams.get("features").split(","); 62 const compatibles = hashParams.get("compatibles").split("|"); 157 (board.getAttribute('data-supported-features') || '').split(' ').forEach(tag => { 233 (board.getAttribute('data-compatibles') || '').split(' ').forEach(compat => { 429 const boardArchs = (board.getAttribute("data-arch") || "").split(" ").filter(Boolean); 431 const boardSocs = (board.getAttribute("data-socs") || "").split(" ").filter(Boolean); 432 …const boardSupportedFeatures = (board.getAttribute("data-supported-features") || "").split(" ").fi… 433 …const boardCompatibles = (board.getAttribute("data-compatibles") || "").split(" ").filter(Boolean);
|
| /Zephyr-4.3.0/samples/sensor/sensor_shell/pytest/ |
| D | test_sensor_shell.py | 26 channel_count = int(lines[-2].split("=")[1].split("(")[0]) + 1
|
| /Zephyr-4.3.0/scripts/tests/twister_blackbox/ |
| D | test_printouts.py | 295 printed_tags = [tag.strip() for tag in out.split('- ')[1:]] 320 for tag in exclude_tags.split(): 331 printed_tests = [test.strip() for test in out.split('- ')[1:]] 333 printed_tests[-1] = printed_tests[-1].split('\n')[0] 356 for tag in exclude_tags.split(): 394 output = err.split('\n')
|
| /Zephyr-4.3.0/tests/kernel/timer/timer_behavior/pytest/ |
| D | saleae_logic2.py | 73 options = [i for p in options.split(',') for i in p.split('=')]
|
| D | conftest.py | 35 k, v = line.split('=', maxsplit=1)
|
| /Zephyr-4.3.0/samples/modules/tflite-micro/magic_wand/train/ |
| D | README.md | 55 - Random data split, which mixes different people's data together and randomly 57 - Person data split, which splits the data by person 59 #### Random data split 61 Using a random split results in higher training accuracy than a person split, 72 #### Person data split 74 Using a person data split results in lower training accuracy but better
|
| /Zephyr-4.3.0/tests/bluetooth/classic/smp_bonding/pytest/ |
| D | test_smp.py | 140 bumble_address = device.public_address.to_string().split('/P')[0] 206 bumble_address = device.public_address.to_string().split('/P')[0] 272 bumble_address = device.public_address.to_string().split('/P')[0] 274 iut_address = address.split(" ")[0] 344 bumble_address = device.public_address.to_string().split('/P')[0] 346 iut_address = address.split(" ")[0] 405 bumble_address = device.public_address.to_string().split('/P')[0] 407 iut_address = address.split(" ")[0]
|
| /Zephyr-4.3.0/boards/arduino/portenta_h7/ |
| D | arduino_portenta_h7_stm32h747xx_m4.dts | 16 /* HW resources are split between CM7 and CM4 */
|
| /Zephyr-4.3.0/scripts/west_commands/ |
| D | completion.py | 86 *COMPLETION_REL_PATH.split('/'))
|
12345678910>>...12