Lines Matching refs:proc_dir_entry
12 struct proc_dir_entry;
81 extern struct proc_dir_entry *proc_symlink(const char *,
82 struct proc_dir_entry *, const char *);
83 struct proc_dir_entry *_proc_mkdir(const char *, umode_t, struct proc_dir_entry *, void *, bool);
84 extern struct proc_dir_entry *proc_mkdir(const char *, struct proc_dir_entry *);
85 extern struct proc_dir_entry *proc_mkdir_data(const char *, umode_t,
86 struct proc_dir_entry *, void *);
87 extern struct proc_dir_entry *proc_mkdir_mode(const char *, umode_t,
88 struct proc_dir_entry *);
89 struct proc_dir_entry *proc_create_mount_point(const char *name);
91 struct proc_dir_entry *proc_create_seq_private(const char *name, umode_t mode,
92 struct proc_dir_entry *parent, const struct seq_operations *ops,
98 struct proc_dir_entry *proc_create_single_data(const char *name, umode_t mode,
99 struct proc_dir_entry *parent,
104 extern struct proc_dir_entry *proc_create_data(const char *, umode_t,
105 struct proc_dir_entry *,
109 struct proc_dir_entry *proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, c…
110 extern void proc_set_size(struct proc_dir_entry *, loff_t);
111 extern void proc_set_user(struct proc_dir_entry *, kuid_t, kgid_t);
114 extern void proc_remove(struct proc_dir_entry *);
115 extern void remove_proc_entry(const char *, struct proc_dir_entry *);
116 extern int remove_proc_subtree(const char *, struct proc_dir_entry *);
118 struct proc_dir_entry *proc_create_net_data(const char *name, umode_t mode,
119 struct proc_dir_entry *parent, const struct seq_operations *ops,
123 struct proc_dir_entry *proc_create_net_single(const char *name, umode_t mode,
124 struct proc_dir_entry *parent,
126 struct proc_dir_entry *proc_create_net_data_write(const char *name, umode_t mode,
127 struct proc_dir_entry *parent,
131 struct proc_dir_entry *proc_create_net_single_write(const char *name, umode_t mode,
132 struct proc_dir_entry *parent,
161 static inline struct proc_dir_entry *proc_symlink(const char *name, in proc_symlink()
162 struct proc_dir_entry *parent,const char *dest) { return NULL;} in proc_symlink()
163 static inline struct proc_dir_entry *proc_mkdir(const char *name, in proc_mkdir()
164 struct proc_dir_entry *parent) {return NULL;} in proc_mkdir()
165 static inline struct proc_dir_entry *proc_create_mount_point(const char *name) { return NULL; } in proc_create_mount_point()
166 static inline struct proc_dir_entry *_proc_mkdir(const char *name, umode_t mode, in _proc_mkdir()
167 struct proc_dir_entry *parent, void *data, bool force_lookup) in _proc_mkdir()
171 static inline struct proc_dir_entry *proc_mkdir_data(const char *name, in proc_mkdir_data()
172 umode_t mode, struct proc_dir_entry *parent, void *data) { return NULL; } in proc_mkdir_data()
173 static inline struct proc_dir_entry *proc_mkdir_mode(const char *name, in proc_mkdir_mode()
174 umode_t mode, struct proc_dir_entry *parent) { return NULL; } in proc_mkdir_mode()
183 static inline void proc_set_size(struct proc_dir_entry *de, loff_t size) {} in proc_set_size()
184 static inline void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid) {} in proc_set_user()
188 static inline void proc_remove(struct proc_dir_entry *de) {} in proc_remove()
190 static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; } in remove_proc_subtree()
205 static inline struct proc_dir_entry *proc_net_mkdir( in proc_net_mkdir()
206 struct net *net, const char *name, struct proc_dir_entry *parent) in proc_net_mkdir()