Searched refs:via (Results 1 - 9 of 9) 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.h192 // via Callback function that the sink will call as many times as needed to consume data.
208 // The 'via' callback is called by the data sink as follows:
218 virtual ssize_t writeVia(writeVia_t via, size_t total, void *user, size_t block = 0);
291 // via Callback function that the source will call as many times as needed to provide data.
307 // The 'via' callback is called by the data source as follows:
317 virtual ssize_t readVia(readVia_t via, size_t total, void *user, size_t block = 0);
/frameworks/av/media/libnbaio/include/
H A DAudioBufferProviderSource.h46 virtual ssize_t readVia(readVia_t via, size_t total, void *user, size_t block);
H A DNBAIO.h192 // via Callback function that the sink will call as many times as needed to consume data.
208 // The 'via' callback is called by the data sink as follows:
218 virtual ssize_t writeVia(writeVia_t via, size_t total, void *user, size_t block = 0);
291 // via Callback function that the source will call as many times as needed to provide data.
307 // The 'via' callback is called by the data source as follows:
317 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/docs/
H A D__DEPRECATED__DO_NOT_EDIT__.txt10 - Reference documentation is still maintained via building of .java source files,
/frameworks/base/docs/html/
H A D__DEPRECATED__DO_NOT_EDIT__.txt10 - Reference documentation is still maintained via building of .java source files,
/frameworks/base/services/core/java/com/android/server/
H A DNetworkManagementService.java867 * Format: "NNN Route <updated|removed> <dst> [via <gateway] [dev <iface>]"
873 String via = null;
883 } else if (cooked[i].equals("via")) {
884 if (via == null) {
885 via = cooked[i+1];
897 if (via != null) gateway = InetAddress.parseNumericAddress(via);

Completed in 193 milliseconds