Lines Matching refs:proc_dir_entry

12 struct proc_dir_entry;
86 extern struct proc_dir_entry *proc_symlink(const char *,
87 struct proc_dir_entry *, const char *);
88 struct proc_dir_entry *_proc_mkdir(const char *, umode_t, struct proc_dir_entry *, void *, bool);
89 extern struct proc_dir_entry *proc_mkdir(const char *, struct proc_dir_entry *);
90 extern struct proc_dir_entry *proc_mkdir_data(const char *, umode_t,
91 struct proc_dir_entry *, void *);
92 extern struct proc_dir_entry *proc_mkdir_mode(const char *, umode_t,
93 struct proc_dir_entry *);
94 struct proc_dir_entry *proc_create_mount_point(const char *name);
96 struct proc_dir_entry *proc_create_seq_private(const char *name, umode_t mode,
97 struct proc_dir_entry *parent, const struct seq_operations *ops,
103 struct proc_dir_entry *proc_create_single_data(const char *name, umode_t mode,
104 struct proc_dir_entry *parent,
109 extern struct proc_dir_entry *proc_create_data(const char *, umode_t,
110 struct proc_dir_entry *,
114 struct proc_dir_entry *proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, c…
115 extern void proc_set_size(struct proc_dir_entry *, loff_t);
116 extern void proc_set_user(struct proc_dir_entry *, kuid_t, kgid_t);
128 extern void proc_remove(struct proc_dir_entry *);
129 extern void remove_proc_entry(const char *, struct proc_dir_entry *);
130 extern int remove_proc_subtree(const char *, struct proc_dir_entry *);
132 struct proc_dir_entry *proc_create_net_data(const char *name, umode_t mode,
133 struct proc_dir_entry *parent, const struct seq_operations *ops,
137 struct proc_dir_entry *proc_create_net_single(const char *name, umode_t mode,
138 struct proc_dir_entry *parent,
140 struct proc_dir_entry *proc_create_net_data_write(const char *name, umode_t mode,
141 struct proc_dir_entry *parent,
145 struct proc_dir_entry *proc_create_net_single_write(const char *name, umode_t mode,
146 struct proc_dir_entry *parent,
178 static inline struct proc_dir_entry *proc_symlink(const char *name, in proc_symlink()
179 struct proc_dir_entry *parent,const char *dest) { return NULL;} in proc_symlink()
180 static inline struct proc_dir_entry *proc_mkdir(const char *name, in proc_mkdir()
181 struct proc_dir_entry *parent) {return NULL;} in proc_mkdir()
182 static inline struct proc_dir_entry *proc_create_mount_point(const char *name) { return NULL; } in proc_create_mount_point()
183 static inline struct proc_dir_entry *_proc_mkdir(const char *name, umode_t mode, in _proc_mkdir()
184 struct proc_dir_entry *parent, void *data, bool force_lookup) in _proc_mkdir()
188 static inline struct proc_dir_entry *proc_mkdir_data(const char *name, in proc_mkdir_data()
189 umode_t mode, struct proc_dir_entry *parent, void *data) { return NULL; } in proc_mkdir_data()
190 static inline struct proc_dir_entry *proc_mkdir_mode(const char *name, in proc_mkdir_mode()
191 umode_t mode, struct proc_dir_entry *parent) { return NULL; } in proc_mkdir_mode()
198 static inline struct proc_dir_entry *
199 proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, in proc_create()
203 static inline struct proc_dir_entry *
204 proc_create_data(const char *name, umode_t mode, struct proc_dir_entry *parent, in proc_create_data()
208 static inline void proc_set_size(struct proc_dir_entry *de, loff_t size) {} in proc_set_size()
209 static inline void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid) {} in proc_set_user()
213 static inline void proc_remove(struct proc_dir_entry *de) {} in proc_remove()
215 static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; } in remove_proc_subtree()
232 static inline struct proc_dir_entry *proc_net_mkdir( in proc_net_mkdir()
233 struct net *net, const char *name, struct proc_dir_entry *parent) in proc_net_mkdir()