Lines Matching refs:mLiveSnapshotThread
1646 mLiveSnapshotThread(0), in QCamera2HardwareInterface()
5562 if (mLiveSnapshotThread != 0) { in takeLiveSnapshot()
5563 pthread_join(mLiveSnapshotThread,NULL); in takeLiveSnapshot()
5564 mLiveSnapshotThread = 0; in takeLiveSnapshot()
5567 rc= pthread_create(&mLiveSnapshotThread, NULL, Live_Snapshot_thread, (void *) this); in takeLiveSnapshot()
5569 pthread_setname_np(mLiveSnapshotThread, "CAM_liveSnap"); in takeLiveSnapshot()
6028 if (mLiveSnapshotThread != 0) { in cancelLiveSnapshot()
6029 pthread_join(mLiveSnapshotThread,NULL); in cancelLiveSnapshot()
6030 mLiveSnapshotThread = 0; in cancelLiveSnapshot()
6033 rc= pthread_create(&mLiveSnapshotThread, NULL, Live_Snapshot_thread, (void *) this); in cancelLiveSnapshot()
6035 pthread_setname_np(mLiveSnapshotThread, "CAM_cancel_liveSnap"); in cancelLiveSnapshot()