/freebsd/crypto/heimdal/doc/ |
H A D | whatis.texi | 65 they claim to be. In the following example, @var{A} is the initiator of 66 the authentication exchange, usually a user, and @var{B} is the service 67 that @var{A} wishes to use. 69 To obtain a ticket for a specific service, @var{A} sends a ticket 70 request to the kerberos server. The request contains @var{A}'s and 71 @var{B}'s names (along with some other fields). The kerberos server 72 checks that both @var{A} and @var{B} are valid principals. 75 containing @var{A}'s and @var{B}'s names, @var{A}'s network address 76 (@var{A@sub{addr}}), the current time (@var{t@sub{issue}}), the lifetime 77 of the ticket (@var{life}), and a secret @dfn{session key} [all …]
|
/freebsd/contrib/expat/doc/ |
H A D | ok.min.css | 2 …var(--ok-sans);line-sizing:normal;line-height:var(--ok-lh-body);font-weight:var(--ok-fw-0);color:v… selector
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/struct/ |
H A D | tst.StructDataTypes.d | 88 } var; variable 91 var.pointer = &`kmem_flags; 95 var.new_char = 'c'; 96 var.new_short = 10; 97 var.new_int = 100; 98 var.new_long = 1234567890; 99 var.new_long_long = 1234512345; 100 var.new_int8 = 'p'; 101 var.new_int16 = 20; 102 var.new_int32 = 200; [all …]
|
/freebsd/sys/contrib/vchiq/interface/compat/ |
H A D | list.h | 211 #define list_for_each(VAR, HEAD) \ argument 212 for ((VAR) = list_first((HEAD)); \ 213 (VAR) != (HEAD); \ 214 (VAR) = list_next((VAR))) 216 #define list_for_each_safe(VAR, NEXT, HEAD) \ argument 217 for ((VAR) = list_first((HEAD)); \ 218 ((VAR) != (HEAD)) && ((NEXT) = list_next((VAR)), 1); \ 219 (VAR) = (NEXT)) 221 #define list_for_each_entry(VAR, HEAD, FIELD) \ argument 222 for ((VAR) = list_entry(list_first((HEAD)), typeof(*(VAR)), FIELD); \ [all …]
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/union/ |
H A D | tst.UnionDataTypes.d | 88 } var; variable 91 var.pointer = &`kmem_flags; 95 var.new_char = 'c'; 96 var.new_short = 10; 97 var.new_int = 100; 98 var.new_long = 1234567890; 99 var.new_long_long = 1234512345; 100 var.new_int8 = 'p'; 101 var.new_int16 = 20; 102 var.new_int32 = 200; [all …]
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | var-scope-local.mk | 1 # $NetBSD: var-scope-local.mk,v 1.11 2024/03/05 23:07:58 rillig Exp $ 11 # 'target: VAR=value', one at a time. 91 # expressions like ${@}, ${.TARGET} ${VAR:Mpattern} (see Var_Parse, 164 # expect: : Making var-scope-local.c out of nothing. 165 var-scope-local.c: 170 # expect: : Making var-scope-local.o from var-scope-local.c. 171 # expect: : Making basename "var-scope-local.o" in "." from "var-scope-local.c" in ".". 180 all: var [all...] |
H A D | moderrs.mk | 5 VAR= TheVariable 28 # expect: make: in target "mod-unknown-direct": while evaluating variable "VAR" with value "TheVari… 29 @echo 'VAR:Z=before-${VAR:Z}-after' 32 # expect: make: in target "mod-unknown-indirect": while evaluating variable "VAR" with value "TheVa… 33 @echo 'VAR:${MOD_UNKN}=before-${VAR:${MOD_UNKN}:inner}-after' 36 # expect: make: in target "unclosed-direct": while evaluating variable "VAR" with value "Thevariabl… 37 @echo VAR:S,V,v,=${VAR:S,V,v, 40 # expect: make: in target "unclosed-indirect": while evaluating variable "VAR" with value "Thevaria… 41 @echo VAR:${MOD_TERM},=${VAR:${MOD_S} 44 # expect: make: in target "unfinished-indirect": while evaluating variable "VAR" with value "TheVar… [all …]
|
H A D | vardebug.exp | 4 Global: VAR = added 5 Global: VAR = overwritten 6 Global: delete VAR 7 Global: ignoring delete 'VAR' as it is not found 11 Global: VAR = 1 12 Global: VAR = 1 2 13 Global: VAR = 1 2 3 14 Var_Parse: ${VAR:M[2]} (eval-defined) 15 Evaluating modifier ${VAR:M...} on value "1 2 3" 18 Result of ${VAR:M[2]} is "2" [all …]
|
H A D | vardebug.mk | 3 # Demonstrates the debugging output for var.c. 7 # expect: Global: VAR = added 8 VAR= added # VarAdd 9 # expect: Global: VAR = overwritten 10 VAR= overwritten # Var_Set 11 # expect: Global: delete VAR 12 .undef VAR 13 # expect: Global: ignoring delete 'VAR' as it is not found 14 .undef VAR 24 # expect: Global: VAR = 1 [all …]
|
H A D | varname-dot-make-save_dollars.mk | 8 # var-op-expand.mk for ':=' in general 24 VAR:= ${DOLLARS} 25 # The reduction from 8 '$' to 4 '$' happens when ${VAR} is evaluated in the 28 .if ${VAR} != "\$\$\$\$" 36 VAR:= ${DOLLARS} 37 .if ${VAR} != "\$\$" 43 VAR:= $$$$$$$$ 44 .if ${VAR} != "\$\$\$\$" 50 VAR:= $$$$$$$$ 51 .if ${VAR} != "\$\$" [all …]
|
H A D | var-op-sunsh.mk | 1 # $NetBSD: var-op-sunsh.mk,v 1.10 2022/02/09 21:09:24 rillig Exp $ 11 VAR:sh= echo colon-sh 12 .if ${VAR} != "colon-sh" 18 VAR :sh = echo colon-sh-spaced 19 .if ${VAR} != "colon-sh-spaced" 28 # 'VAR:shell', using the '=' assignment operator. 29 VAR:shell= echo colon-shell 42 VAR:shoe:shore= echo two-colons 57 VAR.${:Uecho 123:sh}= ok-123 58 .if ${VAR.123} != "ok-123" [all …]
|
/freebsd/tools/tools/ath/athprom/ |
H A D | athprom.c | 487 eevar(FILE *fd, const char *var) in eevar() argument 491 if (streq(var, "mode")) { in eevar() 496 } else if (streq(var, "version")) { in eevar() 498 } else if (streq(var, "V_major")) { in eevar() 500 } else if (streq(var, "V_minor")) { in eevar() 502 } else if (streq(var, "earStart")) { in eevar() 504 } else if (streq(var, "tpStart")) { in eevar() 506 } else if (streq(var, "eepMap")) { in eevar() 508 } else if (streq(var, "exist32KHzCrystal")) { in eevar() 510 } else if (streq(var, "eepMap2PowerCalStart")) { in eevar() [all …]
|
/freebsd/share/mk/ |
H A D | bsd.mkopt.mk | 47 .for var in ${__DEFAULT_YES_OPTIONS} 48 .if !defined(MK_${var}) 49 .if defined(WITH_${var}) && ${WITH_${var}} == "no" 50 .warning Use WITHOUT_${var}=1 instead of WITH_${var}=no 52 .if defined(WITHOUT_${var}) # WITHOUT always wins 53 MK_${var}:= no 55 MK_${var}:= yes 58 .if ${MK_${var}} != "yes" && ${MK_${var}} != "no" 59 .error Illegal value for MK_${var}: ${MK_${var}} 61 .endif # !defined(MK_${var}) [all …]
|
/freebsd/contrib/libarchive/unzip/ |
H A D | la_queue.h | 201 #define SLIST_FOREACH(var, head, field) \ argument 202 for ((var) = SLIST_FIRST((head)); \ 203 (var); \ 204 (var) = SLIST_NEXT((var), field)) 206 #define SLIST_FOREACH_FROM(var, head, field) \ argument 207 for ((var) = ((var) ? (var) : SLIST_FIRST((head))); \ 208 (var); \ 209 (var) = SLIST_NEXT((var), field)) 211 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument 212 for ((var) = SLIST_FIRST((head)); \ [all …]
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | moduleparam.h | 55 #define LINUXKPI_PARAM_bool(name, var, perm) \ argument 58 LINUXKPI_PARAM_NAME(name), LINUXKPI_PARAM_PERM(perm), &(var), 0, \ 61 #define LINUXKPI_PARAM_byte(name, var, perm) \ argument 64 LINUXKPI_PARAM_NAME(name), LINUXKPI_PARAM_PERM(perm), &(var), 0, \ 67 #define LINUXKPI_PARAM_short(name, var, perm) \ argument 70 LINUXKPI_PARAM_NAME(name), LINUXKPI_PARAM_PERM(perm), &(var), 0, \ 73 #define LINUXKPI_PARAM_ushort(name, var, perm) \ argument 76 LINUXKPI_PARAM_NAME(name), LINUXKPI_PARAM_PERM(perm), &(var), 0, \ 79 #define LINUXKPI_PARAM_int(name, var, perm) \ argument 82 LINUXKPI_PARAM_NAME(name), LINUXKPI_PARAM_PERM(perm), &(var), 0,\ [all …]
|
/freebsd/libexec/rc/rc.d/ |
H A D | var | 29 # PROVIDE: var 32 # NFS /var is not supported, unless NFS /var is part of diskless NFS / 36 name="var" 37 desc="Populate /var directory" 47 /usr/sbin/mtree -deiU -f /etc/mtree/BSD.var.dist -p /var > /dev/null 57 # If we do not have a writable /var, create a memory filesystem for /var 60 # have to make sure /var/db exists before doing the mount -a. 64 mount_md ${varsize} /var "${varmfs_flags}" 69 if /bin/mkdir -p /var/.diskless 2> /dev/null; then 70 rmdir /var/.diskless [all …]
|
/freebsd/sys/conf/ |
H A D | kern.opts.mk | 111 .for var in ${__DEFAULT_YES_OPTIONS} 112 .if !defined(MK_${var}) 113 .if defined(WITHOUT_${var}) # WITHOUT always wins 114 MK_${var}:= no 116 MK_${var}:= yes 119 .if ${MK_${var}} != "yes" && ${MK_${var}} != "no" 120 .error "Illegal value for MK_${var}: ${MK_${var}}" 122 .endif # !defined(MK_${var}) 127 .for var in ${__DEFAULT_NO_OPTIONS} 128 .if !defined(MK_${var}) [all …]
|
/freebsd/sys/sys/ |
H A D | queue.h | 231 #define SLIST_FOREACH(var, head, field) \ argument 232 for ((var) = SLIST_FIRST((head)); \ 233 (var); \ 234 (var) = SLIST_NEXT((var), field)) 236 #define SLIST_FOREACH_FROM(var, head, field) \ argument 237 for ((var) = ((var) ? (var) : SLIST_FIRST((head))); \ 238 (var); \ 239 (var) = SLIST_NEXT((var), field)) 241 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument 242 for ((var) = SLIST_FIRST((head)); \ [all …]
|
/freebsd/usr.bin/usbhidctl/ |
H A D | usbhid.c | 74 struct variable *var, **pnext; in parceargs() local 103 var = malloc(sizeof(*var)); in parceargs() 104 memset(var, 0, sizeof(*var)); in parceargs() 105 asprintf(&var->name, "%s%s%s:%s", in parceargs() 109 var->h = h; in parceargs() 110 *pnext = var; in parceargs() 111 pnext = &var->next; in parceargs() 117 var = malloc(sizeof(*var)); in parceargs() 118 memset(var, 0, sizeof(*var)); in parceargs() 121 var->name = strsep(&tmp1, "#"); in parceargs() [all …]
|
/freebsd/usr.sbin/syslogd/ |
H A D | syslog.conf | 8 *.notice;authpriv.none;kern.debug;lpr.info;mail.crit;news.err /var/log/messages 9 security.* /var/log/security 10 auth.info;authpriv.info /var/log/auth.log 11 mail.info /var/log/maillog 12 cron.* /var/log/cron 14 *.=debug /var/log/debug.log 16 daemon.info /var/log/daemon.log 17 # uncomment this to log all writes to /dev/console to /var/log/console.log 18 # touch /var/log/console.log and chmod it to mode 600 before it will work 19 #console.info /var/log/console.log [all …]
|
/freebsd/sys/netinet/tcp_stacks/ |
H A D | tailq_hash.h | 63 #define TQHASH_FOREACH(var, head) \ argument 64 for ((var) = tqhash_min((head)); \ 65 (var); \ 66 (var) = tqhash_next((head), (var))) 68 #define TQHASH_FOREACH_FROM(var, head, fvar) \ argument 69 for ((var) = ((fvar) ? (fvar) : tqhash_min((head))); \ 70 (var); \ 71 (var) = tqhash_next((head), (var))) 73 #define TQHASH_FOREACH_REVERSE_FROM(var, head) \ argument 74 for ((var) = ((var) ? (var) : tqhash_max((head))); \ [all …]
|
/freebsd/lib/libefivar/ |
H A D | efivar.c | 124 efi_var_reset(struct efi_var_ioc *var) in efi_var_reset() argument 126 var->name = NULL; in efi_var_reset() 127 var->namesize = 0; in efi_var_reset() 128 memset(&var->vendor, 0, sizeof(var->vendor)); in efi_var_reset() 129 var->attrib = 0; in efi_var_reset() 130 var->data = NULL; in efi_var_reset() 131 var->datasize = 0; in efi_var_reset() 165 struct efi_var_ioc var; in efi_get_variable() local 172 efi_var_reset(&var); in efi_get_variable() 173 rv = utf8_to_ucs2(name, &var.name, &var.namesize); in efi_get_variable() [all …]
|
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/ |
H A D | mod_os.h | 55 #define param_set_arc_u64_args(var) \ argument 56 CTLTYPE_U64, &var, 0, param_set_arc_u64, "QU" 58 #define param_set_arc_int_args(var) \ argument 59 CTLTYPE_INT, &var, 0, param_set_arc_int, "I" 61 #define param_set_arc_min_args(var) \ argument 64 #define param_set_arc_max_args(var) \ argument 67 #define param_set_arc_free_target_args(var) \ argument 70 #define param_set_arc_no_grow_shift_args(var) \ argument 73 #define param_set_deadman_failmode_args(var) \ argument 76 #define param_set_active_allocator_args(var) \ argument [all …]
|
/freebsd/contrib/openresolv/ |
H A D | configure | 15 var=${x#*=} 17 --os|OS) OS=$var;; 18 --with-cc|CC) CC=$var;; 19 --debug) DEBUG=$var;; 22 --prefix) PREFIX=$var;; 23 --sysconfdir) SYSCONFDIR=$var;; 24 --bindir|--sbindir) SBINDIR=$var;; 25 --libexecdir) LIBEXECDIR=$var;; 26 --statedir|--localstatedir) STATEDIR=$var;; 27 --dbdir) DBDIR=$var;; [all …]
|
/freebsd/share/man/man3/ |
H A D | queue.3 | 133 .Fn SLIST_FOREACH "TYPE *var" "SLIST_HEAD *head" "SLIST_ENTRY NAME" 134 .Fn SLIST_FOREACH_FROM "TYPE *var" "SLIST_HEAD *head" "SLIST_ENTRY NAME" 135 .Fn SLIST_FOREACH_FROM_SAFE "TYPE *var" "SLIST_HEAD *head" "SLIST_ENTRY NAME" "TYPE *temp_var" 136 .Fn SLIST_FOREACH_SAFE "TYPE *var" "SLIST_HEAD *head" "SLIST_ENTRY NAME" "TYPE *temp_var" 154 .Fn STAILQ_FOREACH "TYPE *var" "STAILQ_HEAD *head" "STAILQ_ENTRY NAME" 155 .Fn STAILQ_FOREACH_FROM "TYPE *var" "STAILQ_HEAD *head" "STAILQ_ENTRY NAME" 156 .Fn STAILQ_FOREACH_FROM_SAFE "TYPE *var" "STAILQ_HEAD *head" "STAILQ_ENTRY NAME" "TYPE *temp_var" 157 .Fn STAILQ_FOREACH_SAFE "TYPE *var" "STAILQ_HEAD *head" "STAILQ_ENTRY NAME" "TYPE *temp_var" 177 .Fn LIST_FOREACH "TYPE *var" "LIST_HEAD *head" "LIST_ENTRY NAME" 178 .Fn LIST_FOREACH_FROM "TYPE *var" "LIST_HEAD *head" "LIST_ENTRY NAME" [all …]
|