Lines Matching refs:proc_dir_entry
12 struct proc_dir_entry;
87 extern struct proc_dir_entry *proc_symlink(const char *,
88 struct proc_dir_entry *, const char *);
89 struct proc_dir_entry *_proc_mkdir(const char *, umode_t, struct proc_dir_entry *, void *, bool);
90 extern struct proc_dir_entry *proc_mkdir(const char *, struct proc_dir_entry *);
91 extern struct proc_dir_entry *proc_mkdir_data(const char *, umode_t,
92 struct proc_dir_entry *, void *);
93 extern struct proc_dir_entry *proc_mkdir_mode(const char *, umode_t,
94 struct proc_dir_entry *);
95 struct proc_dir_entry *proc_create_mount_point(const char *name);
97 struct proc_dir_entry *proc_create_seq_private(const char *name, umode_t mode,
98 struct proc_dir_entry *parent, const struct seq_operations *ops,
104 struct proc_dir_entry *proc_create_single_data(const char *name, umode_t mode,
105 struct proc_dir_entry *parent,
110 extern struct proc_dir_entry *proc_create_data(const char *, umode_t,
111 struct proc_dir_entry *,
115 struct proc_dir_entry *proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, c…
116 extern void proc_set_size(struct proc_dir_entry *, loff_t);
117 extern void proc_set_user(struct proc_dir_entry *, kuid_t, kgid_t);
129 extern void proc_remove(struct proc_dir_entry *);
130 extern void remove_proc_entry(const char *, struct proc_dir_entry *);
131 extern int remove_proc_subtree(const char *, struct proc_dir_entry *);
133 struct proc_dir_entry *proc_create_net_data(const char *name, umode_t mode,
134 struct proc_dir_entry *parent, const struct seq_operations *ops,
138 struct proc_dir_entry *proc_create_net_single(const char *name, umode_t mode,
139 struct proc_dir_entry *parent,
141 struct proc_dir_entry *proc_create_net_data_write(const char *name, umode_t mode,
142 struct proc_dir_entry *parent,
146 struct proc_dir_entry *proc_create_net_single_write(const char *name, umode_t mode,
147 struct proc_dir_entry *parent,
179 static inline struct proc_dir_entry *proc_symlink(const char *name, in proc_symlink()
180 struct proc_dir_entry *parent,const char *dest) { return NULL;} in proc_symlink()
181 static inline struct proc_dir_entry *proc_mkdir(const char *name, in proc_mkdir()
182 struct proc_dir_entry *parent) {return NULL;} in proc_mkdir()
183 static inline struct proc_dir_entry *proc_create_mount_point(const char *name) { return NULL; } in proc_create_mount_point()
184 static inline struct proc_dir_entry *_proc_mkdir(const char *name, umode_t mode, in _proc_mkdir()
185 struct proc_dir_entry *parent, void *data, bool force_lookup) in _proc_mkdir()
189 static inline struct proc_dir_entry *proc_mkdir_data(const char *name, in proc_mkdir_data()
190 umode_t mode, struct proc_dir_entry *parent, void *data) { return NULL; } in proc_mkdir_data()
191 static inline struct proc_dir_entry *proc_mkdir_mode(const char *name, in proc_mkdir_mode()
192 umode_t mode, struct proc_dir_entry *parent) { return NULL; } in proc_mkdir_mode()
199 static inline struct proc_dir_entry *
200 proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, in proc_create()
204 static inline struct proc_dir_entry *
205 proc_create_data(const char *name, umode_t mode, struct proc_dir_entry *parent, in proc_create_data()
209 static inline void proc_set_size(struct proc_dir_entry *de, loff_t size) {} in proc_set_size()
210 static inline void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid) {} in proc_set_user()
214 static inline void proc_remove(struct proc_dir_entry *de) {} in proc_remove()
216 static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; } in remove_proc_subtree()
233 static inline struct proc_dir_entry *proc_net_mkdir( in proc_net_mkdir()
234 struct net *net, const char *name, struct proc_dir_entry *parent) in proc_net_mkdir()