Lines Matching defs:name

94 #define proc_create_seq_data(name, mode, parent, ops, data) \  argument
96 #define proc_create_seq(name, mode, parent, ops) \ argument
101 #define proc_create_single(name, mode, parent, show) \ argument
121 #define proc_create_net(name, mode, parent, ops, state_size) \ argument
161 static inline struct proc_dir_entry *proc_symlink(const char *name, in proc_symlink()
163 static inline struct proc_dir_entry *proc_mkdir(const char *name, 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()
171 static inline struct proc_dir_entry *proc_mkdir_data(const char *name, in proc_mkdir_data()
173 static inline struct proc_dir_entry *proc_mkdir_mode(const char *name, in proc_mkdir_mode()
175 #define proc_create_seq_private(name, mode, parent, ops, size, data) ({NULL;}) argument
176 #define proc_create_seq_data(name, mode, parent, ops, data) ({NULL;}) argument
177 #define proc_create_seq(name, mode, parent, ops) ({NULL;}) argument
178 #define proc_create_single(name, mode, parent, show) ({NULL;}) argument
179 #define proc_create_single_data(name, mode, parent, show, data) ({NULL;}) argument
180 #define proc_create(name, mode, parent, proc_ops) ({NULL;}) argument
181 #define proc_create_data(name, mode, parent, proc_ops, data) ({NULL;}) argument
189 #define remove_proc_entry(name, parent) do {} while (0) argument
190 static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; } in remove_proc_subtree()
192 #define proc_create_net_data(name, mode, parent, ops, state_size, data) ({NULL;}) argument
193 #define proc_create_net(name, mode, parent, state_size, ops) ({NULL;}) argument
194 #define proc_create_net_single(name, mode, parent, show, data) ({NULL;}) argument
206 struct net *net, const char *name, struct proc_dir_entry *parent) in proc_net_mkdir()