Lines Matching full:clients

19 static LIST_HEAD(clients);
123 list_move_tail(&client->list, &device->clients); in host1x_subdev_register()
157 * it from list of clients. in __host1x_subdev_unregister()
188 * its &host1x_driver.probe implementation to initialize each of its clients.
200 list_for_each_entry(client, &device->clients, list) { in host1x_device_init()
211 list_for_each_entry(client, &device->clients, list) { in host1x_device_init()
228 list_for_each_entry_continue_reverse(client, &device->clients, list) in host1x_device_init()
233 client = list_entry(&device->clients, struct host1x_client, list); in host1x_device_init()
236 list_for_each_entry_continue_reverse(client, &device->clients, list) in host1x_device_init()
250 * function to tear down each of its clients. Typically this is done after a
261 list_for_each_entry_reverse(client, &device->clients, list) { in host1x_device_exit()
274 list_for_each_entry_reverse(client, &device->clients, list) { in host1x_device_exit()
382 * list of idle clients. in __host1x_device_del()
392 /* add the client to the list of idle clients */ in __host1x_device_del()
394 list_add_tail(&client->list, &clients); in __host1x_device_del()
404 /* move clients to idle list */ in __host1x_device_del()
408 list_for_each_entry_safe(client, cl, &device->clients, list) in __host1x_device_del()
409 list_move_tail(&client->list, &clients); in __host1x_device_del()
444 INIT_LIST_HEAD(&device->clients); in host1x_device_add()
468 list_for_each_entry_safe(client, tmp, &clients, list) { in host1x_device_add()
744 * associated with that instance. Once all clients have been registered with
767 list_add_tail(&client->list, &clients); in __host1x_client_register()
800 list_for_each_entry(c, &clients, list) { in host1x_client_unregister()