OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rxFront
(Results
1 - 4
of
4
) sorted by null
/cts/apps/CtsVerifier/jni/audio_loopback/
sles.h
52
SLuint32
rxFront
; // oldest recording
sles.cpp
89
assert(pSles->
rxFront
<= pSles->rxBufCount);
91
assert(pSles->
rxFront
!= pSles->rxRear);
92
char *buffer = pSles->rxBuffers[pSles->
rxFront
];
95
if (++pSles->
rxFront
> pSles->rxBufCount) {
96
pSles->
rxFront
= 0;
137
assert(rxRearNext != pSles->
rxFront
);
249
// SLuint32
rxFront
; // oldest recording
284
pSles->
rxFront
; // oldest recording
312
pSles->
rxFront
= 0;
516
assert(rxRearNext != pSles->
rxFront
);
[
all
...]
/external/drrickorang/LoopbackApp/app/src/main/cpp/
sles.h
68
SLuint32
rxFront
; // oldest recording
sles.cpp
117
ASSERT(pSles->
rxFront
<= pSles->rxBufCount);
119
ASSERT(pSles->
rxFront
!= pSles->rxRear);
120
char *buffer = pSles->rxBuffers[pSles->
rxFront
]; //pSles->rxBuffers stores the data recorded
124
if (++pSles->
rxFront
> pSles->rxBufCount) {
125
pSles->
rxFront
= 0;
182
ASSERT(rxRearNext != pSles->
rxFront
);
469
// SLuint32
rxFront
; // oldest recording
500
pSles->
rxFront
; // oldest recording
540
pSles->
rxFront
= 0;
[
all
...]
Completed in 101 milliseconds