Lines Matching full:parameter

34 /* One for each parameter, describing how to use it.  Some files do
82 * module_param - typesafe helper for a module/cmdline parameter
83 * @value: the variable to alter, and exposed parameter name.
84 * @type: the type of the parameter
87 * @value becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
88 * ".") the kernel commandline parameter. Note that - is changed to _, so
110 * module_param_named - typesafe helper for a renamed module/cmdline parameter
111 * @name: a valid C identifier which is the parameter name.
113 * @type: the type of the parameter
126 * module_param_cb - general callback for a module/cmdline parameter
127 * @name: a valid C identifier which is the parameter name.
128 * @ops: the set & get operations for this parameter.
178 * kparam_block_sysfs_write - make sure a parameter isn't written via sysfs.
179 * @name: the name of the parameter
190 * kparam_unblock_sysfs_write - allows sysfs to write to a parameter again.
191 * @name: the name of the parameter
200 * kparam_block_sysfs_read - make sure a parameter isn't read via sysfs.
201 * @name: the name of the parameter
212 * kparam_unblock_sysfs_read - allows sysfs to read a parameter again.
213 * @name: the name of the parameter
235 * core_param - define a historical core kernel parameter.
236 * @name: the name of the cmdline and sysfs parameter (often the same as var)
238 * @type: the type of the parameter
253 * module_param_string - a char array parameter
254 * @name: the name of the parameter
271 * parameq - checks if two parameter names match
272 * @name1: parameter name 1
273 * @name2: parameter name 2
275 * Returns true if the two parameter names are equal.
281 * parameqn - checks if two parameter names match
282 * @name1: parameter name 1
283 * @name2: parameter name 2
371 * module_param_array - a parameter which is an array of some type
387 * module_param_array_named - renamed parameter which is an array of some type
388 * @name: a valid C identifier which is the parameter name