Searched defs:ack (Results 1 - 4 of 4) sorted by path

/frameworks/av/include/media/
H A DSingleStateQueue.h65 // returns a sequence number which can be used with ack()
85 enum SSQ_STATUS ack() const function in class:android::SingleStateQueue::Mutator
88 // being performed (out-of-order) before the ack read, should the caller be
90 const int32_t ack = android_atomic_acquire_load(&mShared->mAck); local
91 return ack - mSequence & ~1 ? SSQ_PENDING /* seq differ */ :
92 ack & 1 ? SSQ_DONE : SSQ_READ;
96 bool ack(int32_t sequence) const function in class:android::SingleStateQueue::Mutator
153 const int32_t ack = mShared->mAck + 1; local
155 android_atomic_release_store(ack, &mShared->mAck); // mSequence is odd after "done"
/frameworks/av/media/libmedia/include/media/
H A DSingleStateQueue.h65 // returns a sequence number which can be used with ack()
85 enum SSQ_STATUS ack() const function in class:android::SingleStateQueue::Mutator
88 // being performed (out-of-order) before the ack read, should the caller be
90 const int32_t ack = android_atomic_acquire_load(&mShared->mAck); local
91 return ack - mSequence & ~1 ? SSQ_PENDING /* seq differ */ :
92 ack & 1 ? SSQ_DONE : SSQ_READ;
96 bool ack(int32_t sequence) const function in class:android::SingleStateQueue::Mutator
153 const int32_t ack = mShared->mAck + 1; local
155 android_atomic_release_store(ack, &mShared->mAck); // mSequence is odd after "done"
/frameworks/av/services/audioflinger/
H A DStateQueue.cpp96 #define PUSH_BLOCK_ACK_NS 3000000L // 3 ms: time between checks for ack in push()
120 const T *ack = (const T *) mAck; // no additional barrier needed local
121 if (ack == mExpecting) {
164 const T *ack = (const T *) mAck; // no additional barrier needed local
165 if (ack == mExpecting) {
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 118 milliseconds