Home
last modified time | relevance | path

Searched refs:newopts (Results 1 – 11 of 11) sorted by relevance

/NextBSD/cddl/compat/opensolaris/misc/
HDfsshare.c123 static char newopts[OPTSSIZE]; in translate_opts() local
130 newopts[0] = '\0'; in translate_opts()
139 strlcat(newopts, "-", sizeof(newopts)); in translate_opts()
143 strlcat(newopts, o, sizeof(newopts)); in translate_opts()
144 strlcat(newopts, " ", sizeof(newopts)); in translate_opts()
146 return (newopts); in translate_opts()
/NextBSD/crypto/openssh/
HDmonitor_wrap.c239 ServerOptions *newopts; in mm_getpwnamallow() local
271 newopts = buffer_get_string(&m, &len); in mm_getpwnamallow()
272 if (len != sizeof(*newopts)) in mm_getpwnamallow()
276 if (newopts->x != NULL) \ in mm_getpwnamallow()
277 newopts->x = buffer_get_string(&m, NULL); \ in mm_getpwnamallow()
280 for (i = 0; i < newopts->nx; i++) \ in mm_getpwnamallow()
281 newopts->x[i] = buffer_get_string(&m, NULL); \ in mm_getpwnamallow()
288 copy_set_server_options(&options, newopts, 1); in mm_getpwnamallow()
289 free(newopts); in mm_getpwnamallow()
/NextBSD/usr.sbin/mergemaster/
HDmergemaster.sh272 newopts="$newopts $var"
277 set -- $newopts
278 unset var newopts
/NextBSD/bin/ps/
HDps.c1330 char *argp, *cp, *newopts, *ns, *optp, *pidp; in kludge_oldps_options() local
1392 if ((newopts = ns = malloc(len + 3)) == NULL) in kludge_oldps_options()
1412 return (newopts); in kludge_oldps_options()
/NextBSD/contrib/ncurses/form/
HDfrm_driver.c1303 _nc_Synchronize_Options(FIELD *field, Field_Options newopts) in _nc_Synchronize_Options() argument
1310 T((T_CALLED("_nc_Synchronize_Options(%p,%#x)"), (void *)field, newopts)); in _nc_Synchronize_Options()
1316 changed_opts = oldopts ^ newopts; in _nc_Synchronize_Options()
1317 field->opts = newopts; in _nc_Synchronize_Options()
1333 if ((unsigned)newopts & O_VISIBLE) in _nc_Synchronize_Options()
1341 ((unsigned)newopts & O_VISIBLE)) in _nc_Synchronize_Options()
1353 if ((unsigned)newopts & O_STATIC) in _nc_Synchronize_Options()
HDllib-lformtw458 Field_Options newopts)
HDllib-lform458 Field_Options newopts)
HDllib-lformw458 Field_Options newopts)
HDllib-lformt458 Field_Options newopts)
/NextBSD/contrib/ipfilter/tools/
HDipnat_y.y385 IPNY_REWRITE oninout rwrproto mapfrom tlate newdst newopts
396 divert: IPNY_DIVERT oninout rwrproto mapfrom tlate divdst newopts
1137 newopts:
/NextBSD/cddl/contrib/opensolaris/cmd/zfs/
HDzfs_main.c6053 append_options(char *mntopts, char *newopts) in append_options() argument
6058 if (len + 1 + strlen(newopts) >= MNT_LINE_MAX) { in append_options()
6068 (void) strcpy(&mntopts[len], newopts); in append_options()