Home | History | Annotate | Download | only in bluetooth

Lines Matching defs:self

99 bthub_match(device_t self, cfdata_t cfdata, void *arg)
106 bthub_attach(device_t parent, device_t self, void *aux)
112 dict = device_properties(self);
124 if (!pmf_device_register(self, NULL, NULL)) {
130 aprint_error_dev(self, "couldn't establish power handler\n");
135 bthub_detach(device_t self, int flags)
138 pmf_device_deregister(self);
140 return config_detach_children(self, flags);
181 device_t dev, self;
195 self = device_lookup(&bthub_cd, unit);
196 if (self == NULL)
199 prop = device_properties(self);
219 if (device_parent(dev) != self)
241 dev = config_found(self, dict, bthub_print, CFARGS_NONE);