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

/macosx-10.10/libutil-38/
H A Dgetmntopts.c58 char *optbuf; member in struct:mntoptparse
116 free(mp->optbuf);
139 if ((mp->optbuf = strdup(options)) == NULL) {
145 free(mp->optbuf);
153 for (opt = mp->optbuf; (opt = strtok_r(opt, ",", &ctx)) != NULL; opt = NULL) {
/macosx-10.10/diskdev_cmds-576/mount.tproj/
H A Dmount.c314 char *opt, *optbuf; local
321 optbuf = strdup(mntopts);
323 for (opt = optbuf; (opt = strtok(opt, ",")) != NULL; opt = NULL) {
330 free(optbuf);
369 char *optbuf, execname[MAXPATHLEN + 1], mntpath[MAXPATHLEN]; local
388 optbuf = catopt(strdup(mntopts), options);
393 optbuf = catopt(optbuf, "force");
395 optbuf = catopt(optbuf, "r
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/apps/
H A Dtcldocstrip191 set optbuf {}
214 lappend stitchbuf $optbuf $opt
215 set optbuf {}
245 lappend optbuf $o ""
253 lappend optbuf $opt $val
262 lappend optbuf $opt $val
271 lappend optbuf $opt $val
/macosx-10.10/apache-793/httpd/server/
H A Dmpm_unix.c858 char optbuf[3]; local
866 optbuf[0] = '-';
867 /* option char returned by apr_getopt() will be stored in optbuf[1] */
868 optbuf[2] = '\0';
870 optbuf + 1, &optarg)) == APR_SUCCESS) {
871 switch(optbuf[1]) {
883 apr_pstrdup(process->pool, optbuf);
/macosx-10.10/remote_cmds-47/rlogind.tproj/
H A Drlogind.c308 u_char optbuf[BUFSIZ/3]; local
309 socklen_t optsize = sizeof(optbuf);
317 if (getsockopt(0, ipproto, IP_OPTIONS, (char *)optbuf,
320 u_char c = optbuf[i];
330 i += (c == IPOPT_NOP) ? 1 : optbuf[i+1];
/macosx-10.10/apache-793/httpd/server/mpm/netware/
H A Dmpm_netware.c1111 char optbuf[3]; local
1154 optbuf[0] = '-';
1155 optbuf[2] = '\0';
1157 while (apr_getopt(opt, AP_SERVER_BASEARGS"n:", optbuf + 1, &opt_arg) == APR_SUCCESS) {
1158 switch (optbuf[1]) {
1169 apr_pstrdup(process->pool, optbuf);
/macosx-10.10/remote_cmds-47/rshd.tproj/
H A Drshd.c310 u_char optbuf[BUFSIZ/3]; local
311 socklen_t optsize = sizeof(optbuf), ipproto, i;
318 if (!getsockopt(0, ipproto, IP_OPTIONS, optbuf, &optsize) &&
321 u_char c = optbuf[i];
331 i += (c == IPOPT_NOP) ? 1 : optbuf[i+1];
/macosx-10.10/apache-793/httpd/server/mpm/winnt/
H A Dmpm_winnt.c1011 char optbuf[3]; local
1140 optbuf[0] = '-';
1141 optbuf[2] = '\0';
1145 optbuf + 1, &opt_arg)) == APR_SUCCESS) {
1146 switch (optbuf[1]) {
1170 apr_pstrdup(process->pool, optbuf);
/macosx-10.10/autofs-246/automountd/
H A Dautod_nfs.c1443 char optbuf[AUTOFS_MAXOPTSLEN]; local
1460 (void) strlcpy(optbuf, mntopts, sizeof (optbuf));
1468 NULL, 0, optbuf, sizeof (optbuf)) < 0) {
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Dmessage.c3197 isc_buffer_t optbuf; local
3239 isc_buffer_init(&optbuf, rdata.data, rdata.length);
3240 isc_buffer_add(&optbuf, rdata.length);
3241 while (isc_buffer_remaininglength(&optbuf) != 0) {
3242 INSIST(isc_buffer_remaininglength(&optbuf) >= 4U);
3243 optcode = isc_buffer_getuint16(&optbuf);
3244 optlen = isc_buffer_getuint16(&optbuf);
3245 INSIST(isc_buffer_remaininglength(&optbuf) >= optlen);
3259 optdata = isc_buffer_current(&optbuf);
3274 isc_buffer_forward(&optbuf, optle
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/netinet6/
H A Dip6_output.c1849 u_char *optbuf; local
1865 optbuf = mtod(mopt, u_char *);
1866 optbuf[1] = 0; /* = ((JUMBOOPTLEN) >> 3) - 1 */
1906 optbuf = mtod(n, u_char *) + oldoptlen;
1910 optbuf = mtod(mopt, u_char *) + mopt->m_len;
1913 optbuf[0] = IP6OPT_PADN;
1914 optbuf[1] = 1;
1925 optbuf[2] = IP6OPT_JUMBO;
1926 optbuf[3] = 4;
1928 bcopy(&v, &optbuf[
[all...]
/macosx-10.10/ruby-106/ruby/
H A Dre.c528 char optbuf[5]; local
588 if (*option_to_str(optbuf, options)) rb_str_buf_cat2(str, optbuf);
591 optbuf[0] = '-';
592 option_to_str(optbuf + 1, ~options);
593 rb_str_buf_cat2(str, optbuf);
/macosx-10.10/OpenSSH-189/openssh/
H A Dssh-keygen.c1807 show_options(const Buffer *optbuf, int v00, int in_critical) argument
1814 buffer_append(&options, buffer_ptr(optbuf), buffer_len(optbuf));

Completed in 153 milliseconds