Lines Matching refs:proc_dir_entry

12 struct proc_dir_entry;
82 extern struct proc_dir_entry *proc_symlink(const char *,
83 struct proc_dir_entry *, const char *);
84 struct proc_dir_entry *_proc_mkdir(const char *, umode_t, struct proc_dir_entry *, void *, bool);
85 extern struct proc_dir_entry *proc_mkdir(const char *, struct proc_dir_entry *);
86 extern struct proc_dir_entry *proc_mkdir_data(const char *, umode_t,
87 struct proc_dir_entry *, void *);
88 extern struct proc_dir_entry *proc_mkdir_mode(const char *, umode_t,
89 struct proc_dir_entry *);
90 struct proc_dir_entry *proc_create_mount_point(const char *name);
92 struct proc_dir_entry *proc_create_seq_private(const char *name, umode_t mode,
93 struct proc_dir_entry *parent, const struct seq_operations *ops,
99 struct proc_dir_entry *proc_create_single_data(const char *name, umode_t mode,
100 struct proc_dir_entry *parent,
105 extern struct proc_dir_entry *proc_create_data(const char *, umode_t,
106 struct proc_dir_entry *,
110 struct proc_dir_entry *proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, c…
111 extern void proc_set_size(struct proc_dir_entry *, loff_t);
112 extern void proc_set_user(struct proc_dir_entry *, kuid_t, kgid_t);
124 extern void proc_remove(struct proc_dir_entry *);
125 extern void remove_proc_entry(const char *, struct proc_dir_entry *);
126 extern int remove_proc_subtree(const char *, struct proc_dir_entry *);
128 struct proc_dir_entry *proc_create_net_data(const char *name, umode_t mode,
129 struct proc_dir_entry *parent, const struct seq_operations *ops,
133 struct proc_dir_entry *proc_create_net_single(const char *name, umode_t mode,
134 struct proc_dir_entry *parent,
136 struct proc_dir_entry *proc_create_net_data_write(const char *name, umode_t mode,
137 struct proc_dir_entry *parent,
141 struct proc_dir_entry *proc_create_net_single_write(const char *name, umode_t mode,
142 struct proc_dir_entry *parent,
174 static inline struct proc_dir_entry *proc_symlink(const char *name, in proc_symlink()
175 struct proc_dir_entry *parent,const char *dest) { return NULL;} in proc_symlink()
176 static inline struct proc_dir_entry *proc_mkdir(const char *name, in proc_mkdir()
177 struct proc_dir_entry *parent) {return NULL;} in proc_mkdir()
178 static inline struct proc_dir_entry *proc_create_mount_point(const char *name) { return NULL; } in proc_create_mount_point()
179 static inline struct proc_dir_entry *_proc_mkdir(const char *name, umode_t mode, in _proc_mkdir()
180 struct proc_dir_entry *parent, void *data, bool force_lookup) in _proc_mkdir()
184 static inline struct proc_dir_entry *proc_mkdir_data(const char *name, in proc_mkdir_data()
185 umode_t mode, struct proc_dir_entry *parent, void *data) { return NULL; } in proc_mkdir_data()
186 static inline struct proc_dir_entry *proc_mkdir_mode(const char *name, in proc_mkdir_mode()
187 umode_t mode, struct proc_dir_entry *parent) { return NULL; } in proc_mkdir_mode()
194 static inline struct proc_dir_entry *
195 proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, in proc_create()
199 static inline struct proc_dir_entry *
200 proc_create_data(const char *name, umode_t mode, struct proc_dir_entry *parent, in proc_create_data()
204 static inline void proc_set_size(struct proc_dir_entry *de, loff_t size) {} in proc_set_size()
205 static inline void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid) {} in proc_set_user()
209 static inline void proc_remove(struct proc_dir_entry *de) {} in proc_remove()
211 static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; } in remove_proc_subtree()
228 static inline struct proc_dir_entry *proc_net_mkdir( in proc_net_mkdir()
229 struct net *net, const char *name, struct proc_dir_entry *parent) in proc_net_mkdir()