OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dataCallbackTimestamp
(Results
1 - 13
of
13
) sorted by null
/frameworks/av/include/camera/
ICameraRecordingProxyListener.h
35
virtual void
dataCallbackTimestamp
(nsecs_t timestamp, int32_t msgType,
ICameraClient.h
37
virtual void
dataCallbackTimestamp
(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& data) = 0;
Camera.h
132
virtual void
dataCallbackTimestamp
(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
/frameworks/av/camera/
ICameraRecordingProxyListener.cpp
38
void
dataCallbackTimestamp
(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData)
64
dataCallbackTimestamp
(timestamp, msgType, imageData);
ICameraClient.cpp
70
void
dataCallbackTimestamp
(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData)
121
dataCallbackTimestamp
(timestamp, msgType, imageData);
Camera.cpp
279
void Camera::
dataCallbackTimestamp
(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr)
290
proxylistener->
dataCallbackTimestamp
(timestamp, msgType, dataPtr);
/frameworks/av/include/media/stagefright/
CameraSource.h
128
virtual void
dataCallbackTimestamp
(int64_t timestampUs, int32_t msgType,
179
// Called from
dataCallbackTimestamp
.
185
virtual void
dataCallbackTimestamp
(int64_t timestampUs, int32_t msgType,
CameraSourceTimeLapse.h
69
// Variable set in
dataCallbackTimestamp
() to help skipCurrentFrame()
86
// takePicture() to complete. This is needed so that
dataCallbackTimestamp
()
98
// Forces the next frame passed to
dataCallbackTimestamp
() to be read
129
// mSkipCurrentFrame is set to true in
dataCallbackTimestamp
() if the current
135
// Then it calls the base CameraSource::
dataCallbackTimestamp
()
136
virtual void
dataCallbackTimestamp
(int64_t timestampUs, int32_t msgType,
/frameworks/av/media/libstagefright/
CameraSourceTimeLapse.cpp
109
// Force
dataCallbackTimestamp
() coming from the video camera to
245
ALOGV("
dataCallbackTimestamp
timelapse: initial frame");
257
ALOGV("
dataCallbackTimestamp
timelapse: forced read");
279
ALOGV("
dataCallbackTimestamp
timelapse: skipping intermediate frame");
286
ALOGV("
dataCallbackTimestamp
timelapse: got timelapse frame");
295
void CameraSourceTimeLapse::
dataCallbackTimestamp
(int64_t timestampUs, int32_t msgType,
297
ALOGV("
dataCallbackTimestamp
");
299
CameraSource::
dataCallbackTimestamp
(timestampUs, msgType, data);
CameraSource.cpp
85
source->
dataCallbackTimestamp
(timestamp/1000, msgType, dataPtr);
813
void CameraSource::
dataCallbackTimestamp
(int64_t timestampUs,
815
ALOGV("
dataCallbackTimestamp
: timestamp %lld us", timestampUs);
871
void CameraSource::ProxyListener::
dataCallbackTimestamp
(
873
mSource->
dataCallbackTimestamp
(timestamp / 1000, msgType, dataPtr);
/frameworks/av/services/camera/libcameraservice/
CameraClient.h
99
static void
dataCallbackTimestamp
(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user);
CameraClient.cpp
87
dataCallbackTimestamp
,
681
//
dataCallbackTimestamp
682
// (others) c->
dataCallbackTimestamp
755
void CameraClient::
dataCallbackTimestamp
(nsecs_t timestamp,
757
LOG2("
dataCallbackTimestamp
(%d)", msgType);
902
c->
dataCallbackTimestamp
(timestamp, msgType, dataPtr);
/frameworks/av/services/camera/libcameraservice/camera2/
StreamingProcessor.cpp
723
l.mRemoteCallback->
dataCallbackTimestamp
(timestamp,
Completed in 1209 milliseconds