Lines Matching refs:name
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,
95 #define proc_create_seq_data(name, mode, parent, ops, data) \ argument
96 proc_create_seq_private(name, mode, parent, ops, 0, data)
97 #define proc_create_seq(name, mode, parent, ops) \ argument
98 proc_create_seq_private(name, mode, parent, ops, 0, NULL)
99 struct proc_dir_entry *proc_create_single_data(const char *name, umode_t mode,
102 #define proc_create_single(name, mode, parent, show) \ argument
103 proc_create_single_data(name, mode, parent, show, NULL)
110 struct proc_dir_entry *proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, c…
119 struct proc_dir_entry *proc_create_net_data(const char *name, umode_t mode,
122 #define proc_create_net(name, mode, parent, ops, state_size) \ argument
123 proc_create_net_data(name, mode, parent, ops, state_size, NULL)
124 struct proc_dir_entry *proc_create_net_single(const char *name, umode_t mode,
127 struct proc_dir_entry *proc_create_net_data_write(const char *name, umode_t mode,
132 struct proc_dir_entry *proc_create_net_single_write(const char *name, umode_t mode,
162 static inline struct proc_dir_entry *proc_symlink(const char *name, in proc_symlink() argument
164 static inline struct proc_dir_entry *proc_mkdir(const char *name, in proc_mkdir() argument
166 static inline struct proc_dir_entry *proc_create_mount_point(const char *name) { return NULL; } in proc_create_mount_point() argument
167 static inline struct proc_dir_entry *_proc_mkdir(const char *name, umode_t mode, in _proc_mkdir() argument
172 static inline struct proc_dir_entry *proc_mkdir_data(const char *name, in proc_mkdir_data() argument
174 static inline struct proc_dir_entry *proc_mkdir_mode(const char *name, in proc_mkdir_mode() argument
176 #define proc_create_seq_private(name, mode, parent, ops, size, data) ({NULL;}) argument
177 #define proc_create_seq_data(name, mode, parent, ops, data) ({NULL;}) argument
178 #define proc_create_seq(name, mode, parent, ops) ({NULL;}) argument
179 #define proc_create_single(name, mode, parent, show) ({NULL;}) argument
180 #define proc_create_single_data(name, mode, parent, show, data) ({NULL;}) argument
181 #define proc_create(name, mode, parent, proc_ops) ({NULL;}) argument
182 #define proc_create_data(name, mode, parent, proc_ops, data) ({NULL;}) argument
190 #define remove_proc_entry(name, parent) do {} while (0) argument
191 static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; } in remove_proc_subtree() argument
193 #define proc_create_net_data(name, mode, parent, ops, state_size, data) ({NULL;}) argument
194 #define proc_create_net_data_write(name, mode, parent, ops, write, state_size, data) ({NULL;}) argument
195 #define proc_create_net(name, mode, parent, state_size, ops) ({NULL;}) argument
196 #define proc_create_net_single(name, mode, parent, show, data) ({NULL;}) argument
197 #define proc_create_net_single_write(name, mode, parent, show, write, data) ({NULL;}) argument
209 struct net *net, const char *name, struct proc_dir_entry *parent) in proc_net_mkdir() argument
211 return _proc_mkdir(name, 0, parent, net, true); in proc_net_mkdir()