Searched refs:nfound (Results 1 - 10 of 10) sorted by relevance

/freebsd-12-stable/contrib/gdb/gdb/cli/
H A Dcli-decode.c46 int *nfound);
864 found in nfound */
868 int ignore_help_classes, int *nfound)
873 *nfound = 0;
879 (*nfound)++;
882 *nfound = 1;
930 int len, tmp, nfound;
972 nfound = 0;
973 found = find_cmd (command, len, clist, ignore_help_classes, &nfound);
979 if (!found || nfound
863 find_cmd(char *command, int len, struct cmd_list_element *clist, int ignore_help_classes, int *nfound) argument
926 int len, tmp, nfound; local
1288 int len, tmp, nfound; local
[all...]
/freebsd-12-stable/crypto/openssh/
H A Dssh-pkcs11.c200 CK_ULONG nfound = 0; local
210 if ((rv = f->C_FindObjects(session, obj, 1, &nfound)) != CKR_OK ||
211 nfound != 1) {
212 debug("C_FindObjects failed (nfound %lu nattr %lu): %lu",
213 nfound, nattr, rv);
476 CK_ULONG nfound; local
493 if ((rv = f->C_FindObjects(session, &obj, 1, &nfound)) != CKR_OK
494 || nfound == 0)
/freebsd-12-stable/libexec/bootpd/bootpgw/
H A Dbootpgw.c167 int nfound, readfds;
451 nfound = select(s + 1, (fd_set *)&readfds, NULL, NULL,
453 if (nfound < 0) {
165 int nfound, readfds; local
/freebsd-12-stable/sys/kern/
H A Dkern_exit.c1199 int error, nfound, ret; local
1237 nfound = 0;
1249 nfound++;
1305 if (nfound == 0) {
1313 nfound++;
1318 if (nfound == 0) {
H A Dkern_ktrace.c919 int nfound, ret = 0; local
999 nfound = 0;
1007 nfound++;
1013 if (nfound == 0) {
/freebsd-12-stable/contrib/ntp/ntpdate/
H A Dntpdate.c318 int nfound; local
573 nfound = poll(rdfdes, (unsigned int)nbsock, timeout.tv_sec * 1000);
576 nfound = select(maxfd, &rdfdes, NULL, NULL,
579 if (nfound > 0)
581 else if (nfound == SOCKET_ERROR)
599 "poll(): nfound = %d, error: %m",
601 "select(): nfound = %d, error: %m",
603 nfound);
/freebsd-12-stable/sbin/savecore/
H A Dsavecore.c97 static int nfound, nsaved, nerr; /* statistics */ variable
681 nfound++;
938 nfound = nsaved = nerr = 0;
1013 if (nfound == 0) {
/freebsd-12-stable/contrib/gdb/gdb/
H A Dsymtab.c2687 /* Sort the ``nfound'' symbols in the list after prevtail. Leave
2691 sort_search_symbols (struct symbol_search *prevtail, int nfound)
2697 * nfound);
2699 for (i = 0; i < nfound; i++)
2707 qsort (symbols, nfound, sizeof (struct symbol_search *),
2711 for (i = 0; i < nfound; i++)
2934 int nfound = 0;
2961 nfound ++;
2964 if (nfound > 0)
2971 tail = sort_search_symbols (&dummy, nfound);
2683 sort_search_symbols(struct symbol_search *prevtail, int nfound) argument
2926 int nfound = 0; local
[all...]
/freebsd-12-stable/libexec/bootpd/
H A Dbootpd.c194 int nfound;
523 nfound = select(s + 1, &readfds, NULL, NULL,
525 if (nfound < 0) {
192 int nfound; local
/freebsd-12-stable/contrib/ntp/ntpd/
H A Dntp_io.c3631 int nfound; local
3652 nfound = select(maxactivefd + 1, &rdfdes, NULL,
3660 nfound = select(maxactivefd + 1,
3665 if (nfound < 0 && sanitize_fdset(errno)) {
3670 nfound = select(maxactivefd + 1,
3675 if (nfound > 0) {
3681 } else if (nfound == -1 && errno != EINTR) {
3686 msyslog(LOG_DEBUG, "select(): nfound=%d, error: %m", nfound);
3688 DPRINTF(3, ("select() returned %d: %m\n", nfound));
[all...]

Completed in 200 milliseconds