Lines Matching defs:data
210 * Detach the object from any data objects (which are still held by
303 * handler - Handler to be associated with the data
304 * data - Data to be attached
308 * DESCRIPTION: Low-level attach data. Create and attach a Data object.
314 acpi_object_handler handler, void *data)
326 (obj_desc->data.handler == handler)) {
334 /* Create an internal object for the data */
341 data_desc->data.handler = handler;
342 data_desc->data.pointer = data;
344 /* Install the data object */
360 * handler - Handler associated with the data
364 * DESCRIPTION: Low-level detach data. Delete the data node, but the caller
365 * is responsible for the actual data.
380 (obj_desc->data.handler == handler)) {
404 * handler - Handler associated with the data
405 * data - Where the data is returned
409 * DESCRIPTION: Low level interface to obtain data previously associated with
416 acpi_object_handler handler, void **data)
423 (obj_desc->data.handler == handler)) {
424 *data = obj_desc->data.pointer;