Lines Matching refs:client
36 int (*early_init)(struct host1x_client *client);
37 int (*init)(struct host1x_client *client);
38 int (*exit)(struct host1x_client *client);
39 int (*late_exit)(struct host1x_client *client);
40 int (*suspend)(struct host1x_client *client);
41 int (*resume)(struct host1x_client *client);
160 struct host1x_syncpt *host1x_syncpt_request(struct host1x_client *client,
170 void host1x_syncpt_release_vblank_reservation(struct host1x_client *client,
182 struct host1x_channel *host1x_channel_request(struct host1x_client *client);
218 struct host1x_client *client; member
356 void __host1x_client_init(struct host1x_client *client, struct lock_class_key *key);
357 void host1x_client_exit(struct host1x_client *client);
359 #define host1x_client_init(client) \ argument
362 __host1x_client_init(client, &__key); \
365 int __host1x_client_register(struct host1x_client *client);
375 #define host1x_client_register(client) \ argument
378 __host1x_client_init(client, &__key); \
379 __host1x_client_register(client); \
382 int host1x_client_unregister(struct host1x_client *client);
384 int host1x_client_suspend(struct host1x_client *client);
385 int host1x_client_resume(struct host1x_client *client);