HomeSort by relevance Sort by last modified time
    Searched refs:wdf_object_ext (Results 1 - 5 of 5) sorted by null

  /development/host/windows/usb/legacy/driver/
android_usb_wdf_object.cpp 82 ASSERT((0 == context->object_type) && (NULL == context->wdf_object_ext));
83 if ((0 != context->object_type) || (NULL != context->wdf_object_ext))
87 context->wdf_object_ext = this;
123 ASSERT(((0 == context->object_type) && (NULL == context->wdf_object_ext)) ||
124 ((0 != context->object_type) && (NULL != context->wdf_object_ext)));
125 if (NULL != context->wdf_object_ext) {
126 ASSERT(context->wdf_object_ext->Is(context->object_type));
127 context->wdf_object_ext->OnEvtCleanupCallback();
142 ASSERT(((0 == context->object_type) && (NULL == context->wdf_object_ext)) ||
143 ((0 != context->object_type) && (NULL != context->wdf_object_ext)));
    [all...]
android_usb_file_object.h 161 AndroidUsbWdfObject* wdf_object_ext = local
163 ASSERT(NULL != wdf_object_ext);
164 if (NULL != wdf_object_ext) {
165 ASSERT(wdf_object_ext->Is(AndroidUsbWdfObjectTypeFile));
166 if (wdf_object_ext->Is(AndroidUsbWdfObjectTypeFile))
167 return reinterpret_cast<AndroidUsbFileObject*>(wdf_object_ext);
android_usb_wdf_object.h 178 ASSERT((NULL != context) && (NULL != context->wdf_object_ext) &&
179 (context->wdf_object_ext->Is(context->object_type)));
180 if ((NULL != context) && (NULL != context->wdf_object_ext) &&
181 context->wdf_object_ext->Is(context->object_type)) {
182 return context->wdf_object_ext;
android_usb_device_object.h 592 AndroidUsbWdfObject* wdf_object_ext = local
594 ASSERT((NULL != wdf_object_ext) &&
595 wdf_object_ext->Is(AndroidUsbWdfObjectTypeDevice));
596 if ((NULL != wdf_object_ext) &&
597 wdf_object_ext->Is(AndroidUsbWdfObjectTypeDevice)) {
598 return reinterpret_cast<AndroidUsbDeviceObject*>(wdf_object_ext);
android_usb_driver_defines.h 101 class AndroidUsbWdfObject* wdf_object_ext; member in struct:TagAndroidUsbWdfObjectContext

Completed in 84 milliseconds