OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:numCounterOffers
(Results
1 - 13
of
13
) sorted by null
/frameworks/av/media/libnbaio/
SourceAudioBufferProvider.cpp
34
size_t
numCounterOffers
= 1;
35
ssize_t index = source->negotiate(NULL, 0, counterOffers,
numCounterOffers
);
36
ALOG_ASSERT(index == (ssize_t) NEGOTIATE &&
numCounterOffers
> 0);
37
numCounterOffers
= 0;
38
index = source->negotiate(counterOffers, 1, NULL,
numCounterOffers
);
AudioStreamInSource.cpp
41
NBAIO_Format counterOffers[], size_t&
numCounterOffers
)
54
return NBAIO_Source::negotiate(offers, numOffers, counterOffers,
numCounterOffers
);
NBAIO.cpp
215
NBAIO_Format counterOffers[], size_t&
numCounterOffers
)
217
ALOGV("negotiate offers=%p numOffers=%u countersOffers=%p
numCounterOffers
=%u",
218
offers, numOffers, counterOffers,
numCounterOffers
);
226
if (
numCounterOffers
> 0) {
229
numCounterOffers
= 1;
231
numCounterOffers
= 0;
AudioStreamOutSink.cpp
38
NBAIO_Format counterOffers[], size_t&
numCounterOffers
)
51
return NBAIO_Sink::negotiate(offers, numOffers, counterOffers,
numCounterOffers
);
/frameworks/av/include/media/nbaio/
AudioStreamInSource.h
35
NBAIO_Format counterOffers[], size_t&
numCounterOffers
);
AudioStreamOutSink.h
35
NBAIO_Format counterOffers[], size_t&
numCounterOffers
);
NBAIO.h
91
// the index of that offer. Otherwise, offeree sets
numCounterOffers
to the number of
92
// counter-offers (up to a maximumum of the entry value of
numCounterOffers
), fills in the
94
// from counterOffers[0] to counterOffers[
numCounterOffers
- 1], and returns NEGOTIATE.
97
// In that case, the offeree sets
numCounterOffers
to the requested number of counter-offers
98
// (which is greater than the entry value of
numCounterOffers
), fills in as many of the most
104
// In this case, the offerree should set
numCounterOffers
appropriately and return NEGOTIATE.
111
NBAIO_Format counterOffers[], size_t&
numCounterOffers
);
/frameworks/wilhelm/tests/sandbox/
playbq.c
460
size_t
numCounterOffers
= 0;
461
ssize_t neg = pipeWriter->negotiate(&offer, 1, NULL,
numCounterOffers
);
464
numCounterOffers
= 0;
465
neg = pipeReader->negotiate(&offer, 1, NULL,
numCounterOffers
);
playbq.cpp
460
size_t
numCounterOffers
= 0;
461
ssize_t neg = pipeWriter->negotiate(&offer, 1, NULL,
numCounterOffers
);
464
numCounterOffers
= 0;
465
neg = pipeReader->negotiate(&offer, 1, NULL,
numCounterOffers
);
/hardware/libhardware/modules/audio_remote_submix/
audio_hw.cpp
571
size_t
numCounterOffers
= 0;
574
ssize_t index = sink->negotiate(offers, 1, NULL,
numCounterOffers
);
577
numCounterOffers
= 0;
578
index = source->negotiate(offers, 1, NULL,
numCounterOffers
);
/frameworks/av/services/audioflinger/
Tracks.cpp
153
size_t
numCounterOffers
= 0;
155
ssize_t index = pipe->negotiate(offers, 1, NULL,
numCounterOffers
);
158
numCounterOffers
= 0;
159
index = pipeReader->negotiate(offers, 1, NULL,
numCounterOffers
);
[
all
...]
AudioFlinger.cpp
[
all
...]
Threads.cpp
[
all
...]
Completed in 343 milliseconds