Home
last modified time | relevance | path

Searched refs:f_out (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-3.6.0/components/tinyusb/additions/src/
Dtusb_console.c47 static esp_err_t redirect_std_streams_to(FILE **f_in, FILE **f_out, FILE **f_err, const char *path) in redirect_std_streams_to() argument
56 if (f_out) { in redirect_std_streams_to()
57 *f_out = freopen(path, "w", stdout); in redirect_std_streams_to()
58 if (*f_out == NULL) { in redirect_std_streams_to()
82 static esp_err_t restore_std_streams(FILE **f_in, FILE **f_out, FILE **f_err) in restore_std_streams() argument
92 if (f_out) { in restore_std_streams()
93 stdout = freopen(default_uart_dev, "w", *f_out); in restore_std_streams()
/hal_espressif-3.6.0/tools/test_mkdfu/
Dtest_mkdfu.py44 with tempfile.NamedTemporaryFile(delete=False) as f_out:
45 self.addCleanup(os.unlink, f_out.name)
47 '-o', f_out.name,
61 … p.expect_exact('"{}" has been written. You may proceed with DFU flashing.'.format(f_out.name))
73 …self.assertTrue(filecmp.cmp(f_out.name, os.path.join(current_dir, output_to_compare)), 'Output fil…
/hal_espressif-3.6.0/examples/system/sysview_tracing/
Dexample_test.py28 with open(os.path.join(proj_path, 'gdbinit')) as f_in, open(tempfiles[0], 'w') as f_out:
33 f_out.write(new_content)
/hal_espressif-3.6.0/examples/system/sysview_tracing_heap_log/
Dexample_test.py27 with open(os.path.join(proj_path, 'gdbinit')) as f_in, open(tempfiles[0], 'w') as f_out:
32 f_out.write(new_content)
/hal_espressif-3.6.0/tools/kconfig_new/
Dconfgen.py106 with open(sdkconfig_in, 'r') as f_in, open(sdkconfig_out, 'w') as f_out:
119 f_out.write(line)
264 with open(path_in, 'r') as f_in, open(path_out, 'w') as f_out:
270 f_out.write(line)
271 f_out.write('\n')
/hal_espressif-3.6.0/tools/find_build_apps/
Dcommon.py344 with open(sdkconfig_file, 'w') as f_out:
362 f_out.write(os.path.expandvars(line))