Home | History | Annotate | Download | only in kern

Lines Matching defs:impl

49 	if (handlep->impl == NULL) {
52 return handlep->impl->type != DEVHANDLE_TYPE_INVALID;
65 .impl = NULL,
78 return handle.impl->type;
101 /* For private handles, we also compare the impl pointers. */
103 intptr_t impl1 = (intptr_t)handle1.impl;
104 intptr_t impl2 = (intptr_t)handle2.impl;
128 const struct devhandle_impl *impl;
137 for (impl = handle.impl; impl != NULL; impl = impl->super) {
138 if (impl->lookup_device_call != NULL) {
139 call = impl->lookup_device_call(handle, name,
168 devhandle_impl_subclass(new_impl, handle.impl, new_lookup);
169 handle.impl = new_impl;