Lines Matching refs:proc_dir_entry
11 struct proc_dir_entry;
22 extern struct proc_dir_entry *proc_symlink(const char *,
23 struct proc_dir_entry *, const char *);
24 extern struct proc_dir_entry *proc_mkdir(const char *, struct proc_dir_entry *);
25 extern struct proc_dir_entry *proc_mkdir_data(const char *, umode_t,
26 struct proc_dir_entry *, void *);
27 extern struct proc_dir_entry *proc_mkdir_mode(const char *, umode_t,
28 struct proc_dir_entry *);
29 struct proc_dir_entry *proc_create_mount_point(const char *name);
31 struct proc_dir_entry *proc_create_seq_private(const char *name, umode_t mode,
32 struct proc_dir_entry *parent, const struct seq_operations *ops,
38 struct proc_dir_entry *proc_create_single_data(const char *name, umode_t mode,
39 struct proc_dir_entry *parent,
44 extern struct proc_dir_entry *proc_create_data(const char *, umode_t,
45 struct proc_dir_entry *,
49 struct proc_dir_entry *proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, c…
50 extern void proc_set_size(struct proc_dir_entry *, loff_t);
51 extern void proc_set_user(struct proc_dir_entry *, kuid_t, kgid_t);
54 extern void proc_remove(struct proc_dir_entry *);
55 extern void remove_proc_entry(const char *, struct proc_dir_entry *);
56 extern int remove_proc_subtree(const char *, struct proc_dir_entry *);
58 struct proc_dir_entry *proc_create_net_data(const char *name, umode_t mode,
59 struct proc_dir_entry *parent, const struct seq_operations *ops,
63 struct proc_dir_entry *proc_create_net_single(const char *name, umode_t mode,
64 struct proc_dir_entry *parent,
66 struct proc_dir_entry *proc_create_net_data_write(const char *name, umode_t mode,
67 struct proc_dir_entry *parent,
71 struct proc_dir_entry *proc_create_net_single_write(const char *name, umode_t mode,
72 struct proc_dir_entry *parent,
97 static inline struct proc_dir_entry *proc_symlink(const char *name, in proc_symlink()
98 struct proc_dir_entry *parent,const char *dest) { return NULL;} in proc_symlink()
99 static inline struct proc_dir_entry *proc_mkdir(const char *name, in proc_mkdir()
100 struct proc_dir_entry *parent) {return NULL;} in proc_mkdir()
101 static inline struct proc_dir_entry *proc_create_mount_point(const char *name) { return NULL; } in proc_create_mount_point()
102 static inline struct proc_dir_entry *proc_mkdir_data(const char *name, in proc_mkdir_data()
103 umode_t mode, struct proc_dir_entry *parent, void *data) { return NULL; } in proc_mkdir_data()
104 static inline struct proc_dir_entry *proc_mkdir_mode(const char *name, in proc_mkdir_mode()
105 umode_t mode, struct proc_dir_entry *parent) { return NULL; } in proc_mkdir_mode()
114 static inline void proc_set_size(struct proc_dir_entry *de, loff_t size) {} in proc_set_size()
115 static inline void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid) {} in proc_set_user()
119 static inline void proc_remove(struct proc_dir_entry *de) {} in proc_remove()
121 static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; } in remove_proc_subtree()
136 static inline struct proc_dir_entry *proc_net_mkdir( in proc_net_mkdir()
137 struct net *net, const char *name, struct proc_dir_entry *parent) in proc_net_mkdir()