OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timelineID
(Results
1 - 11
of
11
) sorted by null
/frameworks/av/include/common_time/
cc_helper.h
48
status_t isCommonTimeValid(bool* valid, uint32_t*
timelineID
);
59
void onTimelineChanged(uint64_t
timelineID
);
ICommonClock.h
32
virtual void onTimelineChanged(uint64_t
timelineID
) = 0;
72
virtual status_t isCommonTimeValid(bool* valid, uint32_t*
timelineID
) = 0;
/frameworks/av/media/common_time/
cc_helper.cpp
83
void CCHelper::CommonClockListener::onTimelineChanged(uint64_t
timelineID
__unused) {
114
CCHELPER_METHOD(isCommonTimeValid(bool* valid, uint32_t*
timelineID
),
115
isCommonTimeValid(valid,
timelineID
))
ICommonClock.cpp
54
virtual status_t isCommonTimeValid(bool* valid, uint32_t*
timelineID
) {
64
*
timelineID
= reply.readInt32();
245
uint32_t
timelineID
;
246
status_t status = isCommonTimeValid(&valid, &
timelineID
);
250
reply->writeInt32(
timelineID
);
407
virtual void onTimelineChanged(uint64_t
timelineID
) {
411
data.writeInt64(
timelineID
);
424
uint32_t
timelineID
= data.readInt64();
425
onTimelineChanged(
timelineID
);
/frameworks/base/libs/common_time/
common_clock_service.h
34
virtual status_t isCommonTimeValid(bool* valid, uint32_t *
timelineID
);
53
void notifyOnTimelineChanged(uint64_t
timelineID
);
common_clock_service.cpp
42
uint32_t*
timelineID
) {
43
return mTimeServer.isCommonTimeValid(valid,
timelineID
);
149
void CommonClockService::notifyOnTimelineChanged(uint64_t
timelineID
) {
153
mListeners[i]->onTimelineChanged(
timelineID
);
common_time_server.cpp
765
request->
timelineID
, mTimelineID);
769
if (request->
timelineID
!= ICommonClock::kInvalidTimelineID &&
770
request->
timelineID
!= mTimelineID)
803
if (request->
timelineID
!= mTimelineID)
821
if (request->
timelineID
== ICommonClock::kInvalidTimelineID &&
846
response->
timelineID
,
855
response->
timelineID
,
868
response->
timelineID
,
[
all
...]
common_time_server_packets.h
48
uint64_t
timelineID
;
63
timelineID
= tlID;
common_time_server.h
56
status_t isCommonTimeValid(bool* valid, uint32_t*
timelineID
);
145
uint64_t
timelineID
,
common_time_server_packets.cpp
85
SERIALIZE_INT64(
timelineID
);
97
DESERIALIZE_INT64(
timelineID
);
common_time_server_api.cpp
70
uint32_t*
timelineID
) {
73
*
timelineID
= mTimelineID;
Completed in 396 milliseconds