Symbol: event_proc
sbin/devd/devd.cc
1161
add_attach(int prio, event_proc *p)
sbin/devd/devd.cc
1167
add_detach(int prio, event_proc *p)
sbin/devd/devd.cc
1180
add_nomatch(int prio, event_proc *p)
sbin/devd/devd.cc
1186
add_notify(int prio, event_proc *p)
sbin/devd/devd.cc
1191
event_proc *
sbin/devd/devd.cc
1192
add_to_event_proc(event_proc *ep, eps *eps)
sbin/devd/devd.cc
1195
ep = new event_proc();
sbin/devd/devd.cc
177
event_proc::event_proc() : _prio(-1)
sbin/devd/devd.cc
182
event_proc::~event_proc()
sbin/devd/devd.cc
188
event_proc::add(eps *eps)
sbin/devd/devd.cc
194
event_proc::matches(config &c) const
sbin/devd/devd.cc
205
event_proc::run(config &c) const
sbin/devd/devd.cc
505
int operator()(event_proc *const&l1, event_proc *const&l2) const
sbin/devd/devd.cc
512
config::sort_vector(vector<event_proc *> &v)
sbin/devd/devd.cc
568
config::add_attach(int prio, event_proc *p)
sbin/devd/devd.cc
575
config::add_detach(int prio, event_proc *p)
sbin/devd/devd.cc
588
config::add_nomatch(int prio, event_proc *p)
sbin/devd/devd.cc
595
config::add_notify(int prio, event_proc *p)
sbin/devd/devd.cc
813
vector<event_proc *> *l;
sbin/devd/devd.cc
814
vector<event_proc *>::const_iterator i;
sbin/devd/devd.h
35
struct event_proc;
sbin/devd/devd.h
38
void add_attach(int, struct event_proc *);
sbin/devd/devd.h
39
void add_detach(int, struct event_proc *);
sbin/devd/devd.h
41
void add_nomatch(int, struct event_proc *);
sbin/devd/devd.h
42
void add_notify(int, struct event_proc *);
sbin/devd/devd.h
43
struct event_proc *add_to_event_proc(struct event_proc *, struct eps *);
sbin/devd/devd.hh
131
event_proc();
sbin/devd/devd.hh
132
virtual ~event_proc();
sbin/devd/devd.hh
148
void add_attach(int, event_proc *);
sbin/devd/devd.hh
149
void add_detach(int, event_proc *);
sbin/devd/devd.hh
151
void add_nomatch(int, event_proc *);
sbin/devd/devd.hh
152
void add_notify(int, event_proc *);
sbin/devd/devd.hh
169
void sort_vector(std::vector<event_proc *> &);
sbin/devd/devd.hh
180
std::vector<event_proc *> _attach_list;
sbin/devd/devd.hh
181
std::vector<event_proc *> _detach_list;
sbin/devd/devd.hh
182
std::vector<event_proc *> _nomatch_list;
sbin/devd/devd.hh
183
std::vector<event_proc *> _notify_list;
sbin/devd/parse.y
42
struct event_proc *eventproc;