HomeSort by relevance Sort by last modified time
    Searched refs:mDataLocator (Results 1 - 5 of 5) sorted by null

  /frameworks/wilhelm/src/android/
android_LocAVPlayer.cpp 53 } else if (mPlayer->setDataSource(mDataLocator.uriRef, NULL /*headers*/) != NO_ERROR) {
63 } else if (mPlayer->setDataSource(mDataLocator.fdi.fd, mDataLocator.fdi.offset,
64 mDataLocator.fdi.length) != NO_ERROR) {
69 if (mDataLocator.fdi.mCloseAfterUse) {
70 (void) ::close(mDataLocator.fdi.fd);
71 mDataLocator.fdi.fd = -1;
72 mDataLocator.fdi.mCloseAfterUse = false;
android_AudioSfDecoder.cpp 192 dataSource = DataSource::CreateFromURI(mDataLocator.uriRef);
194 SL_LOGE("AudioSfDecoder::onPrepare(): Error opening %s", mDataLocator.uriRef);
204 int fd = mDataLocator.fdi.fd;
205 if (mDataLocator.fdi.mCloseAfterUse) {
206 mDataLocator.fdi.mCloseAfterUse = false;
210 dataSource = new FileSource(fd, mDataLocator.fdi.offset, mDataLocator.fdi.length);
android_GenericPlayer.cpp 94 mDataLocator.uriRef = uri;
105 mDataLocator.fdi.fd = fd;
118 mDataLocator.fdi.offset = offset;
121 mDataLocator.fdi.length = sb.st_size;
123 mDataLocator.fdi.length = sb.st_size - offset;
125 mDataLocator.fdi.length = length;
128 mDataLocator.fdi.mCloseAfterUse = closeAfterUse;
274 if (mDataLocatorType == kDataLocatorFd && mDataLocator.fdi.mCloseAfterUse) {
275 (void) ::close(mDataLocator.fdi.fd);
276 // would be redundant, as we're about to invalidate the union mDataLocator
    [all...]
android_GenericPlayer.h 97 DataLocator2 mDataLocator;
android_GenericMediaPlayer.cpp 578 isLocalSource = !isDistantProtocol(mDataLocator.uriRef);

Completed in 92 milliseconds