Searched refs:opts (Results 1 - 25 of 850) sorted by last modified time

1234567891011>>

/freebsd-11-stable/lib/libarchive/
H A DMakefile2 .include <src.opts.mk>
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive.h634 const char *opts);
891 const char *opts);
/freebsd-11-stable/usr.sbin/bhyve/
H A Dpci_virtio_rnd.c143 pci_vtrnd_init(struct vmctx *ctx, struct pci_devinst *pi, char *opts) argument
H A Dpci_virtio_console.c603 pci_vtcon_init(struct vmctx *ctx, struct pci_devinst *pi, char *opts) argument
645 while ((opt = strsep(&opts, ",")) != NULL) {
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dip_state.c5391 ips = printstate(ips, opts & (OPT_DEBUG|OPT_VERBOSE),
H A Dip_pool.c1481 printpool(ipl, bcopywrap, NULL, opts, NULL);
H A Dip_htable.c1460 printhash(iph, bcopywrap, NULL, opts, NULL);
H A Dfil.c114 extern int opts;
2436 if (opts & (OPT_VERBOSE|OPT_DEBUG))
/freebsd-11-stable/lib/msun/
H A DMakefile253 .include <src.opts.mk>
/freebsd-11-stable/sys/kern/
H A Dvfs_mount.c97 * Global opts, taken by all filesystems
147 vfs_freeopt(struct vfsoptlist *opts, struct vfsopt *opt) argument
150 TAILQ_REMOVE(opts, opt, link);
159 vfs_freeopts(struct vfsoptlist *opts) argument
163 while (!TAILQ_EMPTY(opts)) {
164 opt = TAILQ_FIRST(opts);
165 vfs_freeopt(opts, opt);
167 free(opts, M_MOUNT);
171 vfs_deleteopt(struct vfsoptlist *opts, const char *name) argument
175 if (opts
243 vfs_sanitizeopts(struct vfsoptlist *opts) argument
267 struct vfsoptlist *opts; local
1520 vfs_opterror(struct vfsoptlist *opts, const char *fmt, ...) argument
1544 vfs_filteropt(struct vfsoptlist *opts, const char **legal) argument
1602 vfs_getopt(struct vfsoptlist *opts, const char *name, void **buf, int *len) argument
1622 vfs_getopt_pos(struct vfsoptlist *opts, const char *name) argument
1639 vfs_getopt_size(struct vfsoptlist *opts, const char *name, off_t *value) argument
1681 vfs_getopts(struct vfsoptlist *opts, const char *name, int *error) argument
1702 vfs_flagopt(struct vfsoptlist *opts, const char *name, uint64_t *w, uint64_t val) argument
1721 vfs_scanopt(struct vfsoptlist *opts, const char *name, const char *fmt, ...) argument
1746 vfs_setopt(struct vfsoptlist *opts, const char *name, void *value, int len) argument
1767 vfs_setopt_part(struct vfsoptlist *opts, const char *name, void *value, int len) argument
1789 vfs_setopts(struct vfsoptlist *opts, const char *name, const char *value) argument
1815 vfs_copyopt(struct vfsoptlist *opts, const char *name, void *dest, int len) argument
[all...]
H A Dkern_rmlock.c277 rm_init_flags(struct rmlock *rm, const char *name, int opts) argument
283 if (!(opts & RM_NOWITNESS))
285 if (opts & RM_RECURSE)
287 if (opts & RM_NEW)
291 if (opts & RM_SLEEPABLE) {
294 xflags = (opts & RM_NEW ? SX_NEW : 0);
299 xflags = (opts & RM_NEW ? MTX_NEW : 0);
H A Dkern_jail.c495 struct vfsoptlist *opts; local
546 error = vfs_buildopts(optuio, &opts);
560 vfs_opterror(opts, "no valid operation (create or update)");
564 error = vfs_copyopt(opts, "jid", &jid, sizeof(jid));
570 error = vfs_copyopt(opts, "securelevel", &slevel, sizeof(slevel));
579 vfs_copyopt(opts, "children.max", &childmax, sizeof(childmax));
587 error = vfs_copyopt(opts, "enforce_statfs", &enforce, sizeof(enforce));
598 error = vfs_copyopt(opts, "devfs_ruleset", &rsnum, sizeof(rsnum));
610 vfs_flagopt(opts, pr_flag_names[fi], &pr_flags, 1 << fi);
611 vfs_flagopt(opts, pr_flag_noname
1953 struct vfsoptlist *opts; local
[all...]
/freebsd-11-stable/share/man/man4/
H A DMakefile4 .include <src.opts.mk>
/freebsd-11-stable/contrib/subversion/
H A Dwin-tests.py132 cp.read('gen-make.opts')
135 opts, args = my_getopt(sys.argv[1:], 'hrdvqct:pu:f:',
197 for opt, val in opts:
1096 opts, args = run_tests.create_parser().parse_args([])
1097 opts.url = base_url
1098 opts.fs_type = fs_type
1099 opts.global_scheduler = global_scheduler
1100 opts.http_library = 'serf'
1101 opts.server_minor_version = server_minor_version
1102 opts
[all...]
H A Dgen-make.py237 opts, args = my_getopt(sys.argv[1:], 'st:D:',
283 # First merge options with previously saved to gen-make.opts if --reload
285 for opt, val in opts:
288 prev_conf.read('gen-make.opts')
317 opt_conf = open('gen-make.opts', 'w')
H A Dbuild.conf105 swig-python-opts = $(SWIG_FEATURES) $(SWIG_PY_OPTS) $(SWIG_PY_FEATURES)
106 swig-perl-opts = $(SWIG_FEATURES) -perl $(SWIG_PL_FEATURES) -nopm -noproxy
107 swig-ruby-opts = $(SWIG_FEATURES) -ruby $(SWIG_RB_FEATURES)
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dopt.c158 char *opts;
169 opts = apr_psprintf(pool, "-%c [--%s]", opt->optch, opt->name);
171 opts = apr_psprintf(pool, "--%s [--%s]", opt->name, long_alias);
173 opts = apr_psprintf(pool, "--%s", opt->name);
176 opts = apr_pstrcat(pool, opts, _(" ARG"), SVN_VA_NULL);
179 opts = apr_psprintf(pool, "%-24s : %s", opts, _(opt->description));
181 *string = opts;
156 char *opts; local
/freebsd-11-stable/contrib/ipfilter/tools/
H A Dipmon.c50 int opts; member in struct:config
156 int opts = OPT_NORESOLVE; variable
1620 opts &= ~OPT_NORESOLVE;
H A Dipfsyncd.c31 #include "opts.h"
62 int opts = 0; variable
101 opts = 0;
H A Dipscan_y.y12 #include "opts.h"
41 int opts = 0;
321 if (opts & OPT_DEBUG) {
329 if (opts & OPT_VERBOSE) {
393 if (!(opts & OPT_DONOTHING)) {
395 if (opts & OPT_REMOVE) {
404 if (opts & OPT_VERBOSE)
474 else if (opts & OPT_SHOWLIST) {
518 opts |= OPT_DEBUG;
534 opts |
[all...]
H A Dippool.c60 int opts = 0; variable
152 opts |= OPT_DEBUG;
163 opts |= OPT_DONOTHING|OPT_DONTOPEN;
202 opts |= OPT_VERBOSE;
217 if (opts & OPT_DEBUG)
218 fprintf(stderr, "poolnodecommand: opts = %#x\n", opts);
272 opts |= OPT_DEBUG;
279 opts |= OPT_DONOTHING|OPT_DONTOPEN;
299 opts |
[all...]
H A Dipnat_y.y1485 if ((opts & OPT_DONOTHING) != 0)
1488 if (opts & OPT_ZERORULEST) {
1491 } else if (opts & OPT_PURGE) {
1499 if ((opts & OPT_VERBOSE) != 0)
1500 printnat(ipn, opts);
1502 if (opts & OPT_DEBUG)
1505 if ((opts & OPT_ZERORULEST) != 0) {
1507 if ((opts & OPT_DONOTHING) == 0) {
1523 printnat(ipn, opts);
1525 } else if ((opts
[all...]
H A Dipnat.c79 int opts; variable
101 opts = 0;
115 opts |= OPT_CLEAR;
118 opts |= OPT_DEBUG;
124 opts |= OPT_FLUSH;
127 opts |=OPT_HITS;
130 opts |= OPT_LIST;
143 opts |= OPT_DONOTHING|OPT_DONTOPEN;
150 opts |= OPT_PURGE;
153 opts |
[all...]
H A Dipmon_y.y433 check_action(buf, log, opts, lvl)
435 int opts, lvl;
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dprintaps.c21 printaps(aps, opts, proto)
23 int opts, proto;
45 if ((proto == IPPROTO_TCP) && (opts & OPT_VERBOSE)) {

Completed in 374 milliseconds

1234567891011>>