| /kernel/linux/linux-6.6/drivers/acpi/acpica/ |
| D | nsarguments.c | 4 * Module Name: nsarguments - Validation of args for ACPI predefined methods 27 * against the argument type list for a predefined name. 39 * If not a predefined name, cannot typecheck args, because in acpi_ns_check_argument_types() 45 if (!info->predefined || (info->node->flags & ANOBJ_EVALUATED)) { in acpi_ns_check_argument_types() 49 arg_type_list = info->predefined->info.argument_list; in acpi_ns_check_argument_types() 83 * predefined - Pointer to entry in predefined name table 88 * predefined name is what is expected (matches what is defined in 89 * the ACPI specification for this predefined name.) 96 const union acpi_predefined_info *predefined) in acpi_ns_check_acpi_compliance() argument 101 if (!predefined || (node->flags & ANOBJ_EVALUATED)) { in acpi_ns_check_acpi_compliance() [all …]
|
| D | utpredef.c | 4 * Module Name: utpredef - support functions for predefined names 18 * Names for the types that can be returned by the predefined objects. 33 * PARAMETERS: this_name - Entry in the predefined method/name table 35 * RETURN: Pointer to next entry in predefined table. 67 * RETURN: Pointer to entry in predefined table. NULL indicates not found. 69 * DESCRIPTION: Check an object name against the predefined object list. 77 /* Quick check for a predefined name, first character must be underscore */ in acpi_ut_match_predefined_method() 83 /* Search info table for a predefined method/object name */ in acpi_ut_match_predefined_method() 150 /* Types that can be returned externally by a predefined name */ 161 /* Bit widths for resource descriptor predefined names */ [all …]
|
| D | nspredef.c | 4 * Module Name: nspredef - Validation of ACPI predefined methods and objects 22 * This module validates predefined ACPI objects that appear in the namespace, 24 * validation is to detect problems with BIOS-exposed predefined ACPI objects 60 * DESCRIPTION: Check the value returned from a predefined name. 72 const union acpi_predefined_info *predefined; in acpi_ns_check_return_value() local 76 /* If not a predefined name, we cannot validate the return object */ in acpi_ns_check_return_value() 78 predefined = info->predefined; in acpi_ns_check_return_value() 79 if (!predefined) { in acpi_ns_check_return_value() 105 (!predefined->info.expected_btypes) || in acpi_ns_check_return_value() 106 (predefined->info.expected_btypes == ACPI_RTYPE_ALL)) { in acpi_ns_check_return_value() [all …]
|
| D | nsrepair.c | 4 * Module Name: nsrepair - Repair for objects returned by predefined methods 23 * predefined methods to an object type that is expected, as per the ACPI 25 * return incorrect types for the standard predefined methods. Performing these 128 const struct acpi_simple_repair_info *predefined; in acpi_ns_simple_repair() local 136 predefined = acpi_ns_match_simple_repair(info->node, in acpi_ns_simple_repair() 139 if (predefined) { in acpi_ns_simple_repair() 146 status = predefined->object_converter(info->node, return_object, in acpi_ns_simple_repair() 171 * one of the expected types for this predefined name. Attempt to in acpi_ns_simple_repair() 173 * types for this predefined name. in acpi_ns_simple_repair() 178 * this predefined name. Either one return value is expected, or none, in acpi_ns_simple_repair() [all …]
|
| D | nseval.c | 89 /* Get info if we have a predefined name (_HID, etc.) */ in acpi_ns_evaluate() 91 info->predefined = in acpi_ns_evaluate() 130 * For predefined names: Check that the declared argument count in acpi_ns_evaluate() 134 info->predefined); in acpi_ns_evaluate() 141 info->param_count, info->predefined); in acpi_ns_evaluate() 143 /* For predefined names: Typecheck all incoming arguments */ in acpi_ns_evaluate() 258 * For predefined names, check the return value against the ACPI in acpi_ns_evaluate()
|
| D | acnamesp.h | 211 * nsarguments - Argument count/type checking for predefined/reserved names 222 const union acpi_predefined_info *predefined); 227 * nspredef - Return value checking for predefined/reserved names 242 * nsprepkg - Validation of predefined name packages 320 * predefined methods/objects 346 * predefined methods/objects
|
| /kernel/linux/linux-5.10/drivers/acpi/acpica/ |
| D | nsarguments.c | 4 * Module Name: nsarguments - Validation of args for ACPI predefined methods 27 * against the argument type list for a predefined name. 39 * If not a predefined name, cannot typecheck args, because in acpi_ns_check_argument_types() 45 if (!info->predefined || (info->node->flags & ANOBJ_EVALUATED)) { in acpi_ns_check_argument_types() 49 arg_type_list = info->predefined->info.argument_list; in acpi_ns_check_argument_types() 83 * predefined - Pointer to entry in predefined name table 88 * predefined name is what is expected (matches what is defined in 89 * the ACPI specification for this predefined name.) 96 const union acpi_predefined_info *predefined) in acpi_ns_check_acpi_compliance() argument 101 if (!predefined || (node->flags & ANOBJ_EVALUATED)) { in acpi_ns_check_acpi_compliance() [all …]
|
| D | nspredef.c | 4 * Module Name: nspredef - Validation of ACPI predefined methods and objects 22 * This module validates predefined ACPI objects that appear in the namespace, 24 * validation is to detect problems with BIOS-exposed predefined ACPI objects 60 * DESCRIPTION: Check the value returned from a predefined name. 72 const union acpi_predefined_info *predefined; in acpi_ns_check_return_value() local 74 /* If not a predefined name, we cannot validate the return object */ in acpi_ns_check_return_value() 76 predefined = info->predefined; in acpi_ns_check_return_value() 77 if (!predefined) { in acpi_ns_check_return_value() 103 (!predefined->info.expected_btypes) || in acpi_ns_check_return_value() 104 (predefined->info.expected_btypes == ACPI_RTYPE_ALL)) { in acpi_ns_check_return_value() [all …]
|
| D | utpredef.c | 4 * Module Name: utpredef - support functions for predefined names 18 * Names for the types that can be returned by the predefined objects. 33 * PARAMETERS: this_name - Entry in the predefined method/name table 35 * RETURN: Pointer to next entry in predefined table. 67 * RETURN: Pointer to entry in predefined table. NULL indicates not found. 69 * DESCRIPTION: Check an object name against the predefined object list. 77 /* Quick check for a predefined name, first character must be underscore */ in acpi_ut_match_predefined_method() 83 /* Search info table for a predefined method/object name */ in acpi_ut_match_predefined_method() 150 /* Types that can be returned externally by a predefined name */ 161 /* Bit widths for resource descriptor predefined names */ [all …]
|
| D | nsrepair.c | 4 * Module Name: nsrepair - Repair for objects returned by predefined methods 23 * predefined methods to an object type that is expected, as per the ACPI 25 * return incorrect types for the standard predefined methods. Performing these 128 const struct acpi_simple_repair_info *predefined; in acpi_ns_simple_repair() local 136 predefined = acpi_ns_match_simple_repair(info->node, in acpi_ns_simple_repair() 139 if (predefined) { in acpi_ns_simple_repair() 146 status = predefined->object_converter(info->node, return_object, in acpi_ns_simple_repair() 171 * one of the expected types for this predefined name. Attempt to in acpi_ns_simple_repair() 173 * types for this predefined name. in acpi_ns_simple_repair() 178 * this predefined name. Either one return value is expected, or none, in acpi_ns_simple_repair() [all …]
|
| D | nseval.c | 89 /* Get info if we have a predefined name (_HID, etc.) */ in acpi_ns_evaluate() 91 info->predefined = in acpi_ns_evaluate() 130 * For predefined names: Check that the declared argument count in acpi_ns_evaluate() 134 info->predefined); in acpi_ns_evaluate() 141 info->param_count, info->predefined); in acpi_ns_evaluate() 143 /* For predefined names: Typecheck all incoming arguments */ in acpi_ns_evaluate() 258 * For predefined names, check the return value against the ACPI in acpi_ns_evaluate()
|
| D | acnamesp.h | 211 * nsarguments - Argument count/type checking for predefined/reserved names 222 const union acpi_predefined_info *predefined); 227 * nspredef - Return value checking for predefined/reserved names 242 * nsprepkg - Validation of predefined name packages 320 * predefined methods/objects 346 * predefined methods/objects
|
| /kernel/linux/linux-6.6/Documentation/leds/ |
| D | leds-lp55xx.rst | 179 ( Predefined pattern data ) 182 loading a LED pattern. That is 'predefined' pattern. 184 A predefined pattern is defined in the platform data and load it(or them) 187 To use the predefined pattern concept, 'patterns' and 'num_patterns' should be 190 Example of predefined pattern data::
|
| /kernel/linux/linux-5.10/Documentation/leds/ |
| D | leds-lp55xx.rst | 179 ( Predefined pattern data ) 182 loading a LED pattern. That is 'predefined' pattern. 184 A predefined pattern is defined in the platform data and load it(or them) 187 To use the predefined pattern concept, 'patterns' and 'num_patterns' should be 190 Example of predefined pattern data::
|
| /kernel/linux/linux-6.6/arch/arm64/lib/ |
| D | error-inject.c | 9 * 'regs' represents the state on entry of a predefined function in in override_function_with_return() 13 * of probed function and directly return to the predefined in override_function_with_return()
|
| /kernel/linux/linux-5.10/arch/arm64/lib/ |
| D | error-inject.c | 9 * 'regs' represents the state on entry of a predefined function in in override_function_with_return() 13 * of probed function and directly return to the predefined in override_function_with_return()
|
| /kernel/linux/linux-5.10/drivers/net/ethernet/intel/iavf/ |
| D | iavf_type.h | 273 /* Note: These are predefined bit offsets */ 319 /* Note: These are predefined bit offsets */ 443 /* Note: These are predefined bit offsets */ 454 /* Note: These are predefined bit offsets */ 478 /* Note: These are predefined bit offsets */ 490 /* Note: These are predefined bit offsets */ 548 /* Note: These are predefined bit offsets */
|
| /kernel/linux/linux-6.6/drivers/net/ethernet/intel/iavf/ |
| D | iavf_type.h | 273 /* Note: These are predefined bit offsets */ 319 /* Note: These are predefined bit offsets */ 442 /* Note: These are predefined bit offsets */ 453 /* Note: These are predefined bit offsets */ 477 /* Note: These are predefined bit offsets */ 489 /* Note: These are predefined bit offsets */ 547 /* Note: These are predefined bit offsets */
|
| /kernel/linux/linux-6.6/lib/zstd/compress/ |
| D | zstd_ldm.h | 49 * Compresses a block using the predefined sequences, along with a secondary 52 * predefined sequences. Returns the length of the last literals. 58 * NOTE: The source must be at most the maximum block size, but the predefined
|
| /kernel/linux/linux-5.10/drivers/usb/serial/ |
| D | kobil_sct.h | 55 /* use a predefined reset sequence */ 57 /* use a predefined sequence to reset the internal queues */
|
| /kernel/linux/linux-6.6/drivers/usb/serial/ |
| D | kobil_sct.h | 55 /* use a predefined reset sequence */ 57 /* use a predefined sequence to reset the internal queues */
|
| /kernel/linux/linux-5.10/include/linux/platform_data/ |
| D | leds-lp55xx.h | 62 * @patterns : Predefined pattern data for RGB channels 79 /* Predefined pattern data */
|
| /kernel/linux/linux-6.6/include/linux/platform_data/ |
| D | leds-lp55xx.h | 62 * @patterns : Predefined pattern data for RGB channels 82 /* Predefined pattern data */
|
| /kernel/linux/linux-6.6/drivers/net/wireless/intel/iwlwifi/fw/api/ |
| D | nvm-reg.h | 503 * different predefined FW config operation 512 * different predefined FW config operation 523 * different predefined FW config operation 538 * different predefined FW config operation. 557 * different predefined FW config operation. 580 * different predefined FW config operation.
|
| /kernel/linux/linux-5.10/Documentation/s390/ |
| D | s390dbf.rst | 70 Predefined views for hex/ascii and sprintf data are provided. 115 Predefined views: 214 See section about predefined views for explanation of the above output! 295 Predefined Views 298 There are two predefined views: hex_ascii and sprintf. 402 and which produces the same header output as the predefined views.
|