Lines Matching full:parameter

31 /* One for each parameter, describing how to use it.  Some files do
41 * NOARG - the parameter allows for no argument (foo instead of foo=1)
61 * UNSAFE - the parameter is dangerous and setting it will taint the kernel
102 * module_param - typesafe helper for a module/cmdline parameter
103 * @value: the variable to alter, and exposed parameter name.
104 * @type: the type of the parameter
107 * @value becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
108 * ".") the kernel commandline parameter. Note that - is changed to _, so
136 * module_param_named - typesafe helper for a renamed module/cmdline parameter
137 * @name: a valid C identifier which is the parameter name.
139 * @type: the type of the parameter
160 * module_param_cb - general callback for a module/cmdline parameter
161 * @name: a valid C identifier which is the parameter name.
162 * @ops: the set & get operations for this parameter.
175 * <level>_param_cb - general callback for a module/cmdline parameter
177 * @name: a valid C identifier which is the parameter name.
178 * @ops: the set & get operations for this parameter.
249 * core_param - define a historical core kernel parameter.
250 * @name: the name of the cmdline and sysfs parameter (often the same as var)
252 * @type: the type of the parameter
275 * module_param_string - a char array parameter
276 * @name: the name of the parameter
293 * parameq - checks if two parameter names match
294 * @name1: parameter name 1
295 * @name2: parameter name 2
297 * Returns true if the two parameter names are equal.
303 * parameqn - checks if two parameter names match
304 * @name1: parameter name 1
305 * @name2: parameter name 2
409 * module_param_array - a parameter which is an array of some type
425 * module_param_array_named - renamed parameter which is an array of some type
426 * @name: a valid C identifier which is the parameter name
448 hwparam_ioport, /* Module parameter configures an I/O port */
449 hwparam_iomem, /* Module parameter configures an I/O mem address */
450 hwparam_ioport_or_iomem, /* Module parameter could be either, depending on other option */
451 hwparam_irq, /* Module parameter configures an IRQ */
452 hwparam_dma, /* Module parameter configures a DMA channel */
453 hwparam_dma_addr, /* Module parameter configures a DMA buffer address */
454 hwparam_other, /* Module parameter configures some other value */
458 * module_param_hw_named - A parameter representing a hw parameters
459 * @name: a valid C identifier which is the parameter name.
461 * @type: the type of the parameter
481 * module_param_hw_array - A parameter representing an array of hw parameters