Searched defs:next (Results 1 - 25 of 557) sorted by relevance

1234567891011>>

/drivers/acpi/acpica/
H A Dpswalk.c65 union acpi_parse_object *next = NULL; local
80 next = acpi_ps_get_arg(op, 0);
81 if (next) {
85 op = next;
92 next = op->common.next;
102 if (next) {
103 op = next;
H A Dnseval.c303 union acpi_operand_object *next; local
311 next = acpi_gbl_module_code_list;
312 if (!next) {
325 while (next) {
326 prev = next;
327 next = next->method.mutex;
H A Dpstree.c107 arg = arg->common.next;
166 while (prev_arg->common.next) {
167 prev_arg = prev_arg->common.next;
169 prev_arg->common.next = arg;
180 arg = arg->common.next;
196 * DESCRIPTION: Get next op in tree (walking the tree in depth-first order)
204 union acpi_parse_object *next = NULL; local
216 next = acpi_ps_get_arg(op, 0);
217 if (next) {
218 return (next);
[all...]
H A Devxface.c66 * next - Address of a handler object to link to
77 struct acpi_object_notify_handler *next)
82 handler_obj->next = next;
115 parent_obj->next);
116 parent_obj->next = handler_obj;
419 if (handler_obj->next) {
421 handler_obj = handler_obj->next;
442 parent_obj->next = handler_obj->next;
74 acpi_populate_handler_object(struct acpi_object_notify_handler *handler_obj, u32 handler_type, acpi_notify_handler handler, void *context, struct acpi_object_notify_handler *next) argument
[all...]
H A Dexmutex.c80 if (obj_desc->mutex.next) {
81 (obj_desc->mutex.next)->mutex.prev = obj_desc->mutex.prev;
85 (obj_desc->mutex.prev)->mutex.next = obj_desc->mutex.next;
96 thread->acquired_mutex_list = obj_desc->mutex.next;
124 obj_desc->mutex.next = list_head;
462 union acpi_operand_object *next = thread->acquired_mutex_list; local
469 while (next) {
470 obj_desc = next;
471 next
[all...]
H A Dpsparse.c96 * DESCRIPTION: Get next AML opcode (without incrementing AML pointer)
137 union acpi_parse_object *next; local
263 replacement_op->common.next = op->common.next;
266 op->common.next;
277 next = prev->common.next;
278 if (next == op) {
286 prev->common.next =
288 replacement_op->common.next
[all...]
H A Dutaddress.c106 range_info->next = acpi_gbl_address_range_list[space_id];
157 range_info->next;
159 prev->next = range_info->next;
178 range_info = range_info->next;
256 range_info = range_info->next;
277 struct acpi_address_range *next; local
284 next = acpi_gbl_address_range_list[i];
286 while (next) {
287 range_info = next;
[all...]
/drivers/pcmcia/
H A Dsa1111_generic.h7 struct sa1111_pcmcia_socket *next; member in struct:sa1111_pcmcia_socket
/drivers/acpi/
H A Dwakeup.c33 struct list_head *node, *next; local
35 list_for_each_safe(node, next, &acpi_wakeup_device_list) {
60 struct list_head *node, *next; local
62 list_for_each_safe(node, next, &acpi_wakeup_device_list) {
82 struct list_head *node, *next; local
85 list_for_each_safe(node, next, &acpi_wakeup_device_list) {
H A Dnvs.c96 struct nvs_page *entry, *next; local
119 list_for_each_entry_safe(entry, next, &nvs_list, node) {
/drivers/infiniband/hw/amso1100/
H A Dc2_alloc.c54 new_head->next = NULL;
57 /* build list where each index is the next free slot */
79 struct sp_chunk *next; local
82 next = root->next;
85 root = next;
99 } else if (head->next == NULL) {
100 if (c2_alloc_mqsp_chunk(c2dev, gfp_mask, &head->next) ==
102 head = head->next;
109 head = head->next;
[all...]
/drivers/net/appletalk/
H A Dipddp.h20 struct ipddp_route *next; member in struct:ipddp_route
/drivers/parisc/
H A Dhppb.c29 struct hppb_card *next; member in struct:hppb_card
34 .next = NULL,
53 while(card->next) {
54 card = card->next;
58 card->next = kzalloc(sizeof(struct hppb_card), GFP_KERNEL);
59 if(!card->next) {
63 card = card->next;
/drivers/scsi/arm/
H A Dmsgqueue.h23 struct msgqueue_entry *next; member in struct:msgqueue_entry
/drivers/gpu/drm/i915/
H A Di915_gem_evict.c11 * The above copyright notice and this permission notice (including the next
56 * retirement order. The next objects to retire are those on the (per
195 struct drm_i915_gem_object *obj, *next; local
197 list_for_each_entry_safe(obj, next,
/drivers/misc/ibmasm/
H A Dcommand.c85 struct list_head *next; local
90 next = sp->command_queue.next;
91 list_del_init(next);
92 cmd = list_entry(next, struct command, queue_node);
/drivers/net/fddi/skfp/
H A Dsmttimer.c124 struct smt_timer *next ; local
145 next = smc->t.st_queue ;
148 for ( tm = next ; tm ; tm = next) {
149 next = tm->tm_next ;
/drivers/base/
H A Disa.c19 struct device *next; member in struct:isa_dev
106 struct device *tmp = to_isa_dev(dev)->next;
154 isa_dev->next = isa_driver->devices;
H A Dmap.c21 struct probe *next; member in struct:kobj_map::probe
61 s = &(*s)->next;
62 p->next = *s;
82 for (s = &domain->probes[index % 255]; *s; s = &(*s)->next) {
85 *s = p->next;
104 for (p = domain->probes[MAJOR(dev) % 255]; p; p = p->next) {
/drivers/gpu/drm/nouveau/
H A Dnouveau_mm.c67 struct nouveau_mm_node *next = node(this, next); local
78 if (next && next->type == 0) {
79 next->offset = this->offset;
80 next->length += this->length;
89 struct nouveau_mm_node *prev, *this, *next; local
103 next = node(this, next);
104 if (next
[all...]
H A Dnvc0_vm.c64 u32 next = 1 << (vma->node->type - 8); local
71 phys += next;
/drivers/gpu/drm/via/
H A Dvia_mm.c13 * next paragraph) shall be included in all copies or substantial portions
216 struct via_memblock *entry, *next; local
227 list_for_each_entry_safe(entry, next, &file_priv->obj_list,
/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_marker.c15 * next paragraph) shall be included in all copies or substantial portions
47 struct vmw_marker *marker, *next; local
50 list_for_each_entry_safe(marker, next, &queue->head, head) {
76 struct vmw_marker *marker, *next; local
90 list_for_each_entry_safe(marker, next, &queue->head, head) {
/drivers/infiniband/core/
H A Dnetlink.c87 struct ibnl_client *cur, *next; local
90 list_for_each_entry_safe(cur, next, &client_list, list) {
185 struct ibnl_client *cur, *next; local
188 list_for_each_entry_safe(cur, next, &client_list, list) {
/drivers/media/video/
H A Dv4l2-device.c106 struct v4l2_subdev *sd, *next; local
113 list_for_each_entry_safe(sd, next, &v4l2_dev->subdevs, list) {

Completed in 477 milliseconds

1234567891011>>