Lines Matching defs:name

34 #define proc_create_seq_data(name, mode, parent, ops, data) \  argument
36 #define proc_create_seq(name, mode, parent, ops) \ argument
41 #define proc_create_single(name, mode, parent, show) \ argument
61 #define proc_create_net(name, mode, parent, state_size, ops) \ argument
87 static inline struct proc_dir_entry *proc_symlink(const char *name, in proc_symlink()
89 static inline struct proc_dir_entry *proc_mkdir(const char *name, in proc_mkdir()
91 static inline struct proc_dir_entry *proc_create_mount_point(const char *name) { return NULL; } in proc_create_mount_point()
92 static inline struct proc_dir_entry *proc_mkdir_data(const char *name, in proc_mkdir_data()
94 static inline struct proc_dir_entry *proc_mkdir_mode(const char *name, in proc_mkdir_mode()
96 #define proc_create_seq_private(name, mode, parent, ops, size, data) ({NULL;}) argument
97 #define proc_create_seq_data(name, mode, parent, ops, data) ({NULL;}) argument
98 #define proc_create_seq(name, mode, parent, ops) ({NULL;}) argument
99 #define proc_create_single(name, mode, parent, show) ({NULL;}) argument
100 #define proc_create_single_data(name, mode, parent, show, data) ({NULL;}) argument
101 #define proc_create(name, mode, parent, proc_fops) ({NULL;}) argument
102 #define proc_create_data(name, mode, parent, proc_fops, data) ({NULL;}) argument
110 #define remove_proc_entry(name, parent) do {} while (0) argument
111 static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; } in remove_proc_subtree()
113 #define proc_create_net_data(name, mode, parent, ops, state_size, data) ({NULL;}) argument
114 #define proc_create_net(name, mode, parent, state_size, ops) ({NULL;}) argument
115 #define proc_create_net_single(name, mode, parent, show, data) ({NULL;}) argument
122 struct net *net, const char *name, struct proc_dir_entry *parent) in proc_net_mkdir()