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);
115 extern void proc_remove(struct proc_dir_entry *);
116 extern void remove_proc_entry(const char *, struct proc_dir_entry *);
117 extern int remove_proc_subtree(const char *, struct proc_dir_entry *);
119 struct proc_dir_entry *proc_create_net_data(const char *name, umode_t mode,
120 struct proc_dir_entry *parent, const struct seq_operations *ops,
124 struct proc_dir_entry *proc_create_net_single(const char *name, umode_t mode,
125 struct proc_dir_entry *parent,
127 struct proc_dir_entry *proc_create_net_data_write(const char *name, umode_t mode,
128 struct proc_dir_entry *parent,
132 struct proc_dir_entry *proc_create_net_single_write(const char *name, umode_t mode,
133 struct proc_dir_entry *parent,
162 static inline struct proc_dir_entry *proc_symlink(const char *name, in proc_symlink()
163 struct proc_dir_entry *parent,const char *dest) { return NULL;} in proc_symlink()
164 static inline struct proc_dir_entry *proc_mkdir(const char *name, in proc_mkdir()
165 struct proc_dir_entry *parent) {return NULL;} in proc_mkdir()
166 static inline struct proc_dir_entry *proc_create_mount_point(const char *name) { return NULL; } in proc_create_mount_point()
167 static inline struct proc_dir_entry *_proc_mkdir(const char *name, umode_t mode, in _proc_mkdir()
168 struct proc_dir_entry *parent, void *data, bool force_lookup) in _proc_mkdir()
172 static inline struct proc_dir_entry *proc_mkdir_data(const char *name, in proc_mkdir_data()
173 umode_t mode, struct proc_dir_entry *parent, void *data) { return NULL; } in proc_mkdir_data()
174 static inline struct proc_dir_entry *proc_mkdir_mode(const char *name, in proc_mkdir_mode()
175 umode_t mode, struct proc_dir_entry *parent) { return NULL; } in proc_mkdir_mode()
184 static inline void proc_set_size(struct proc_dir_entry *de, loff_t size) {} in proc_set_size()
185 static inline void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid) {} in proc_set_user()
189 static inline void proc_remove(struct proc_dir_entry *de) {} in proc_remove()
191 static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; } in remove_proc_subtree()
206 static inline struct proc_dir_entry *proc_net_mkdir( in proc_net_mkdir()
207 struct net *net, const char *name, struct proc_dir_entry *parent) in proc_net_mkdir()