Home
last modified time | relevance | path

Searched full:variable (Results 1 – 25 of 4510) sorted by relevance

12345678910>>...181

/freebsd-13-stable/sys/dev/bhnd/nvram/
HDnvram_map6 # The contents of this file (variable names, descriptions, and offsets) were
23 # NVRAM variable and SPROM layout descriptions.
95 #desc <variable description>
96 #help <variable help>
99 #desc <variable description>
100 #help <variable help>
103 #desc <variable description>
104 #help <variable help>
107 #desc <variable description>
108 #help <variable help>
[all …]
/freebsd-13-stable/contrib/bmake/unit-tests/
HDvar-scope-cmdline.mk11 # variable name once for each lookup. Instead, when looking up the value of
12 # a variable, the search often starts in the global scope since that is where
15 # common case of finding a variable in the global scope, another lookup would
17 # variable there.
22 # Whenever a global variable is created, this creation is ignored if
23 # there is a cmdline variable of the same name.
25 # Whenever a cmdline variable is created, any global variable of the
28 # Whenever a global variable is deleted, nothing special happens.
30 # Deleting a cmdline variable is not possible.
32 # These 4 rules provide the guarantee that whenever a global variable exists,
[all …]
HDmoderrs.exp12 want: Unclosed variable expression, expecting '}' for modifier "S,V,v," of variable "VAR" with valu…
13 make: Unclosed variable expression, expecting '}' for modifier "S,V,v," of variable "VAR" with valu…
17 want: Unclosed variable expression after indirect modifier, expecting '}' for variable "VAR"
18 make: Unclosed variable expression after indirect modifier, expecting '}' for variable "VAR"
36 make: Unclosed variable expression, expecting '}' for modifier "@var@${var}}...@" of variable "UNDE…
48 make: Bad modifier ":[123451234512345123451234512345]" for variable "UNDEF"
70 make: Unclosed variable expression, expecting '}' for modifier "S,from,to," of variable "VAR" with …
85 make: Unclosed variable expression, expecting '}' for modifier "C,from,to," of variable "VAR" with …
92 make: Bad modifier ":ts\65oct" for variable "FIB"
94 make: Bad modifier ":ts\65oct" for variable ""
[all …]
HDcond-func-empty.mk3 # Tests for the empty() function in .if conditions, which tests a variable
6 # Note that the argument in the parentheses is a variable name, not a variable
7 # expression, optionally followed by variable modifiers.
15 # An undefined variable is empty.
20 # An undefined variable has the empty string as the value, and the :M
21 # variable modifier does not change that.
29 # variable (DEF_UNDEF). There are a few variable modifiers that turn an
51 # DEF_UNDEF to decide whether the variable is defined or not. This kind of
55 # But since the variable was undefined to begin with, the fallback value from
62 # The variable EMPTY is completely empty (0 characters).
[all …]
HDvar-op-default.mk3 # Tests for the ?= variable assignment operator, which only assigns
4 # if the variable is still undefined.
6 # The variable VAR is not defined yet. Therefore it gets the default value
7 # from the variable assignment.
13 # At this point, the variable 'VAR' is already defined. The '?=' therefore
14 # ignores the new variable value, preserving the previous "default value".
20 # The '?=' operator only checks whether the variable is defined or not.
21 # An empty variable is defined, therefore the '?=' operator does nothing.
32 # there is never an actual variable named 'i' involved.
34 # Because there is not really a variable named 'i', the '?=' operator
[all …]
HDvar-op-assign.mk3 # Tests for the = variable assignment operator, which overwrites an existing
4 # variable or creates it.
6 # This is a simple variable assignment.
7 # To the left of the assignment operator '=' there is the variable name,
8 # and to the right is the variable value. The variable value is stored as-is,
21 # The variable value can contain arbitrary characters.
28 # another variable.
38 # The variable value may contain references to other variables.
39 # In this example, the reference is to the variable with the empty name,
42 # This alone would not produce any side-effects, therefore the variable has
[all …]
HDvarmod-order.exp1 make: Bad modifier ":OX" for variable "WORDS"
2 make: "varmod-order.mk" line 14: Undefined variable "${WORDS:OX"
3 make: Bad modifier ":OxXX" for variable "WORDS"
4 make: "varmod-order.mk" line 17: Undefined variable "${WORDS:Ox"
5 make: Unclosed variable expression, expecting '}' for modifier "O" of variable "WORDS" with value "…
6 make: Unclosed variable expression, expecting '}' for modifier "On" of variable "NUMBERS" with valu…
7 make: Unclosed variable expression, expecting '}' for modifier "Onr" of variable "NUMBERS" with val…
8 make: Bad modifier ":Oxn" for variable "NUMBERS"
10 make: Bad modifier ":On_typo" for variable "NUMBERS"
12 make: Bad modifier ":Onr_typo" for variable "NUMBERS"
[all …]
HDcond-token-var.mk3 # Tests for variable expressions in .if conditions.
5 # Note the fine distinction between a variable and a variable expression.
6 # A variable has a name and a value. To access the value, one writes a
7 # variable expression of the form ${VAR}. This is a simple variable
8 # expression. Variable expressions can get more complicated by adding
9 # variable modifiers such as in ${VAR:Mpattern}.
11 # XXX: Strictly speaking, variable modifiers should be called expression
12 # modifiers instead since they only modify the expression, not the variable.
14 # of the variable.
18 # A defined variable may appear on either side of the comparison.
[all …]
HDvarmod-loop.mk3 # Tests for the :@var@...${var}...@ variable modifier.
14 # Even "@" works as a variable name since the variable is installed
27 # since the $@ at the end could have been interpreted as a variable, which
38 # for the loop variable. These modifiers influence each other.
41 # variable in the scope of the expression and deleting it again after the
42 # loop. This is different from the .for loops, which substitute the variable
46 # loop variable to the value it had before the loop. This would result in
52 # During the loop, the variable is actually defined and nonempty.
53 # If the loop were implemented in the same way as the .for loop, the variable
71 # variable value. But as soon as this value is evaluated, it goes through
[all …]
HDdirective-export-impl.mk11 # VarFlags.exported (per variable)
12 # VarFlags.reexport (per variable)
19 # This is a variable that references another variable. At this point, the
20 # other variable is still undefined.
24 # variable value refers to another variable, ExportVar does not actually
25 # export the variable but only marks it as VarFlags.exported and
26 # VarFlags.reexport. After that, ExportVars registers the variable name in
36 # variables exported. Since this variable has both of the above-mentioned
37 # flags set, it is actually exported to the environment. The variable flags
40 # variable will be exported anew for each ':sh' modifier, ':!...!' modifier,
[all …]
HDvar-op-expand.mk3 # Tests for the := variable assignment operator, which expands its
23 # variable expressions based on undefined variables are preserved though.
25 # Whether a variable expression is undefined or not is determined at the end
28 # the variable named "", which is guaranteed to be never defined, but at the
40 # reference to a variable containing a literal dollar sign
49 # reference to an undefined variable
58 # reference to a variable whose name is computed from another variable
68 # expression with an indirect modifier referring to an undefined variable
77 # expression with an indirect modifier referring to another variable that
78 # in turn refers to an undefined variable
[all …]
/freebsd-13-stable/contrib/bmake/
HDmake.142 .Op Fl D Ar variable
50 .Op Fl V Ar variable
51 .Op Fl v Ar variable
52 .Op Ar variable=value
82 environment variable to the command line arguments before parsing them.
99 .It Fl D Ar variable
101 .Ar variable
111 environment variable and will be processed by any child make processes.
175 This will throw errors for variable assignments that do not parse
193 environment variable, or in
[all …]
HDbmake.142 .Op Fl D Ar variable
50 .Op Fl V Ar variable
51 .Op Fl v Ar variable
52 .Op Ar variable=value
82 environment variable to the command line arguments before parsing them.
99 .It Fl D Ar variable
101 .Ar variable
111 environment variable and will be processed by any child make processes.
175 This will throw errors for variable assignments that do not parse
193 environment variable, or in
[all …]
/freebsd-13-stable/contrib/libfido2/windows/
HDconst.ps17 New-Variable -Name 'LIBRESSL_URL' `
10 New-Variable -Name 'LIBRESSL' -Value 'libressl-3.6.2' -Option Constant
11 New-Variable -Name 'CRYPTO_LIBRARIES' -Value 'crypto-50' -Option Constant
14 New-Variable -Name 'LIBCBOR' -Value 'libcbor-0.10.1' -Option Constant
15 New-Variable -Name 'LIBCBOR_BRANCH' -Value 'v0.10.1' -Option Constant
16 New-Variable -Name 'LIBCBOR_GIT' -Value 'https://github.com/pjk/libcbor' `
20 New-Variable -Name 'ZLIB' -Value 'zlib-1.2.13' -Option Constant
21 New-Variable -Name 'ZLIB_BRANCH' -Value 'v1.2.13' -Option Constant
22 New-Variable -Name 'ZLIB_GIT' -Value 'https://github.com/madler/zlib' `
26 New-Variable -Name 'BUILD' -Value "$PSScriptRoot\..\build" -Option Constant
[all …]
/freebsd-13-stable/crypto/heimdal/lib/asn1/
HDgen_length.c41 const char *variable) in length_primitive() argument
43 fprintf (codefile, "%s += der_length_%s(%s);\n", variable, typename, name); in length_primitive()
64 const char *variable, const char *tmpstr) in length_type() argument
72 variable, t->symbol->gen_name, name); in length_type()
79 length_primitive ("integer", "&enumint", variable); in length_type()
82 length_primitive ("heim_integer", name, variable); in length_type()
84 length_primitive ("integer64", name, variable); in length_type()
86 length_primitive ("unsigned64", name, variable); in length_type()
88 length_primitive ("integer", name, variable); in length_type()
90 length_primitive ("unsigned", name, variable); in length_type()
[all …]
/freebsd-13-stable/contrib/kyua/utils/
HDenv.cpp78 /// Gets the value of an environment variable.
80 /// \param name The name of the environment variable to query.
82 /// \return The value of the environment variable if it is defined, or none
89 LD(F("Environment variable '%s' is not defined") % name); in getenv()
92 LD(F("Environment variable '%s' is '%s'") % name % value); in getenv()
98 /// Gets the value of an environment variable with a default fallback.
100 /// \param name The name of the environment variable to query.
101 /// \param default_value The value to return if the variable is not defined.
103 /// \return The value of the environment variable.
110 LD(F("Environment variable '%s' is not defined; using default '%s'") % in getenv_with_default()
[all …]
/freebsd-13-stable/share/man/man3/
HDATOMIC_VAR_INIT.3111 macro initializes the atomic variable
120 macro returns the value of atomic variable
124 macro sets the atomic variable
136 It sets the atomic variable
140 and returns the original contents of the atomic variable.
146 value into atomic variable
148 only if the atomic variable is equal to its
155 value is overwritten with the value of the atomic variable and
162 but is allowed to fail even if atomic variable
172 to atomic variable
[all …]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
HDSBEnvironment.h26 /// Return the value of a given environment variable.
29 /// The name of the environment variable.
32 /// The value of the environment variable or null if not present.
33 /// If the environment variable has no value but is present, a valid
41 /// Return the name of the environment variable at a given index from the
45 /// The index of the environment variable in the internal list.
51 /// Return the value of the environment variable at a given index from the
55 /// The index of the environment variable in the internal list.
59 /// If the environment variable has no value but is present, a valid
63 /// Return all environment variables contained in this object. Each variable
[all …]
/freebsd-13-stable/share/man/man9/
HDgetenv.946 .Nd kernel environment variable functions
84 function obtains the current value of the kernel environment variable
118 function inserts or resets the kernel environment variable
122 If the variable
131 function deletes the kernel environment variable
136 function is used to determine if a kernel environment variable exists.
137 It returns a non-zero value if the variable
148 functions look for a kernel environment variable
160 these function store the parsed value in the integer variable pointed to
190 function stores a copy of the kernel environment variable
[all …]
/freebsd-13-stable/contrib/bsnmp/snmpd/
HDbsnmpd.148 .Op Fl m Ar variable Ns Op = Ns Ar value
101 .It Fl m Ar variable Ns Op = Ns Ar value
102 Define a configuration variable.
113 variable assignments
119 MIB variable assignments
128 All MIB variable assignments of the entire configuration (including nested
142 .Ss VARIABLE ASSIGNMENTS
143 Variable assignments can take one of two forms:
145 variable := string
146 variable ?= string
[all …]
/freebsd-13-stable/usr.sbin/efivar/
HDefivar.830 .Nd UEFI environment variable interaction
64 The name is a Unicode name for the variable.
71 Specify the name of the variable to operate on.
74 argument is the GUID of the variable, followed by a dash, followed by the
75 UEFI variable name.
81 When writing or appending to a variable, take the data for the
82 variable's value from
99 variable decoding.
101 Append the specified value to the UEFI variable rather than replacing
105 variable.
[all …]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
HDVariable.h1 //===-- Variable.h -----------------------------------------------*- C++-*-===//
25 class Variable : public UserID, public std::enable_shared_from_this<Variable> {
31 /// \param mangled The mangled or fully qualified name of the variable.
32 Variable(lldb::user_id_t uid, const char *name, const char *mangled,
39 virtual ~Variable();
53 /// Since a variable can have a basename "i" and also a mangled named
116 /// The basename of the variable (no namespaces).
118 /// The mangled name of the variable.
120 /// The type pointer of the variable (int, struct, class, etc)
124 /// The symbol file scope that this variable was defined in
[all …]
/freebsd-13-stable/contrib/apr/include/
HDapr_thread_cond.h22 * @brief APR Condition Variable Routines
38 * @defgroup apr_thread_cond Condition Variable Routines
47 * Note: destroying a condition variable (or likewise, destroying or
48 * clearing the pool from which a condition variable was allocated) if
53 * Create and initialize a condition variable that can be used to signal
55 * @param cond the memory address where the newly created condition variable
64 * condition variable must be associated with a mutex, and that mutex must
69 * @param cond the condition variable on which to block.
74 * a condition variable, the caller should test whether the condition is already
82 * the timeout is reached. Each condition variable must be associated
[all …]
/freebsd-13-stable/share/doc/psd/12.make/
HDtutorial.ms192 Variable assignments
540 In fact there's nothing to stop you from calling a variable
543 .Ix 0 def variable assignment
545 VARIABLE = value
547 .Ix 0 def variable assignment
550 VARIABLE += value
552 .Ix 0 def variable appending
553 .Ix 0 def variable assignment appended
555 conditionally assigned-to (if the variable isn't already defined) by
557 VARIABLE ?= value
[all …]
/freebsd-13-stable/contrib/bmake/PSD.doc/
HDtutorial.ms244 Variable assignments
592 In fact there's nothing to stop you from calling a variable
595 .Ix 0 def variable assignment
597 VARIABLE = value
599 .Ix 0 def variable assignment
602 VARIABLE += value
604 .Ix 0 def variable appending
605 .Ix 0 def variable assignment appended
607 conditionally assigned-to (if the variable isn't already defined) by
609 VARIABLE ?= value
[all …]

12345678910>>...181