Symbol: fw_bind
headers/private/firewire/firewire_module.h
30
struct fw_bind * (*fw_bindlookup)(struct firewire_comm *fc, uint16_t dest_hi, uint32_t dest_lo);
headers/private/firewire/firewire_module.h
32
int (*fw_bindadd)(struct firewire_comm *fc, struct fw_bind *fwb);
headers/private/firewire/firewire_module.h
34
int (*fw_bindremove)(struct firewire_comm *fc, struct fw_bind *fwb);
headers/private/firewire/firewirereg.h
181
STAILQ_HEAD(, fw_bind) binds;
headers/private/firewire/firewirereg.h
296
STAILQ_ENTRY(fw_bind) fclist;
headers/private/firewire/firewirereg.h
297
STAILQ_ENTRY(fw_bind) chlist;
headers/private/firewire/firewirereg.h
354
int fw_bindadd (struct firewire_comm *, struct fw_bind *);
headers/private/firewire/firewirereg.h
355
int fw_bindremove (struct firewire_comm *, struct fw_bind *);
headers/private/firewire/firewirereg.h
369
struct fw_bind *fw_bindlookup (struct firewire_comm *, uint16_t, uint32_t);
src/add-ons/kernel/bus_managers/firewire/firewire.cpp
2024
struct fw_bind *bind;
src/add-ons/kernel/bus_managers/firewire/firewire.cpp
811
struct fw_bind *fwb;
src/add-ons/kernel/bus_managers/firewire/firewire.cpp
899
fwb = (struct fw_bind *)malloc(sizeof (struct fw_bind), M_FW, M_NOWAIT);
src/add-ons/kernel/bus_managers/firewire/firewire.cpp
922
struct fw_bind *
src/add-ons/kernel/bus_managers/firewire/firewire.cpp
926
struct fw_bind *tfw, *r = NULL;
src/add-ons/kernel/bus_managers/firewire/firewire.cpp
943
fw_bindadd(struct firewire_comm *fc, struct fw_bind *fwb)
src/add-ons/kernel/bus_managers/firewire/firewire.cpp
945
struct fw_bind *tfw, *prev = NULL;
src/add-ons/kernel/bus_managers/firewire/firewire.cpp
975
fw_bindremove(struct firewire_comm *fc, struct fw_bind *fwb)
src/add-ons/kernel/bus_managers/firewire/firewire.cpp
980
struct fw_bind *tfw;
src/add-ons/kernel/bus_managers/firewire/firewire.cpp
987
STAILQ_REMOVE(&fc->binds, fwb, fw_bind, fclist);
src/add-ons/kernel/drivers/bus/firewire/fw_raw.c
224
struct fw_bind *fwb;
src/add-ons/kernel/drivers/bus/firewire/fw_raw.c
290
struct fw_bind *fwb;
src/add-ons/kernel/drivers/bus/firewire/fw_raw.c
347
fwb = (struct fw_bind *)xfer->sc;
src/add-ons/kernel/drivers/bus/firewire/fw_raw.c
639
struct fw_bind *fwb;
src/add-ons/kernel/drivers/bus/firewire/fw_raw.c
642
fwb = (struct fw_bind *)xfer->sc;
src/add-ons/kernel/drivers/bus/firewire/fw_raw.c
662
struct fw_bind *fwb;
src/add-ons/kernel/drivers/bus/firewire/fw_raw.c
841
STAILQ_REMOVE(&d->binds, fwb, fw_bind, chlist);
src/add-ons/kernel/drivers/bus/firewire/fw_raw.c
854
fwb = (struct fw_bind *)malloc(sizeof (struct fw_bind));
src/add-ons/kernel/drivers/bus/firewire/fw_raw.c
87
STAILQ_HEAD(, fw_bind) binds;