Home | History | Annotate | Download | only in sound

Lines Matching refs:entry

43 	void (*read) (struct snd_info_entry *entry, struct snd_info_buffer *buffer);
44 void (*write) (struct snd_info_entry *entry, struct snd_info_buffer *buffer);
48 int (*open) (struct snd_info_entry *entry,
50 int (*release) (struct snd_info_entry * entry,
52 long (*read) (struct snd_info_entry *entry, void *file_private_data,
55 long (*write) (struct snd_info_entry *entry, void *file_private_data,
58 long long (*llseek) (struct snd_info_entry *entry, void *file_private_data,
60 unsigned int (*poll) (struct snd_info_entry *entry, void *file_private_data,
62 int (*ioctl) (struct snd_info_entry *entry, void *file_private_data,
64 int (*mmap) (struct snd_info_entry *entry, void *file_private_data,
82 void (*private_free)(struct snd_info_entry *entry);
119 void snd_info_free_entry(struct snd_info_entry * entry);
120 int snd_info_store_text(struct snd_info_entry * entry);
121 int snd_info_restore_text(struct snd_info_entry * entry);
127 int snd_info_register(struct snd_info_entry * entry);
132 static inline void snd_info_set_text_ops(struct snd_info_entry *entry,
136 entry->private_data = private_data;
137 entry->c.text.read = read;
155 static inline void snd_info_free_entry(struct snd_info_entry * entry) { ; }
161 static inline int snd_info_register(struct snd_info_entry * entry) { return 0; }
165 static inline void snd_info_set_text_ops(struct snd_info_entry *entry __attribute__((unused)),