Lines Matching refs:entry
30 void (*read)(struct snd_info_entry *entry,
32 void (*write)(struct snd_info_entry *entry,
37 int (*open)(struct snd_info_entry *entry,
39 int (*release)(struct snd_info_entry *entry,
41 ssize_t (*read)(struct snd_info_entry *entry, void *file_private_data,
44 ssize_t (*write)(struct snd_info_entry *entry, void *file_private_data,
47 loff_t (*llseek)(struct snd_info_entry *entry,
50 __poll_t (*poll)(struct snd_info_entry *entry,
53 int (*ioctl)(struct snd_info_entry *entry, void *file_private_data,
55 int (*mmap)(struct snd_info_entry *entry, void *file_private_data,
72 void (*private_free)(struct snd_info_entry *entry);
120 void snd_info_free_entry(struct snd_info_entry *entry);
127 int snd_info_register(struct snd_info_entry *entry);
137 static inline void snd_info_set_text_ops(struct snd_info_entry *entry,
141 entry->private_data = private_data;
142 entry->c.text.read = read;
149 void (*write)(struct snd_info_entry *entry,
167 static inline void snd_info_free_entry(struct snd_info_entry *entry) { ; }
174 static inline int snd_info_register(struct snd_info_entry *entry) { return 0; }
178 static inline void snd_info_set_text_ops(struct snd_info_entry *entry __attribute__((unused)),
185 void (*write)(struct snd_info_entry *entry,
195 * snd_card_ro_proc_new - Create a read-only text proc file entry for the card
201 * This proc file entry will be registered via snd_card_register() call, and