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

/freebsd-13-stable/contrib/tcp_wrappers/
H A Dfix_options.c42 unsigned char optbuf[BUFFER_SIZE / 3], *cp; local
44 int optsize = sizeof(optbuf), ipproto;
72 if (getsockopt(fd, ipproto, IP_OPTIONS, (char *) optbuf, &optsize) == 0
100 for (cp = optbuf + ADDR_LEN; cp < optbuf + optsize; cp += optlen) {
120 for (cp = optbuf; optsize > 0; cp++, optsize--, lp += 3)
/freebsd-13-stable/sbin/fsck/
H A Dfsck.c305 char *optbuf, execbase[MAXPATHLEN]; local
311 (void) &optbuf;
334 optbuf = NULL;
336 catopt(&optbuf, options);
338 catopt(&optbuf, extra);
340 catopt(&optbuf, auxopt);
342 catopt(&optbuf, "-B");
350 if (optbuf)
351 mangle(optbuf, &argc, &argv, &maxargc);
366 if (optbuf)
[all...]
/freebsd-13-stable/sbin/mount/
H A Dgetmntopts.c62 char *opt, *optbuf, *p; local
66 if ((optbuf = strdup(options)) == NULL)
69 for (opt = optbuf; (opt = strtok(opt, ",")) != NULL; opt = NULL) {
105 free(optbuf);
H A Dmount.c183 char *optbuf, *opt; local
186 optbuf = strdup(arg);
187 if (optbuf == NULL)
190 for (opt = optbuf; (opt = strtok(opt, ",")) != NULL; opt = NULL) {
196 free(optbuf);
513 char *opt, *optbuf; local
520 optbuf = strdup(mntopts);
522 for (opt = optbuf; (opt = strtok(opt, ",")) != NULL; opt = NULL) {
529 free(optbuf);
551 char *optbuf, execnam local
[all...]
/freebsd-13-stable/bin/sh/
H A Dmiscbltin.c577 char optbuf[40]; local
582 snprintf(optbuf, sizeof(optbuf),
585 snprintf(optbuf, sizeof(optbuf),
587 out1fmt("%-18s %18s ", l->name, optbuf);
/freebsd-13-stable/contrib/sendmail/src/
H A Dusersmtp.c2029 char optbuf[MAXLINE]; local
2063 (void) sm_snprintf(optbuf, sizeof(optbuf), " SIZE=%ld",
2065 bufp = &optbuf[strlen(optbuf)];
2069 optbuf[0] = '\0';
2070 bufp = optbuf;
2075 (void) sm_snprintf(bufp, SPACELEFT(optbuf, bufp),
2091 SPACELEFT(optbuf, bufp) > strlen(bodytype) + 7)
2093 (void) sm_snprintf(bufp, SPACELEFT(optbuf, buf
2315 char optbuf[MAXLINE]; local
[all...]
/freebsd-13-stable/sys/netinet6/
H A Dip6_output.c1328 u_char *optbuf; local
1344 optbuf = mtod(mopt, u_char *);
1345 optbuf[1] = 0; /* = ((JUMBOOPTLEN) >> 3) - 1 */
1378 optbuf = mtod(n, caddr_t) + oldoptlen;
1382 optbuf = mtod(mopt, u_char *) + mopt->m_len;
1385 optbuf[0] = IP6OPT_PADN;
1386 optbuf[1] = 1;
1397 optbuf[2] = IP6OPT_JUMBO;
1398 optbuf[3] = 4;
1400 bcopy(&v, &optbuf[
2066 u_char *optbuf; local
[all...]
/freebsd-13-stable/sbin/dhclient/
H A Doptions.c637 static char optbuf[32768]; /* XXX */ local
639 char fmtbuf[32], *op = optbuf;
640 int i, j, k, opleft = sizeof(optbuf);
864 return (optbuf);
H A Ddhclient.c2777 static char optbuf[32768]; /* XXX */ local
2778 char *op = optbuf;
2779 int opleft = sizeof(optbuf);
2805 return optbuf;
/freebsd-13-stable/crypto/openssh/
H A Dssh-keygen.c1947 show_options(struct sshbuf *optbuf, int in_critical) argument
1953 if ((options = sshbuf_fromb(optbuf)) == NULL)

Completed in 155 milliseconds