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 * @name: the variable to alter, and exposed parameter name.
104 * @type: the type of the parameter
107 * @name becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
108 * ".") the kernel commandline parameter. Note that - is changed to _, so
131 * @name: the variable to alter, and exposed parameter name.
132 * @type: the type of the parameter
139 * module_param_named - typesafe helper for a renamed module/cmdline parameter
140 * @name: a valid C identifier which is the parameter name.
142 * @type: the type of the parameter
156 * @name: a valid C identifier which is the parameter name.
158 * @type: the type of the parameter
167 * module_param_cb - general callback for a module/cmdline parameter
168 * @name: a valid C identifier which is the parameter name.
169 * @ops: the set & get operations for this parameter.
185 * core_param_cb - general callback for a module/cmdline parameter
187 * @name: a valid C identifier which is the parameter name.
188 * @ops: the set & get operations for this parameter.
198 * postcore_param_cb - general callback for a module/cmdline parameter
200 * @name: a valid C identifier which is the parameter name.
201 * @ops: the set & get operations for this parameter.
211 * arch_param_cb - general callback for a module/cmdline parameter
213 * @name: a valid C identifier which is the parameter name.
214 * @ops: the set & get operations for this parameter.
224 * subsys_param_cb - general callback for a module/cmdline parameter
226 * @name: a valid C identifier which is the parameter name.
227 * @ops: the set & get operations for this parameter.
237 * fs_param_cb - general callback for a module/cmdline parameter
239 * @name: a valid C identifier which is the parameter name.
240 * @ops: the set & get operations for this parameter.
250 * device_param_cb - general callback for a module/cmdline parameter
252 * @name: a valid C identifier which is the parameter name.
253 * @ops: the set & get operations for this parameter.
263 * late_param_cb - general callback for a module/cmdline parameter
265 * @name: a valid C identifier which is the parameter name.
266 * @ops: the set & get operations for this parameter.
298 * parameter). For repeated set/get pairs (i.e. the same struct
321 * core_param - define a historical core kernel parameter.
322 * @name: the name of the cmdline and sysfs parameter (often the same as var)
324 * @type: the type of the parameter
338 * @name: the name of the cmdline and sysfs parameter (often the same as var)
340 * @type: the type of the parameter
351 * module_param_string - a char array parameter
352 * @name: the name of the parameter
369 * parameq - checks if two parameter names match
370 * @name1: parameter name 1
371 * @name2: parameter name 2
373 * Returns true if the two parameter names are equal.
379 * parameqn - checks if two parameter names match
380 * @name1: parameter name 1
381 * @name2: parameter name 2
492 * module_param_array - a parameter which is an array of some type
508 * module_param_array_named - renamed parameter which is an array of some type
509 * @name: a valid C identifier which is the parameter name
531 hwparam_ioport, /* Module parameter configures an I/O port */
532 hwparam_iomem, /* Module parameter configures an I/O mem address */
533 hwparam_ioport_or_iomem, /* Module parameter could be either, depending on other option */
534 hwparam_irq, /* Module parameter configures an IRQ */
535 hwparam_dma, /* Module parameter configures a DMA channel */
536 hwparam_dma_addr, /* Module parameter configures a DMA buffer address */
537 hwparam_other, /* Module parameter configures some other value */
541 * module_param_hw_named - A parameter representing a hw parameters
542 * @name: a valid C identifier which is the parameter name.
544 * @type: the type of the parameter
564 * module_param_hw_array - A parameter representing an array of hw parameters