OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mCaptureThread
(Results
1 - 7
of
7
) sorted by null
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
CaptureHolder.java
60
private CaptureThread
mCaptureThread
;
109
if (
mCaptureThread
!= null &&
mCaptureThread
.getState() != Thread.State.TERMINATED) {
112
mCaptureThread
.updateRank(rank);
134
mCaptureThread
= new CaptureThread(cs, indexOfLeastInteresting);
135
mCaptureThread
.start();
144
if (
mCaptureThread
== null || !
mCaptureThread
.stopLoopbackListenerScript()) {
/packages/services/Car/evs/sampleDriver/
VideoCapture.h
64
std::thread
mCaptureThread
; // The thread we'll use to dispatch frames
VideoCapture.cpp
217
mCaptureThread
= std::thread([this](){ collectFrames(); });
235
if (
mCaptureThread
.joinable()) {
236
mCaptureThread
.join();
/frameworks/av/media/libmedia/
Visualizer.cpp
63
sp<CaptureThread> t =
mCaptureThread
;
105
if (
mCaptureThread
!= 0) {
107
mCaptureThread
->requestExitAndWait();
111
mCaptureThread
.clear();
118
mCaptureThread
= new CaptureThread(*this, rate, ((flags & CAPTURE_CALL_JAVA) != 0));
121
rate,
mCaptureThread
.get(), mCaptureFlags);
/frameworks/av/media/libmedia/include/media/
Visualizer.h
171
sp<CaptureThread>
mCaptureThread
;
/hardware/interfaces/automotive/evs/1.0/default/
EvsCamera.h
72
std::thread
mCaptureThread
; // The thread we'll use to synthesize frames
101
// Synchronization necessary to deconflict
mCaptureThread
from the main service thread
EvsCamera.cpp
169
mCaptureThread
= std::thread([this](){ generateFrames(); });
224
mCaptureThread
.join();
Completed in 486 milliseconds