Home
last modified time | relevance | path

Searched refs:outBufLen (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/libfido2/openbsd-compat/
H A Dreadpassphrase_win32.c71 readpassphrase(const char *prompt, char *outBuf, size_t outBufLen, int flags) in readpassphrase() argument
77 if (outBufLen == 0) { in readpassphrase()
91 while (current_index < outBufLen - 1) { in readpassphrase()
/freebsd/contrib/bmake/
H A Djob.c231 size_t outBufLen; member
1671 job->outBufLen = 0; in JobExec()
1899 nr = (size_t)read(job->inPipe, job->outBuf + job->outBufLen, in CollectOutput()
1900 JOB_BUFSIZE - job->outBufLen); in CollectOutput()
1912 if (nr == 0 && job->outBufLen > 0) { in CollectOutput()
1913 job->outBuf[job->outBufLen] = '\n'; in CollectOutput()
1917 max = job->outBufLen + nr; in CollectOutput()
1920 for (i = job->outBufLen; i < max; i++) in CollectOutput()
1924 for (i = max; i > job->outBufLen; i--) in CollectOutput()
1928 if (i == job->outBufLen) { in CollectOutput()
[all …]