Lines Matching defs:buffer
101 * PARAMETERS: buffer - Where the formatted string is returned
110 void acpi_ut_get_expected_return_types(char *buffer, u32 expected_btypes)
117 strcpy(buffer, "NONE");
122 buffer[0] = 0;
130 strcat(buffer, &ut_rtype_names[i][j]);
148 static u32 acpi_ut_get_argument_types(char *buffer, u16 argument_types);
218 * PARAMETERS: buffer - Scratch buffer for this function
231 acpi_ut_display_predefined_method(char *buffer,
238 * Get the argument count and the string buffer
241 arg_count = acpi_ut_get_argument_types(buffer,
256 printf(" (%s)", buffer);
266 acpi_ut_get_expected_return_types(buffer,
269 printf(" Return value types: %s\n", buffer);
279 * PARAMETERS: buffer - Where to return the formatted types
290 static u32 acpi_ut_get_argument_types(char *buffer, u16 argument_types)
297 *buffer = 0;
309 /* Get each argument from the list, convert to ascii, store to buffer */
321 strcat(buffer,
333 * PARAMETERS: buffer - Where the formatted string is returned
342 u32 acpi_ut_get_resource_bit_width(char *buffer, u16 types)
348 *buffer = 0;
354 strcat(buffer, &(ut_resource_type_names[i][sub_index]));