Searched refs:set (Results 1 - 25 of 1536) sorted by path

1234567891011>>

/freebsd-11-stable/bin/chflags/
H A Dchflags.c64 u_long clear, newflags, set; local
135 set = val;
138 if (strtofflags(&flags, &set, &clear))
175 newflags = set;
177 newflags = (p->fts_statp->st_flags | set) & clear;
/freebsd-11-stable/bin/chmod/
H A Dchmod.c65 mode_t *set; local
71 set = NULL;
148 if ((set = setmode(mode)) == NULL)
182 newmode = getmode(set, p->fts_statp->st_mode);
/freebsd-11-stable/bin/dd/
H A Dargs.c77 u_int set, noset; member in struct:arg
124 errx(1, "%s: illegal argument combination or already set",
126 ddflags |= ap->set;
135 * just wanted to set both the input and output block sizes
314 u_int set, noset; member in struct:conv
352 ddflags |= cp->set;
/freebsd-11-stable/bin/mkdir/
H A Dmkdir.c66 void *set = NULL; local
95 if ((set = setmode(mode)) == NULL)
97 omode = getmode(set, S_IRWXU | S_IRWXG | S_IRWXO);
98 free(set);
119 * nine bits, so if you try to set a mode including the
/freebsd-11-stable/bin/pax/
H A Dtty_subs.c132 * write a warning message to stderr. if "set" the exit value of pax
137 paxwarn(int set, const char *fmt, ...) argument
141 if (set)
160 * write a warning message to stderr. if "set" the exit value of pax
165 syswarn(int set, int errnum, const char *fmt, ...) argument
169 if (set)
/freebsd-11-stable/bin/sh/
H A Dexpand.c260 * If EXP_GLOB or EXP_CASE are set, keep and/or generate CTLESC
263 * If EXP_SPLIT is set, dst receives any complete words produced.
641 error("%.*s: parameter %snot set", (int)(p - var - 1),
665 int set; local
681 set = 1;
685 set = varisset(var, varflags & VSNUL);
691 set = 0;
693 set = 1;
697 if (!set && uflag && *var != '@' && *var != '*') {
705 error("%.*s: parameter not set", (in
[all...]
H A Dvar.c291 change_env(const char *s, int set) argument
300 if (set && eqp != NULL)
356 * Note: this assumes iflag is not set to 1 initially.
419 * Find the value of a variable. Returns NULL if not set.
587 * Command to list all variables which are set. This is invoked from the
588 * set command when it is called without any options or operands.
933 * vppp is set to the pointer to vp, or the list head if vp isn't found
934 * lenp is set to the number of characters in 'name'
/freebsd-11-stable/bin/stty/
H A Dcchar.c138 ip->set = 1;
H A Dkey.c151 ip->set = 1;
173 ip->set = 1;
182 ip->set = 1;
210 ip->set = 1;
224 ip->set = 1;
232 ip->set = 1;
245 ip->set = 1;
269 ip->set = 1;
H A Dmodes.c47 long set; member in struct:modes
220 ip->t.c_cflag |= mp->set;
221 ip->set = 1;
227 ip->t.c_iflag |= mp->set;
228 ip->set = 1;
234 ip->t.c_lflag |= mp->set;
235 ip->set = 1;
241 ip->t.c_oflag |= mp->set;
242 ip->set = 1;
H A Dstty.c121 for (i.set = i.wset = 0; *argv; ++argv) {
139 i.set = 1;
145 i.set = 1;
153 if (i.set && tcsetattr(i.fd, 0, &i.t) < 0)
H A Dstty.h40 int set; /* need set */ member in struct:info
41 int wset; /* need window set */
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DGetopt.java106 set(String value) method in class:Getopt.StringRef
164 * in longoptarg. Otherwise set the longoptarg reference to null.
196 longoptarg.set(null);
224 longoptarg.set(opt.substring(op + 1));
226 longoptarg.set(null);
421 * The option argument was explicitly set to the empty
441 optarg = longoptarg.set(null).get();
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestDrop.java55 done.set(true);
80 getAggregateThreadID.set(t.getId());
130 consumerThreadID.set(t.getId());
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/
H A Dtst.boolopt.d35 #pragma D option quiet=set
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/
H A Dtst.sigwait.c43 sigset_t set; local
57 (void) sigemptyset(&set);
58 (void) sigaddset(&set, SIGUSR1);
59 (void) sigprocmask(SIG_BLOCK, &set, NULL);
73 (void) sigwait(&set, &sig);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_printf.c419 * field has been specified as left-aligned (i.e. (%-#), we set the
646 * Printf format conversion dictionary. This table should match the set of
764 * just set pfc_ctype to pfc_dtype so it is always valid.
1127 * If this conversion is consuming the aggregation data, set
1357 * If we are formatting an aggregation, set 'aggrec' to the index of
1359 * this record index with any conversion where DT_PFCONV_AGG is set.
1432 return (-1); /* errno is set for us */
1438 return (-1); /* errno is set for us */
1446 return (-1); /* errno is set for us */
1484 * set th
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dallow.py40 """This class represents all the permissions that are set on a
49 # set of perms
50 self.create = set()
52 # below are { "Ntype name": set(perms) }
55 # name is a user, group, or set name, or "" (for everyone)
70 self.sets.setdefault(nwho, set()).update(perms)
96 d.setdefault(nwho, set()).update(perms)
103 # note: these are set operations
113 # is an empty set, due to consolidating all
138 # perms is not set i
[all...]
/freebsd-11-stable/contrib/amd/doc/
H A Dtexinfo.tex117 % Set up fixed words for English if not already set.
190 par-a-digms rath-er rec-tan-gu-lar ro-bot-ics se-vere-ly set-up spa-ces
259 \newdimen\outerhsize \newdimen\outervsize % set by the paper size routines
674 \endgraf % Not \par, as it may have been set to \lisppar.
1095 % can be set). So we test for \relax and 0 as well as being undefined.
1238 % We have to set dummies so commands such as @code, and characters
1355 % Texinfo index files. So set that up.
1390 % it seems we really need yet another set of dummies; have not
1469 % So we set up a \sf.
2103 % of just \STYLE. We do this because \STYLE needs to also set th
[all...]
/freebsd-11-stable/contrib/amd/include/
H A Dam_defs.h1442 # define FD_SET(fd, set) (*(set) |= (1 << (fd)))
1443 # define FD_ISSET(fd, set) (*(set) & (1 << (fd)))
1444 # define FD_CLR(fd, set) (*(set) &= ~(1 << (fd)))
1445 # define FD_ZERO(set) (*(set) = 0)
/freebsd-11-stable/contrib/apr-util/xlate/
H A Dxlate.c229 set found to non-zero if found in the cache
/freebsd-11-stable/contrib/atf/atf-c++/
H A Dbuild_test.cpp70 atf::env::set(var, val);
/freebsd-11-stable/contrib/atf/atf-c++/detail/
H A Dapplication.hpp30 #include <set>
79 typedef std::set< option > options_set;
H A Denv.cpp62 impl::set(const std::string& name, const std::string& val) function in class:impl
H A Denv.hpp62 //! variables set to the empty string are different to undefined ones.
68 void set(const std::string&, const std::string&);
74 //! variables are different to those defined but set to an empty value.

Completed in 344 milliseconds

1234567891011>>