Searched refs:report_type (Results 1 - 8 of 8) sorted by relevance
/third_party/python/Lib/test/support/ |
H A D | os_helper.py | 618 for report_type in (msvcrt.CRT_WARN, 621 old_modes[report_type] = msvcrt.CrtSetReportMode(report_type, 639 for report_type in (msvcrt.CRT_WARN, 642 msvcrt.CrtSetReportMode(report_type, old_modes[report_type])
|
H A D | __init__.py | 1677 for report_type in [msvcrt.CRT_WARN, 1680 old_mode = msvcrt.CrtSetReportMode(report_type, 1682 old_file = msvcrt.CrtSetReportFile(report_type, 1684 self.old_modes[report_type] = old_mode, old_file 1731 for report_type, (old_mode, old_file) in self.old_modes.items(): 1732 msvcrt.CrtSetReportMode(report_type, old_mode) 1733 msvcrt.CrtSetReportFile(report_type, old_file)
|
/third_party/lwip/src/include/lwip/apps/ |
H A D | lwiperf.h | 79 @param report_type contains the test result */ 80 typedef void (*lwiperf_report_fn)(void *arg, enum lwiperf_report_type report_type,
|
/third_party/lwip/src/apps/lwiperf/ |
H A D | lwiperf.c | 229 lwip_tcp_conn_report(lwiperf_state_tcp_t *conn, enum lwiperf_report_type report_type) in lwip_tcp_conn_report() argument 240 conn->report_fn(conn->report_arg, report_type, in lwip_tcp_conn_report() 249 lwiperf_tcp_close(lwiperf_state_tcp_t *conn, enum lwiperf_report_type report_type) in lwiperf_tcp_close() argument 254 lwip_tcp_conn_report(conn, report_type); in lwiperf_tcp_close()
|
/third_party/libuv/src/win/ |
H A D | core.c | 50 static int uv__crt_dbg_report_handler(int report_type, char *message, int *ret_val) { in uv__crt_dbg_report_handler() argument 51 if (uv__crt_assert_enabled || report_type != _CRT_ASSERT) in uv__crt_dbg_report_handler()
|
/third_party/node/deps/uv/src/win/ |
H A D | core.c | 50 static int uv__crt_dbg_report_handler(int report_type, char *message, int *ret_val) { in uv__crt_dbg_report_handler() argument 51 if (uv__crt_assert_enabled || report_type != _CRT_ASSERT) in uv__crt_dbg_report_handler()
|
/third_party/ffmpeg/tests/ |
H A D | fate-run.sh | 27 report_type=${18:-standard} 603 if [ "$report_type" = "ignore" ]; then 613 if [ $err -eq 0 ] && test $report_type = "standard" ; then
|
/third_party/lwip/src/core/ |
H A D | netif.c | 127 static void netif_issue_reports(struct netif *netif, u8_t report_type); 996 netif_issue_reports(struct netif *netif, u8_t report_type) argument 1007 if ((report_type & NETIF_REPORT_TYPE_IPV4) && 1026 if (report_type & NETIF_REPORT_TYPE_IPV6) {
|
Completed in 13 milliseconds