Searched refs:f_in (Results 1 – 5 of 5) sorted by relevance
/hal_espressif-3.6.0/components/tinyusb/additions/src/ |
D | tusb_console.c | 47 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 49 if (f_in) { in redirect_std_streams_to() 50 *f_in = freopen(path, "r", stdin); in redirect_std_streams_to() 51 if (*f_in == 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 85 if (f_in) { in restore_std_streams() 86 stdin = freopen(default_uart_dev, "r", *f_in); in restore_std_streams()
|
/hal_espressif-3.6.0/examples/system/sysview_tracing/ |
D | example_test.py | 28 with open(os.path.join(proj_path, 'gdbinit')) as f_in, open(tempfiles[0], 'w') as f_out: 29 new_content = f_in.read()
|
/hal_espressif-3.6.0/examples/system/sysview_tracing_heap_log/ |
D | example_test.py | 27 with open(os.path.join(proj_path, 'gdbinit')) as f_in, open(tempfiles[0], 'w') as f_out: 28 new_content = f_in.read()
|
/hal_espressif-3.6.0/tools/kconfig_new/ |
D | confgen.py | 106 with open(sdkconfig_in, 'r') as f_in, open(sdkconfig_out, 'w') as f_out: 107 for line_num, line in enumerate(f_in, start=1): 264 with open(path_in, 'r') as f_in, open(path_out, 'w') as f_out: 265 for line_num, line in enumerate(f_in, start=1):
|
/hal_espressif-3.6.0/tools/find_build_apps/ |
D | common.py | 350 with open(sdkconfig_path, 'r') as f_in: 351 for line in f_in:
|