Searched refs:timelineID (Results 1 – 11 of 11) sorted by relevance
/frameworks/av/media/common_time/ |
D | ICommonClock.cpp | 54 virtual status_t isCommonTimeValid(bool* valid, uint32_t* timelineID) { in isCommonTimeValid() argument 64 *timelineID = reply.readInt32(); in isCommonTimeValid() 245 uint32_t timelineID; in onTransact() local 246 status_t status = isCommonTimeValid(&valid, &timelineID); in onTransact() 250 reply->writeInt32(timelineID); in onTransact() 407 virtual void onTimelineChanged(uint64_t timelineID) { in onTimelineChanged() argument 411 data.writeInt64(timelineID); in onTimelineChanged() 424 uint32_t timelineID = data.readInt64(); in onTransact() local 425 onTimelineChanged(timelineID); in onTransact()
|
D | cc_helper.cpp | 114 CCHELPER_METHOD(isCommonTimeValid(bool* valid, uint32_t* timelineID), 115 isCommonTimeValid(valid, timelineID))
|
/frameworks/base/libs/common_time/ |
D | common_clock_service.cpp | 42 uint32_t* timelineID) { in isCommonTimeValid() argument 43 return mTimeServer.isCommonTimeValid(valid, timelineID); in isCommonTimeValid() 149 void CommonClockService::notifyOnTimelineChanged(uint64_t timelineID) { in notifyOnTimelineChanged() argument 153 mListeners[i]->onTimelineChanged(timelineID); in notifyOnTimelineChanged()
|
D | common_time_server.cpp | 764 request->timelineID, mTimelineID); in handleWhoIsMasterRequest() 768 if (request->timelineID != ICommonClock::kInvalidTimelineID && in handleWhoIsMasterRequest() 769 request->timelineID != mTimelineID) in handleWhoIsMasterRequest() 802 if (request->timelineID != mTimelineID) in handleWhoIsMasterRequest() 820 if (request->timelineID == ICommonClock::kInvalidTimelineID && in handleWhoIsMasterRequest() 845 response->timelineID, in handleWhoIsMasterResponse() 854 response->timelineID, in handleWhoIsMasterResponse() 867 response->timelineID, in handleWhoIsMasterResponse() 881 (mTimelineID == request->timelineID)) { in handleSyncRequest() 1005 uint64_t newTimelineID = packet->timelineID; in handleMasterAnnouncement() [all …]
|
D | common_clock_service.h | 34 virtual status_t isCommonTimeValid(bool* valid, uint32_t *timelineID); 53 void notifyOnTimelineChanged(uint64_t timelineID);
|
D | common_time_server_packets.h | 48 uint64_t timelineID; variable 63 timelineID = tlID; in initHeader()
|
D | common_time_server.h | 56 status_t isCommonTimeValid(bool* valid, uint32_t* timelineID); 145 uint64_t timelineID,
|
D | common_time_server_packets.cpp | 85 SERIALIZE_INT64(timelineID); in serializeHeader() 97 DESERIALIZE_INT64(timelineID); in deserializeHeader()
|
D | common_time_server_api.cpp | 70 uint32_t* timelineID) { in isCommonTimeValid() argument 73 *timelineID = mTimelineID; in isCommonTimeValid()
|
/frameworks/av/include/common_time/ |
D | cc_helper.h | 48 status_t isCommonTimeValid(bool* valid, uint32_t* timelineID); 59 void onTimelineChanged(uint64_t timelineID);
|
D | ICommonClock.h | 32 virtual void onTimelineChanged(uint64_t timelineID) = 0; 72 virtual status_t isCommonTimeValid(bool* valid, uint32_t* timelineID) = 0;
|