| /xnu-11417.101.15/tools/lldbmacros/tests/integration_smoke/ |
| H A D | test_lldb_macros.py | 30 return session.exec(f"showtask -F {name}").split('\n')[2].split()[0] 37 return session.exec("showalltasks").split('\n')[2].split()[0] 41 return session.exec(f"showpid {pid}").split('\n')[1].split()[5] 45 return session.exec(f"showtaskthreads -F {task_name}").split('\n')[3].strip().split()[0] 53 return session.exec("showallvm").split('\n')[row].strip().split()[col] 61 return session.exec("showallvnodes").stdout.readlines(4)[1].strip().split()[0] 65 return session.exec('showallipc').split('\n')[1].strip().split()[index] 73 return session.exec('mbuf_showactive').split('\n')[3].strip().split()[0] 77 proc_id = session.exec(f'showtask -F {task_name}').split('\n')[1].split()[6] 78 return session.exec(f'showprocchannels {proc_id}').split('\n')[1].split()[0] [all …]
|
| /xnu-11417.101.15/tools/lldbmacros/ |
| H A D | xnutriage.py | 23 cmd_out1 = cmd_out.split('\n') 25 cmd_out2 = cmd_out1[1].split('`') 27 cmd_out3 = cmd_out2[1].split(' at') 64 cmd_out1 = list(filter(None, cmd_out.split('\n'))) 69 print(address + ": " + cmd_out1[-1].split(':', 1)[1])
|
| H A D | zonetriage.py | 39 panic_string = lldb_run_command("paniclog").split('\n', 1)[0] 56 panic_string = lldb_run_command("paniclog").split('\n', 1)[0] 98 panic_string = lldb_run_command("paniclog").split('\n', 1)[0]
|
| H A D | xnu.py | 56 header = "|" + "|".join(fmt.split(" ")).format(*args) + "|" 58 colhead = map(lambda fmt, col: "-"*len(fmt.format(col)), fmt.split(" "), args) 298 command_args = shlex.split(command) 669 … print(" {0: <20s} - {1}".format(cmd , lldb_command_documentation[cmd][1].split("\n")[0].strip())) 1189 data_id_bytes = ext_paniclog_bytes[idx:idx + EXT_PANICLOG_MAX_SIZE].split(b'\0')[0] 1342 cpuList = cpusOpt.split(",") 1347 parts = cpu_num_string.split('-') 1474 str(x[IDX_RINGENTRY].iotype).split("=")[1].strip(), 1554 allowed_prefixes = _ShowSysctl_prefix.split('.')
|
| H A D | utils.py | 180 platdir = subprocess.check_output('xcodebuild -version -sdk iphoneos PlatformPath'.split()) 343 enum_name, member_name = enum_name_or_combined.strip().split("::") 523 command = shlex.split(command)
|
| H A D | userspace.py | 475 str_data = str_data.split(b"\x00", 1)[0] 540 path_base_name = path_out_string.split("/")[-1] 550 path_base_name = path_out_string.split("/")[-1]
|
| H A D | log.py | 74 return (ns_id, ns_name.split('_')[-1]) 87 parts = flag_name.split('_')
|
| H A D | scheduler.py | 131 target= target.split() 137 owner= owner.split()
|
| H A D | memory.py | 181 if result.split(":")[1].strip().find('None') == -1 : 595 if len(result.split("\n")) > 2: 639 typename = typename.split("site.")[1] 677 typename = typename.split("site.")[1] 2372 …if len(result.split("\n")) > 2 and result.find('VREG') != -1 and len(result.splitlines()[2].split(… 3859 libname = filepath.split('/')[-1]
|
| /xnu-11417.101.15/tests/ |
| H A D | in_cksum_test.c | 94 for (uint16_t split = 0; split < len; split += 2) { in test_checksum() local 95 seglens[0] = split; in test_checksum() 96 seglens[1] = len - split; in test_checksum()
|
| /xnu-11417.101.15/tools/lldbmacros/usertaskdebugging/ |
| H A D | gdbserver.py | 160 args = query[1:].split(';') 164 threadid = int(args[1].split(':')[-1], 16) 183 addr, size = query.split(',')
|
| /xnu-11417.101.15/tools/lldbmacros/tests/lldbtest/ |
| H A D | testcase.py | 138 return kerntgt.split('_')[0] 144 return lldb.debugger.GetSelectedTarget().triple.split('-', 1)[0]
|
| /xnu-11417.101.15/tools/lldbmacros/core/ |
| H A D | xnu_lldb_init.py | 71 ver = tuple(map(int, lldb_ver.split('.'))) 156 script_name = kextdir.split('.')[-1].replace('-', '_') + ".py"
|
| H A D | kernelcore.py | 651 return LazyTarget.GetTarget().triple.split('-', 1)[0]
|
| /xnu-11417.101.15/tools/lldbmacros/plugins/ |
| H A D | zprint_perf_log.py | 25 num_zones = len(result_output.split("\n")) -1
|
| /xnu-11417.101.15/bsd/skywalk/nexus/netif/ |
| H A D | nx_netif_compat.c | 1226 nx_netif_rx_split(struct mbuf *m0, uint32_t split) in nx_netif_rx_split() argument 1230 if (split == 0) { in nx_netif_rx_split() 1231 split = MHLEN; in nx_netif_rx_split() 1232 M_PREPEND(m, split, M_DONTWAIT, 0); in nx_netif_rx_split() 1234 m->m_data -= split; in nx_netif_rx_split() 1235 m->m_len += split; in nx_netif_rx_split() 1236 m_pktlen(m) += split; in nx_netif_rx_split() 1243 struct mbuf *n = m_split(m, split, M_DONTWAIT); in nx_netif_rx_split() 1249 ASSERT((uint32_t)m->m_len == split); in nx_netif_rx_split() 1250 m->m_data += split; in nx_netif_rx_split() [all …]
|
| /xnu-11417.101.15/san/tools/ |
| H A D | generate_dynamic_blacklist.py | 45 fields = line.split(":")
|
| /xnu-11417.101.15/tools/ |
| H A D | vm_sanitize_enforcement.py | 83 if safe_type in line.replace(':', ' ').replace(';', ' ').replace(',', ' ').split():
|
| H A D | format_vm_parameter_validation.py | 363 rows.add(result.parameters[0].split()[1]) 364 cols.add(result.parameters[1].split()[1]) 509 components = line.removeprefix('RESULT ').rstrip().split(', ')
|
| /xnu-11417.101.15/tools/lldbmacros/lint/ |
| H A D | syntax_checker.py | 31 if fname.split('.')[-1] != 'py':
|
| /xnu-11417.101.15/tools/lldbmacros/tests/lldb_tests/ |
| H A D | test_examples.py | 163 self.assertEqual(self.target.triple.split('-', 1)[0], 'arm64e')
|
| /xnu-11417.101.15/doc/observability/ |
| H A D | mt_stackshot.md | 43 In order to split up work between CPUs, each task is put into a workqueue for 70 with space split evenly between each cluster. If a cluster runs out of buffer
|
| /xnu-11417.101.15/tests/vm/ |
| H A D | memorystatus_freeze_test.c | 188 int split = 0; local 217 if (split == FALSE && info.share_mode == SM_EMPTY) { 229 split = TRUE;
|
| /xnu-11417.101.15/libsyscall/mach/ |
| H A D | err_iokit.sub | 129 "(iokit/usb) high speed hub error during split transaction", // 0x04b
|
| /xnu-11417.101.15/doc/mach_ipc/ |
| H A D | kmsg.md | 73 and a Mach message in the kernel can be split in 3 separate non contiguous
|