Lines Matching defs:name

93 #define proc_create_seq_data(name, mode, parent, ops, data) \  argument
95 #define proc_create_seq(name, mode, parent, ops) \ argument
100 #define proc_create_single(name, mode, parent, show) \ argument
120 #define proc_create_net(name, mode, parent, ops, state_size) \ argument
160 static inline struct proc_dir_entry *proc_symlink(const char *name, in proc_symlink()
162 static inline struct proc_dir_entry *proc_mkdir(const char *name, in proc_mkdir()
164 static inline struct proc_dir_entry *proc_create_mount_point(const char *name) { return NULL; } in proc_create_mount_point()
165 static inline struct proc_dir_entry *proc_mkdir_data(const char *name, in proc_mkdir_data()
167 static inline struct proc_dir_entry *proc_mkdir_mode(const char *name, in proc_mkdir_mode()
169 #define proc_create_seq_private(name, mode, parent, ops, size, data) ({NULL;}) argument
170 #define proc_create_seq_data(name, mode, parent, ops, data) ({NULL;}) argument
171 #define proc_create_seq(name, mode, parent, ops) ({NULL;}) argument
172 #define proc_create_single(name, mode, parent, show) ({NULL;}) argument
173 #define proc_create_single_data(name, mode, parent, show, data) ({NULL;}) argument
174 #define proc_create(name, mode, parent, proc_ops) ({NULL;}) argument
175 #define proc_create_data(name, mode, parent, proc_ops, data) ({NULL;}) argument
183 #define remove_proc_entry(name, parent) do {} while (0) argument
184 static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; } in remove_proc_subtree()
186 #define proc_create_net_data(name, mode, parent, ops, state_size, data) ({NULL;}) argument
187 #define proc_create_net(name, mode, parent, state_size, ops) ({NULL;}) argument
188 #define proc_create_net_single(name, mode, parent, show, data) ({NULL;}) argument
200 struct net *net, const char *name, struct proc_dir_entry *parent) in proc_net_mkdir()