Lines Matching refs:clients
19 static LIST_HEAD(clients);
123 list_move_tail(&client->list, &device->clients);
157 * it from list of clients.
188 * its &host1x_driver.probe implementation to initialize each of its clients.
200 list_for_each_entry(client, &device->clients, list) {
211 list_for_each_entry(client, &device->clients, list) {
228 list_for_each_entry_continue_reverse(client, &device->clients, list)
233 client = list_entry(&device->clients, struct host1x_client, list);
236 list_for_each_entry_continue_reverse(client, &device->clients, list)
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) {
274 list_for_each_entry_reverse(client, &device->clients, list) {
388 * list of idle clients.
398 /* add the client to the list of idle clients */
400 list_add_tail(&client->list, &clients);
410 /* move clients to idle list */
414 list_for_each_entry_safe(client, cl, &device->clients, list)
415 list_move_tail(&client->list, &clients);
450 INIT_LIST_HEAD(&device->clients);
476 list_for_each_entry_safe(client, tmp, &clients, list) {
752 * associated with that instance. Once all clients have been registered with
775 list_add_tail(&client->list, &clients);
808 list_for_each_entry(c, &clients, list) {