| /xnu-12377.81.4/tests/ |
| H A D | vm_test_code_signing_helper.c | 37 fprintf(stdout, in main() 54 fprintf(stdout, "allocated page at %p\n", in main() 90 fprintf(stdout, in main() 93 fprintf(stdout, "pausing...\n"); in main() 94 fflush(stdout); in main() 106 fprintf(stdout, in main() 109 fprintf(stdout, "pausing...\n"); in main() 110 fflush(stdout); in main() 119 fprintf(stdout, "cwd before = %s\n", getwd(NULL)); in main() 128 fprintf(stdout, "cwd after = %s\n", getwd(NULL)); in main() [all …]
|
| H A D | icmp_fragmented_payload.c | 115 fprintf(stdout, "icmp pcb: null"); in icmp4_pcb_print() 119 fprintf(stdout, "icmp pcb: \n" in icmp4_pcb_print() 317 fprintf(stdout, "tcp_hdr_offset: %lu, maxlen: %lu\n", tcp_hdr_offset, maxlen); in icmp4_pcb_assert_payload_correct()
|
| H A D | text_corruption_helper.c | 14 fflush(stdout); in foo()
|
| H A D | posix_sem_namespace_helper.c | 57 fflush(stdout); in main()
|
| H A D | suspended_spawn_26184412.c | 32 setvbuf(stdout, NULL, _IONBF, 0); in spawn_and_signal()
|
| H A D | ecc_test_helper.c | 30 fflush(stdout); in foo()
|
| H A D | reply_port_defense_client.c | 666 fflush(stdout); in main() 674 fflush(stdout); in main()
|
| /xnu-12377.81.4/tools/lldbmacros/ |
| H A D | sysreg.py | 81 sys.stdout.write(para.text) 83 sys.stdout.write(_GetParaChildrenStr(child)) 84 sys.stdout.write(child.tail) 140 sys.stdout.write(_GetIndentedString(2, '')) 141 sys.stdout.write(para.text) 143 sys.stdout.write(_GetParaChildrenStr(child)) 144 sys.stdout.write((child.tail)) 150 sys.stdout.write(_GetIndentedString(2, '')) 151 sys.stdout.write(para.text) 153 sys.stdout.write(_GetParaChildrenStr(child)) [all …]
|
| H A D | utils.py | 527 stdout = result.stdout 532 … "exit code: {}, stdout: '{}', stderr: '{}'".format(command, returncode, stdout, stderr)) 534 return (returncode, stdout, stderr)
|
| H A D | xnu.py | 83 stream = CommandOutput(summary_function_name, fhandle=sys.stdout) 84 with RedirectStdStreams(stdout=stream), caching.ImplicitContext(lldbval): 322 with RedirectStdStreams(stdout=stream), caching.ImplicitContext(exe_ctx): 381 stream = CommandOutput(cmd_name, fhandle=sys.stdout) 382 with RedirectStdStreams(stdout=stream):
|
| /xnu-12377.81.4/tools/tests/personas/ |
| H A D | persona_test.h | 99 fprintf(stdout, "[%4d] [DEBUG] " fmt "\n", getuid(), ## __VA_ARGS__ ); \ 104 fprintf(stdout, "[%4d] [WARN ] " fmt "\n", getuid(), ## __VA_ARGS__ ); \ 114 fprintf(stdout, "[%4d] [INFO ] " fmt "\n", getuid(), ## __VA_ARGS__ ); \ 120 fprintf(stdout, "[%4d] [INFO ] " fmt, getuid(), ## __VA_ARGS__ ); \ 125 fprintf(stdout, fmt, ## __VA_ARGS__ ); \ 130 fprintf(stdout, "\n"); \ 136 fprintf(stdout, "[%4d] [vINFO] " fmt "\n", getuid(), ## __VA_ARGS__ ); \
|
| /xnu-12377.81.4/libkern/kxld/tests/ |
| H A D | loadtest.py | 35 pipe = Popen("/usr/sbin/kextfind \( -l -and -x -and -arch i386 \)", shell=True, stdout=PIPE).stdout 49 kextload = Popen(cmd, shell=True, stdin=PIPE, stdout=PIPE)
|
| /xnu-12377.81.4/tools/lldbmacros/tests/lldb_tests/ |
| H A D | test_process.py | 152 stdout = io.StringIO() 153 with contextlib.redirect_stdout(stdout): 157 self.assertIn(INVALID_PROC_SUMMARY, stdout.getvalue()) 158 self.assertIn(INVALID_TASK_SUMMARY, stdout.getvalue())
|
| H A D | test_examples.py | 88 stdout = io.StringIO() 89 with contextlib.redirect_stdout(stdout): 100 self.assertEqual(stdout.getvalue(), expected)
|
| /xnu-12377.81.4/tools/lldbmacros/core/ |
| H A D | standard.py | 24 def __init__(self, stdout=None, stderr=None): argument 25 self._stdout = stdout or sys.stdout 29 self.old_stdout, self.old_stderr = sys.stdout, sys.stderr 31 sys.stdout, sys.stderr = self._stdout, self._stderr 35 sys.stdout = self.old_stdout
|
| /xnu-12377.81.4/tools/lldbmacros/tests/integration_smoke/ |
| H A D | test_lldb_macros.py | 61 return session.exec("showallvnodes").stdout.readlines(4)[1].strip().split()[0] 643 stdout = lldb_gdb_session.exec('help') 647 …user_defined_macros = stdout[stdout.find(_start_after) + len(_start_after): stdout.find(_end_befor…
|
| /xnu-12377.81.4/libkern/kxld/ |
| H A D | WKdmCompress.c | 136 fflush(stdout); in WKdm_compress() 172 printf("AFTER MODELING in WKdm_compress()\n"); fflush(stdout); in WKdm_compress() 185 fflush(stdout); in WKdm_compress()
|
| /xnu-12377.81.4/tools/ |
| H A D | symbolify.py | 24 p = Popen(cmd, shell=True, stdout=PIPE) 25 return p.stdout
|
| /xnu-12377.81.4/tests/sched/ |
| H A D | thread_group_flags.c | 224 ret = ktrace_print_trace_point(stdout, read_session, e, KTP_KIND_CSV, in search_for_workload_id_tg_flags_tracepoints() 239 ret = ktrace_print_trace_point(stdout, read_session, e, KTP_KIND_CSV, in search_for_workload_id_tg_flags_tracepoints() 258 ret = ktrace_print_trace_point(stdout, read_session, e, KTP_KIND_CSV, in search_for_workload_id_tg_flags_tracepoints() 346 ret = ktrace_print_trace_point(stdout, read_session, e, KTP_KIND_CSV, in search_for_pid_based_tg_flags_tracepoints()
|
| /xnu-12377.81.4/tools/lldbmacros/plugins/ |
| H A D | iosspeedtracer.py | 23 …s.path.abspath(__file__)), "iosspeedtracer.sh")], stdin=subprocess.PIPE, stdout=subprocess.PIPE, s…
|
| /xnu-12377.81.4/bsd/man/man4/ |
| H A D | Makefile | 36 stdout.4 \
|
| /xnu-12377.81.4/tests/benchmark/ |
| H A D | helpers.c | 43 fflush(stdout); in benchmark_log()
|
| /xnu-12377.81.4/tools/tests/affinity/ |
| H A D | tags.c | 138 fflush(stdout); in main()
|
| /xnu-12377.81.4/tools/tests/superpages/ |
| H A D | measure_tlbs.c | 127 fflush(stdout); in main()
|
| /xnu-12377.81.4/libkdd/ |
| H A D | kdd_main.m | 118 fwrite(plist.bytes, plist.length, 1, stdout);
|