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

  /hardware/libhardware/modules/usbcamera/
CameraHAL.cpp 42 mHotplugThread = new HotplugThread(this);
43 mHotplugThread->run("usb-camera-hotplug");
50 if (mHotplugThread != NULL) {
51 mHotplugThread->requestExit();
59 if (mHotplugThread != NULL) {
60 mHotplugThread->join();
63 delete mHotplugThread;
CameraHAL.h 55 HotplugThread *mHotplugThread;
  /device/asus/fugu/libaudio/
AudioHardwareInput.cpp 41 mHotplugThread = new AudioHotplugThread(*this);
42 if (mHotplugThread == NULL) {
45 } else if (!mHotplugThread->start()) {
48 mHotplugThread.clear();
58 if (mHotplugThread != NULL) {
59 mHotplugThread->shutdown();
60 mHotplugThread.clear();
AudioHardwareInput.h 76 sp<AudioHotplugThread> mHotplugThread;
  /device/generic/goldfish/camera/
EmulatedCameraFactory.h 195 sp<EmulatedCameraHotplugThread> mHotplugThread;
EmulatedCameraFactory.cpp 181 mHotplugThread = new EmulatedCameraHotplugThread(&cameraIdVector[0],
183 mHotplugThread->run();
200 if (mHotplugThread != NULL) {
201 mHotplugThread->requestExit();
202 mHotplugThread->join();

Completed in 99 milliseconds