HomeSort by relevance Sort by last modified time
    Searched refs:numCounterOffers (Results 1 - 11 of 11) 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)
53 return NBAIO_Source::negotiate(offers, numOffers, counterOffers, numCounterOffers);
NBAIO.cpp 137 NBAIO_Format counterOffers[], size_t& numCounterOffers)
139 ALOGV("negotiate offers=%p numOffers=%zu countersOffers=%p numCounterOffers=%zu",
140 offers, numOffers, counterOffers, numCounterOffers);
148 if (numCounterOffers > 0) {
151 numCounterOffers = 1;
153 numCounterOffers = 0;
AudioStreamOutSink.cpp 38 NBAIO_Format counterOffers[], size_t& numCounterOffers)
50 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 101 // the index of that offer. Otherwise, offeree sets numCounterOffers to the number of
102 // counter-offers (up to a maximumum of the entry value of numCounterOffers), fills in the
104 // from counterOffers[0] to counterOffers[numCounterOffers - 1], and returns NEGOTIATE.
107 // In that case, the offeree sets numCounterOffers to the requested number of counter-offers
108 // (which is greater than the entry value of numCounterOffers), fills in as many of the most
114 // In this case, the offerree should set numCounterOffers appropriately and return NEGOTIATE.
121 NBAIO_Format counterOffers[], size_t& numCounterOffers);
  /frameworks/av/services/audioflinger/
Tracks.cpp 187 size_t numCounterOffers = 0;
189 ssize_t index = pipe->negotiate(offers, 1, NULL, numCounterOffers);
192 numCounterOffers = 0;
193 index = pipeReader->negotiate(offers, 1, NULL, numCounterOffers);
    [all...]
Threads.cpp     [all...]
AudioFlinger.cpp     [all...]
  /hardware/libhardware/modules/audio_remote_submix/
audio_hw.cpp 420 size_t numCounterOffers = 0;
425 ssize_t index = sink->negotiate(offers, 1, NULL, numCounterOffers);
428 numCounterOffers = 0;
429 index = source->negotiate(offers, 1, NULL, numCounterOffers);
    [all...]

Completed in 195 milliseconds