Symbol: event_proc
sbin/devd/devd.cc
1058
add_attach(int prio, event_proc *p)
sbin/devd/devd.cc
1064
add_detach(int prio, event_proc *p)
sbin/devd/devd.cc
1077
add_nomatch(int prio, event_proc *p)
sbin/devd/devd.cc
1083
add_notify(int prio, event_proc *p)
sbin/devd/devd.cc
1088
event_proc *
sbin/devd/devd.cc
1089
add_to_event_proc(event_proc *ep, eps *eps)
sbin/devd/devd.cc
1092
ep = new event_proc();
sbin/devd/devd.cc
163
event_proc::event_proc() : _prio(-1)
sbin/devd/devd.cc
168
event_proc::~event_proc()
sbin/devd/devd.cc
174
event_proc::add(eps *eps)
sbin/devd/devd.cc
180
event_proc::matches(config &c) const
sbin/devd/devd.cc
191
event_proc::run(config &c) const
sbin/devd/devd.cc
463
int operator()(event_proc *const&l1, event_proc *const&l2) const
sbin/devd/devd.cc
470
config::sort_vector(vector<event_proc *> &v)
sbin/devd/devd.cc
526
config::add_attach(int prio, event_proc *p)
sbin/devd/devd.cc
533
config::add_detach(int prio, event_proc *p)
sbin/devd/devd.cc
546
config::add_nomatch(int prio, event_proc *p)
sbin/devd/devd.cc
553
config::add_notify(int prio, event_proc *p)
sbin/devd/devd.cc
738
vector<event_proc *> *l;
sbin/devd/devd.cc
739
vector<event_proc *>::const_iterator i;
sbin/devd/devd.h
36
struct event_proc;
sbin/devd/devd.h
39
void add_attach(int, struct event_proc *);
sbin/devd/devd.h
40
void add_detach(int, struct event_proc *);
sbin/devd/devd.h
42
void add_nomatch(int, struct event_proc *);
sbin/devd/devd.h
43
void add_notify(int, struct event_proc *);
sbin/devd/devd.h
44
struct event_proc *add_to_event_proc(struct event_proc *, struct eps *);
sbin/devd/devd.hh
129
event_proc();
sbin/devd/devd.hh
130
virtual ~event_proc();
sbin/devd/devd.hh
146
void add_attach(int, event_proc *);
sbin/devd/devd.hh
147
void add_detach(int, event_proc *);
sbin/devd/devd.hh
149
void add_nomatch(int, event_proc *);
sbin/devd/devd.hh
150
void add_notify(int, event_proc *);
sbin/devd/devd.hh
167
void sort_vector(std::vector<event_proc *> &);
sbin/devd/devd.hh
177
std::vector<event_proc *> _attach_list;
sbin/devd/devd.hh
178
std::vector<event_proc *> _detach_list;
sbin/devd/devd.hh
179
std::vector<event_proc *> _nomatch_list;
sbin/devd/devd.hh
180
std::vector<event_proc *> _notify_list;
sbin/devd/parse.y
43
struct event_proc *eventproc;