/btstack/port/archive/wiced-h5/ |
H A D | create_examples.py | 61 wiced_version_string = (wiced_version_txt.split()[2]).split('_')[1] 62 wiced_version_major = int(wiced_version_string.split('.')[0]) 63 wiced_version_minor = int(wiced_version_string.split('.')[1]) 65 wiced_version = wiced_version_txt.split()[2] 66 wiced_version_major = int(wiced_version.split('.')[0]) 67 wiced_version_minor = int(wiced_version.split('.')[1])
|
/btstack/port/wiced-h4/ |
H A D | create_examples.py | 61 wiced_version_string = (wiced_version_txt.split()[2]).split('_')[1] 62 wiced_version_major = int(wiced_version_string.split('.')[0]) 63 wiced_version_minor = int(wiced_version_string.split('.')[1]) 65 wiced_version = wiced_version_txt.split()[2] 66 wiced_version_major = int(wiced_version.split('.')[0]) 67 wiced_version_minor = int(wiced_version.split('.')[1])
|
/btstack/test/ |
H A D | coverage_filter.py | 47 (lineHit, lineTotal) = [int(x) for x in lineCov.split("/")] 48 (functionHit, functionTotal) = [int(x) for x in functionCov.split("/")] 49 (branchHit, branchTotal) = [int(x) for x in branchCov.split("/")]
|
/btstack/test/security_manager_sc/ |
H A D | sm_test.py | 165 path = line.split(': ')[1] 169 addr = line.split(': ')[1] 173 confirm = line.split('OOB_CONFIRM: ')[1] 176 random = line.split('OOB_RANDOM: ')[1] 242 passkey = line.split(': ')[1] 263 result = line.split(': ')[1] 264 (status,reason) = result.split(',')
|
/btstack/tool/ |
H A D | create_packet_log.py | 49 parts = t.split(' ') 58 (t1, t2) = t.split('.') 85 data = bytearray(list(map(str2hex, text.strip().split())))
|
H A D | btstack_rtos_generator.py | 204 parts = parameter.split(' ') 215 parts = type_and_name.split(' ') 383 path_parts = header_file.split('/')
|
H A D | bluetooth_gatt_process_uuid_list.py | 49 data = line.strip('\n').split(" // ")
|
H A D | compile_gatt.py | 214 parts = properties.split("|") 226 parts = properties.split("|") 333 parts = text.split() 370 for item in text.split(" "): 588 size = size + len(value.split())
|
H A D | bluetooth_sdp.py | 67 return " ".join(remark.split())
|
H A D | java_binding.py | 327 parts = event_name.split('_')
|
H A D | python_generator.py | 305 parts = event_name.split('_')
|
H A D | btstack_parser.py | 40 return ''.join(map(cap, name.split('_')))
|
/btstack/tool/misc/ |
H A D | update_btstack_config_docu_link.py | 32 port_name = root.split("port/")[1].split("/")[0]
|
H A D | fix-misra-10.4a.py | 33 chunks = line.strip().split('\t') 41 parts = location.split(':')
|
H A D | fix-misra-12.1.py | 49 chunks = line.strip().split('\t') 66 parts = location.split(':')
|
H A D | update_btstack_config.py | 43 prefix = block[0].split("_")[0]
|
/btstack/chipset/csr/ |
H A D | convert_psr.py | 74 parts = line.split('=') 76 value = [int('0x'+i, 16) for i in parts[1].strip().split(' ')]
|
/btstack/doc/manual/ |
H A D | markdown_create_apis.py | 175 parts = one_line_function_definition.group(1).split(" "); 188 parts = multi_line_function_definition.group(1).split(" "); 292 filename = filename.split("../../")[1]
|
H A D | markdown_create_gatt_services_and_clients.py | 79 name_parts = [item.capitalize() for item in basename.split("_")]
|
/btstack/platform/daemon/binding/python/btstack/ |
H A D | btstack_types.py | 18 parts = addr.split(':') 49 parts = uuid.split('-')
|
/btstack/platform/daemon/binding/java/src/com/bluekitchen/btstack/ |
H A D | BD_ADDR.java | 16 String[] parts = text.split(":"); in BD_ADDR()
|
H A D | BT_UUID.java | 25 String parts[] = uuidString.split("-"); in BT_UUID()
|
/btstack/doc/manual/docs-template/appendix/ |
H A D | migration.md | 10 The header files had been split between *src/* and *include/btstack*/. Now, the *include/* folder i… 19 The *platforms* folder has been split into *platform* and "port" folders. The *port* folder contain… 67 Has been split into *src/classic/btstack_link_key_db*, *platform/daemon/btstack_device_name_db*, an… 70 Has been split into *src/btstack_chipset.h* and *src/bstack_control.h*
|
/btstack/test/hfp/ |
H A D | dump_test_sequence_from_pklg.py | 69 hfp_cmds = parts.groups()[0].split('\\r\\n')
|
/btstack/3rd-party/lwip/core/src/core/ |
H A D | tcp_out.c | 827 tcp_split_unsent_seg(struct tcp_pcb *pcb, u16_t split) in tcp_split_unsent_seg() argument 850 if (split == 0) { in tcp_split_unsent_seg() 855 if (useg->len <= split) { in tcp_split_unsent_seg() 859 LWIP_ASSERT("split <= mss", split <= pcb->mss); in tcp_split_unsent_seg() 874 remainder = useg->len - split; in tcp_split_unsent_seg() 885 offset = useg->p->tot_len - useg->len + split; in tcp_split_unsent_seg() 914 …seg = tcp_create_segment(pcb, p, remainder_flags, lwip_ntohl(useg->tcphdr->seqno) + split, optflag… in tcp_split_unsent_seg()
|