HomeSort by relevance Sort by last modified time
    Searched refs:numCounterOffers (Results 1 - 14 of 14) 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 138 NBAIO_Format counterOffers[], size_t& numCounterOffers)
140 ALOGV("negotiate offers=%p numOffers=%zu countersOffers=%p numCounterOffers=%zu",
141 offers, numOffers, counterOffers, numCounterOffers);
149 if (numCounterOffers > 0) {
152 numCounterOffers = 1;
154 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 102 // the index of that offer. Otherwise, offeree sets numCounterOffers to the number of
103 // counter-offers (up to a maximumum of the entry value of numCounterOffers), fills in the
105 // from counterOffers[0] to counterOffers[numCounterOffers - 1], and returns NEGOTIATE.
108 // In that case, the offeree sets numCounterOffers to the requested number of counter-offers
109 // (which is greater than the entry value of numCounterOffers), fills in as many of the most
115 // In this case, the offerree should set numCounterOffers appropriately and return NEGOTIATE.
122 NBAIO_Format counterOffers[], size_t& numCounterOffers);
  /frameworks/wilhelm/tests/examples/
slesTestFeedback.cpp 328 size_t numCounterOffers = 0;
329 ssize_t neg = pipeWriter->negotiate(&offer, 1, NULL, numCounterOffers);
332 numCounterOffers = 0;
333 neg = pipeReader->negotiate(&offer, 1, NULL, numCounterOffers);
  /frameworks/wilhelm/tests/sandbox/
playbq.c 561 size_t numCounterOffers = 0;
562 ssize_t neg = pipeWriter->negotiate(&offer, 1, NULL, numCounterOffers);
565 numCounterOffers = 0;
566 neg = pipeReader->negotiate(&offer, 1, NULL, numCounterOffers);
playbq.cpp 561 size_t numCounterOffers = 0;
562 ssize_t neg = pipeWriter->negotiate(&offer, 1, NULL, numCounterOffers);
565 numCounterOffers = 0;
566 neg = pipeReader->negotiate(&offer, 1, NULL, numCounterOffers);
  /frameworks/av/services/audioflinger/
Threads.cpp     [all...]
Tracks.cpp 189 size_t numCounterOffers = 0;
191 ssize_t index = pipe->negotiate(offers, 1, NULL, numCounterOffers);
194 numCounterOffers = 0;
195 index = pipeReader->negotiate(offers, 1, NULL, numCounterOffers);
    [all...]
AudioFlinger.cpp     [all...]
  /hardware/libhardware/modules/audio_remote_submix/
audio_hw.cpp 418 size_t numCounterOffers = 0;
423 ssize_t index = sink->negotiate(offers, 1, NULL, numCounterOffers);
426 numCounterOffers = 0;
427 index = source->negotiate(offers, 1, NULL, numCounterOffers);
    [all...]

Completed in 1748 milliseconds