Home
last modified time | relevance | path

Searched refs:last_err (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/dialog/
H A Dtrace.c178 static int last_err = 0; in dlg_trace_chr() local
184 if (last_err && !fkey && ch == ERR) { in dlg_trace_chr()
185 ++last_err; in dlg_trace_chr()
189 if (last_err) { in dlg_trace_chr()
190 fprintf(myFP, "skipped %d ERR's\n", last_err); in dlg_trace_chr()
191 last_err = 0; in dlg_trace_chr()
239 last_err = 1; in dlg_trace_chr()
/freebsd-14.2/contrib/wpa/src/utils/
H A Dhttp_curl.c66 const char *last_err; member
1217 ctx->last_err = in ocsp_resp_cb()
1490 ctx->last_err = NULL; in soap_send_receive()
1503 if (!ctx->last_err) in soap_send_receive()
1506 ctx->last_err); in soap_send_receive()
1604 ctx->last_err = NULL; in http_download_file()
1633 if (!ctx->last_err) in http_download_file()
1636 ctx->last_err); in http_download_file()
1674 ctx->last_err = NULL; in http_post()
1696 if (!ctx->last_err) in http_post()
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/builtins/
H A Demutls.c145 static void win_error(DWORD last_err, const char *hint) { in win_error() argument
150 NULL, last_err, 0, (LPSTR)&buffer, 1, NULL)) { in win_error()
158 static __inline void win_abort(DWORD last_err, const char *hint) { in win_abort() argument
159 win_error(last_err, hint); in win_abort()