OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mAck
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libmedia/include/media/
SingleStateQueue.h
48
void init() {
mAck
= 0; mSequence = 0; }
50
volatile int32_t
mAck
;
90
const int32_t ack = android_atomic_acquire_load(&mShared->
mAck
);
99
return mShared->
mAck
- sequence >= 0;
144
shared->
mAck
= before;
160
const int32_t ack = mShared->
mAck
+ 1;
162
android_atomic_release_store(ack, &mShared->
mAck
); // mSequence is odd after "done"
/frameworks/av/services/audioflinger/
StateQueue.h
67
// read an
mAck
which is actually for the earlier mNext (since there is a race).
192
volatile const T*
mAck
; // written by observer to acknowledge advance of next, read by mutator
199
const T* mExpecting; // what the mutator expects
mAck
to be set to
Completed in 960 milliseconds