| /include/linux/ceph/ |
| D | ceph_debug.h | 22 # define doutc(client, fmt, ...) \ argument 26 &client->fsid, client->monc.auth->global_id, \ 32 # define doutc(client, fmt, ...) \ argument 34 &client->fsid, \ 35 client->monc.auth->global_id, \ 45 # define doutc(client, fmt, ...) \ argument 46 pr_debug(" [%pU %llu] %s: " fmt, &client->fsid, \ 47 client->monc.auth->global_id, __func__, ##__VA_ARGS__) 51 #define pr_notice_client(client, fmt, ...) \ argument 52 pr_notice("[%pU %llu]: " fmt, &client->fsid, \ [all …]
|
| D | libceph.h | 42 #define ceph_set_opt(client, opt) \ argument 43 (client)->options->flags |= CEPH_OPT_##opt; 44 #define ceph_test_opt(client, opt) \ argument 45 (!!((client)->options->flags & CEPH_OPT_##opt)) 146 static inline bool ceph_msgr2(struct ceph_client *client) in ceph_msgr2() argument 148 return client->options->con_modes[0] != CEPH_CON_MODE_UNKNOWN; in ceph_msgr2() 289 extern int ceph_check_fsid(struct ceph_client *client, struct ceph_fsid *fsid); 299 int ceph_print_client_options(struct seq_file *m, struct ceph_client *client, 303 struct ceph_client *client); 305 struct ceph_entity_addr *ceph_client_addr(struct ceph_client *client); [all …]
|
| D | debugfs.h | 10 extern void ceph_debugfs_client_init(struct ceph_client *client); 11 extern void ceph_debugfs_client_cleanup(struct ceph_client *client);
|
| /include/drm/ |
| D | drm_client.h | 39 void (*unregister)(struct drm_client_dev *client); 55 int (*restore)(struct drm_client_dev *client); 65 int (*hotplug)(struct drm_client_dev *client); 119 int drm_client_init(struct drm_device *dev, struct drm_client_dev *client, 121 void drm_client_release(struct drm_client_dev *client); 122 void drm_client_register(struct drm_client_dev *client); 135 struct drm_client_dev *client; member 166 drm_client_framebuffer_create(struct drm_client_dev *client, u32 width, u32 height, u32 format); 176 int drm_client_modeset_create(struct drm_client_dev *client); 177 void drm_client_modeset_free(struct drm_client_dev *client); [all …]
|
| /include/trace/events/ |
| D | fsi_master_i2cr.h | 12 TP_PROTO(const struct i2c_client *client, uint32_t command, int rc), 13 TP_ARGS(client, command, rc), 21 __entry->bus = client->adapter->nr; 24 __entry->addr = client->addr; 31 TP_PROTO(const struct i2c_client *client, uint32_t command, uint64_t *data), 32 TP_ARGS(client, command, data), 40 __entry->bus = client->adapter->nr; 43 __entry->addr = client->addr; 50 TP_PROTO(const struct i2c_client *client, uint64_t status), 51 TP_ARGS(client, status), [all …]
|
| D | i2c_slave.h | 31 TP_PROTO(const struct i2c_client *client, enum i2c_slave_event event, 33 TP_ARGS(client, event, val, cb_ret), 43 __entry->adapter_nr = client->adapter->nr; 44 __entry->addr = client->addr;
|
| /include/net/9p/ |
| D | transport.h | 48 int (*create)(struct p9_client *client, 50 void (*close)(struct p9_client *client); 51 int (*request)(struct p9_client *client, struct p9_req_t *req); 52 int (*cancel)(struct p9_client *client, struct p9_req_t *req); 53 int (*cancelled)(struct p9_client *client, struct p9_req_t *req); 54 int (*zc_request)(struct p9_client *client, struct p9_req_t *req, 57 int (*show_options)(struct seq_file *m, struct p9_client *client);
|
| /include/linux/ |
| D | i2c.h | 40 typedef int (*i2c_slave_cb_t)(struct i2c_client *client, 65 int i2c_transfer_buffer_flags(const struct i2c_client *client, 76 static inline int i2c_master_recv(const struct i2c_client *client, in i2c_master_recv() argument 79 return i2c_transfer_buffer_flags(client, buf, count, I2C_M_RD); in i2c_master_recv() 91 static inline int i2c_master_recv_dmasafe(const struct i2c_client *client, in i2c_master_recv_dmasafe() argument 94 return i2c_transfer_buffer_flags(client, buf, count, in i2c_master_recv_dmasafe() 106 static inline int i2c_master_send(const struct i2c_client *client, in i2c_master_send() argument 109 return i2c_transfer_buffer_flags(client, (char *)buf, count, 0); in i2c_master_send() 121 static inline int i2c_master_send_dmasafe(const struct i2c_client *client, in i2c_master_send_dmasafe() argument 124 return i2c_transfer_buffer_flags(client, (char *)buf, count, in i2c_master_send_dmasafe() [all …]
|
| D | ism.h | 73 int ism_register_client(struct ism_client *client); 74 int ism_unregister_client(struct ism_client *client); 76 struct ism_client *client) { in ism_get_priv() argument 77 return dev->priv[client->id]; in ism_get_priv() 80 static inline void ism_set_priv(struct ism_dev *dev, struct ism_client *client, in ism_set_priv() argument 82 dev->priv[client->id] = priv; in ism_set_priv() 86 struct ism_client *client);
|
| D | host1x.h | 68 int (*early_init)(struct host1x_client *client); 69 int (*init)(struct host1x_client *client); 70 int (*exit)(struct host1x_client *client); 71 int (*late_exit)(struct host1x_client *client); 72 int (*suspend)(struct host1x_client *client); 73 int (*resume)(struct host1x_client *client); 212 struct host1x_syncpt *host1x_syncpt_request(struct host1x_client *client, 222 void host1x_syncpt_release_vblank_reservation(struct host1x_client *client, 236 struct host1x_channel *host1x_channel_request(struct host1x_client *client); 273 struct host1x_client *client; member [all …]
|
| D | i2c-smbus.h | 35 void i2c_free_slave_host_notify_device(struct i2c_client *client); 41 static inline void i2c_free_slave_host_notify_device(struct i2c_client *client) in i2c_free_slave_host_notify_device() argument
|
| D | i2c-atr.h | 34 const struct i2c_client *client, u16 alias); 36 const struct i2c_client *client);
|
| D | dm-io.h | 65 struct dm_io_client *client; /* Client memory handler */ member 75 void dm_io_client_destroy(struct dm_io_client *client);
|
| D | pci-p2pdma.h | 97 struct device *client, bool verbose) in pci_p2pdma_distance() argument 99 return pci_p2pdma_distance_many(provider, &client, 1, verbose); in pci_p2pdma_distance() 102 static inline struct pci_dev *pci_p2pmem_find(struct device *client) in pci_p2pmem_find() argument 104 return pci_p2pmem_find_many(&client, 1); in pci_p2pmem_find()
|
| /include/linux/net/intel/ |
| D | i40e_client.h | 112 int (*setup_qvlist)(struct i40e_info *ldev, struct i40e_client *client, 115 int (*virtchnl_send)(struct i40e_info *ldev, struct i40e_client *client, 122 struct i40e_client *client, u32 level); 128 struct i40e_client *client, 137 int (*open)(struct i40e_info *ldev, struct i40e_client *client); 143 void (*close)(struct i40e_info *ldev, struct i40e_client *client, 148 struct i40e_client *client, 152 struct i40e_client *client, u32 vf_id, 157 struct i40e_client *client, u32 vf_id); 161 struct i40e_client *client, u32 num_vfs); [all …]
|
| /include/sound/ |
| D | seq_kernel.h | 60 int snd_seq_delete_kernel_client(int client); 61 int snd_seq_kernel_client_enqueue(int client, struct snd_seq_event *ev, 63 int snd_seq_kernel_client_dispatch(int client, struct snd_seq_event *ev, int atomic, int hop); 64 int snd_seq_kernel_client_ctl(int client, unsigned int cmd, void *arg); 87 int snd_seq_set_queue_tempo(int client, struct snd_seq_queue_tempo *tempo); 90 int snd_seq_event_port_attach(int client, struct snd_seq_port_callback *pcbp, 92 int snd_seq_event_port_detach(int client, int port);
|
| D | seq_virmidi.h | 23 int client; member 46 int client; /* created/attached client */ member
|
| /include/soc/qcom/ |
| D | ocmem.h | 39 struct ocmem_buf *ocmem_allocate(struct ocmem *ocmem, enum ocmem_client client, 41 void ocmem_free(struct ocmem *ocmem, enum ocmem_client client, 52 enum ocmem_client client, in ocmem_allocate() argument 58 static inline void ocmem_free(struct ocmem *ocmem, enum ocmem_client client, in ocmem_free() argument
|
| /include/linux/usb/ |
| D | ljca.h | 104 int ljca_register_event_cb(struct ljca_client *client, ljca_event_cb_t event_cb, void *context); 111 void ljca_unregister_event_cb(struct ljca_client *client); 128 int ljca_transfer(struct ljca_client *client, u8 cmd, const u8 *obuf, 142 int ljca_transfer_noack(struct ljca_client *client, u8 cmd, const u8 *obuf,
|
| /include/media/ |
| D | v4l2-common.h | 26 #define v4l_client_printk(level, client, fmt, arg...) \ argument 27 v4l_printk(level, (client)->dev.driver->name, (client)->adapter, \ 28 (client)->addr, fmt , ## arg) 30 #define v4l_err(client, fmt, arg...) \ argument 31 v4l_client_printk(KERN_ERR, client, fmt , ## arg) 33 #define v4l_warn(client, fmt, arg...) \ argument 34 v4l_client_printk(KERN_WARNING, client, fmt , ## arg) 36 #define v4l_info(client, fmt, arg...) \ argument 37 v4l_client_printk(KERN_INFO, client, fmt , ## arg) 41 #define v4l_dbg(level, debug, client, fmt, arg...) \ argument [all …]
|
| /include/linux/firmware/qcom/ |
| D | qcom_qseecom.h | 47 static inline int qcom_qseecom_app_send(struct qseecom_client *client, in qcom_qseecom_app_send() argument 51 return qcom_scm_qseecom_app_send(client->app_id, req, req_size, rsp, rsp_size); in qcom_qseecom_app_send()
|
| /include/linux/soc/qcom/ |
| D | pmic_glink.h | 24 int pmic_glink_send(struct pmic_glink_client *client, void *data, size_t len); 31 void pmic_glink_client_register(struct pmic_glink_client *client);
|
| /include/linux/soc/mediatek/ |
| D | mtk-cmdq.h | 60 struct mbox_client client; member 94 void cmdq_mbox_destroy(struct cmdq_client *client); 104 int cmdq_pkt_create(struct cmdq_client *client, struct cmdq_pkt *pkt, size_t size); 111 void cmdq_pkt_destroy(struct cmdq_client *client, struct cmdq_pkt *pkt); 415 static inline void cmdq_mbox_destroy(struct cmdq_client *client) { } in cmdq_mbox_destroy() argument 417 static inline int cmdq_pkt_create(struct cmdq_client *client, struct cmdq_pkt *pkt, size_t size) in cmdq_pkt_create() argument 422 static inline void cmdq_pkt_destroy(struct cmdq_client *client, struct cmdq_pkt *pkt) { } in cmdq_pkt_destroy() argument
|
| /include/linux/iio/common/ |
| D | st_sensors_i2c.h | 17 struct i2c_client *client);
|
| /include/linux/firmware/intel/ |
| D | stratix10-svc-client.h | 224 void (*receive_cb)(struct stratix10_svc_client *client, 238 *stratix10_svc_request_channel_byname(struct stratix10_svc_client *client,
|