Searched refs:via (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/include/media/nbaio/
H A DAudioBufferProviderSource.h46 virtual ssize_t readVia(readVia_t via, size_t total, void *user, size_t block);
H A DNBAIO.h184 // via Callback function that the sink will call as many times as needed to consume data.
200 // The 'via' callback is called by the data sink as follows:
210 virtual ssize_t writeVia(writeVia_t via, size_t total, void *user, size_t block = 0);
272 // via Callback function that the source will call as many times as needed to provide data.
288 // The 'via' callback is called by the data source as follows:
298 virtual ssize_t readVia(readVia_t via, size_t total, void *user, size_t block = 0);
/frameworks/av/media/libnbaio/
H A DNBAIO.cpp64 ssize_t NBAIO_Sink::writeVia(writeVia_t via, size_t total, void *user, size_t block) argument
83 ssize_t ret = via(user, buffer, count);
100 ssize_t NBAIO_Source::readVia(readVia_t via, size_t total, void *user, size_t block) argument
123 ret = via(user, buffer, maxRet);
H A DAudioBufferProviderSource.cpp82 ssize_t AudioBufferProviderSource::readVia(readVia_t via, size_t total, void *user, size_t block) argument
120 ssize_t ret = via(user, (char *) mBuffer.raw + (mConsumed * mFrameSize), count);
/frameworks/base/services/core/java/com/android/server/
H A DNetworkManagementService.java918 * Format: "NNN Route <updated|removed> <dst> [via <gateway] [dev <iface>]"
924 String via = null;
934 } else if (cooked[i].equals("via")) {
935 if (via == null) {
936 via = cooked[i+1];
948 if (via != null) gateway = InetAddress.parseNumericAddress(via);

Completed in 123 milliseconds