HomeSort by relevance Sort by last modified time
    Searched refs:DataSource (Results 51 - 75 of 266) sorted by null

1 23 4 5 6 7 8 91011

  /frameworks/av/media/libstagefright/include/
ItemTable.h 28 class DataSource;
47 explicit ItemTable(const sp<DataSource> &source);
63 sp<DataSource> mDataSource;
HTTPBase.h 22 #include <media/stagefright/DataSource.h>
28 struct HTTPBase : public DataSource {
MPEG4Extractor.h 23 #include <media/stagefright/DataSource.h>
32 class DataSource;
56 explicit MPEG4Extractor(const sp<DataSource> &source);
100 sp<DataSource> mDataSource;
160 const sp<DataSource> &source, String8 *mimeType, float *confidence,
AVIExtractor.h 29 AVIExtractor(const sp<DataSource> &dataSource);
81 sp<DataSource> mDataSource;
122 const sp<DataSource> &source, String8 *mimeType, float *confidence,
SampleTable.h 30 class DataSource;
35 explicit SampleTable(const sp<DataSource> &source);
101 sp<DataSource> mDataSource;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
SsidSetStoreData.java 47 private final DataSource mDataSource;
52 public interface DataSource {
72 * @param dataSource The DataSource that implements the update and retrieval of the SSID set.
74 SsidSetStoreData(String name, DataSource dataSource) {
76 mDataSource = dataSource;
  /frameworks/av/media/libmedia/include/media/
IMediaExtractor.h 22 #include <media/stagefright/DataSource.h>
85 const sp<DataSource> &source,
IDataSource.h 30 // A binder interface for implementing a stagefright DataSource remotely.
33 DECLARE_META_INTERFACE(DataSource);
49 // Refer to DataSource:Flags for the definition of the flags.
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerFactory.h 47 const sp<DataSource> &/*source*/,
65 const sp<DataSource> &source);
  /frameworks/av/media/libstagefright/include/media/stagefright/
FileSource.h 23 #include <media/stagefright/DataSource.h>
30 class FileSource : public DataSource {
NuMediaExtractor.h 34 class DataSource;
61 status_t setDataSource(const sp<DataSource> &datasource);
111 sp<DataSource> mDataSource;
  /frameworks/av/media/libstagefright/
AMRExtractor.cpp 24 #include <media/stagefright/DataSource.h>
36 AMRSource(const sp<DataSource> &source,
54 sp<DataSource> mDataSource;
100 static status_t getFrameSizeByOffset(const sp<DataSource> &source,
119 AMRExtractor::AMRExtractor(const sp<DataSource> &source)
209 const sp<DataSource> &source, const sp<MetaData> &meta,
342 const sp<DataSource> &source, String8 *mimeType, float *confidence,
ThrottledSource.cpp 25 const sp<DataSource> &source,
AACExtractor.cpp 27 #include <media/stagefright/DataSource.h>
39 AACSource(const sp<DataSource> &source,
57 sp<DataSource> mDataSource;
95 static size_t getAdtsFrameLength(const sp<DataSource> &source, off64_t offset, size_t* headerSize) {
136 const sp<DataSource> &source, const sp<AMessage> &_meta)
238 const sp<DataSource> &source, const sp<MetaData> &meta,
337 const sp<DataSource> &source, String8 *mimeType, float *confidence,
  /external/autotest/frontend/client/src/autotest/common/table/
JSONObjectComparator.java 3 import autotest.common.table.DataSource.SortSpec;
DynamicTable.java 4 import autotest.common.table.DataSource.DataCallback;
5 import autotest.common.table.DataSource.Query;
6 import autotest.common.table.DataSource.SortDirection;
7 import autotest.common.table.DataSource.SortSpec;
52 protected DataSource dataSource;
66 public DynamicTable(String[][] columns, DataSource dataSource) {
68 setDataSource(dataSource);
238 dataSource.query(params, this)
    [all...]
DynamicTableSelectionManager.java 4 import autotest.common.table.DataSource.DefaultDataCallback;
5 import autotest.common.table.DataSource.Query;
  /frameworks/support/paging/common/src/main/java/android/arch/paging/
PagedList.java 28 * Lazy loading list that pages in content from a {@link DataSource}.
30 * A PagedList is a {@link List} which loads its data in chunks (pages) from a {@link DataSource}.
36 * All data in a PagedList is loaded from its {@link DataSource}. Creating a PagedList loads data
37 * from the DataSource immediately, and should for this reason be done on a background thread. The
86 * DataSource returns {@link DataSource#COUNT_UNDEFINED} from any item counting method, or if
103 * @param dataSource DataSource providing data to the PagedList
109 * @param <K> Key type that indicates to the DataSource what data to load.
112 * @return Newly created PagedList, which will page in data from the DataSource as needed
    [all...]
TiledDataSource.java 61 * // the user table has been invalidated, invalidate the DataSource
87 public abstract class TiledDataSource<Type> extends DataSource<Integer, Type> {
90 * Number of items that this DataSource can provide in total.
92 * @return Number of items this DataSource can provide. Must be <code>0</code> or greater.
116 * DataSource is no longer valid, and should not be queried again.
  /frameworks/base/media/jni/
android_media_MediaExtractor.h 22 #include <media/stagefright/DataSource.h>
45 status_t setDataSource(const sp<DataSource> &source);
  /frameworks/wilhelm/src/android/
android_AudioSfDecoder.h 20 #include <media/stagefright/DataSource.h>
100 sp<DataSource> mDataSource; // where the raw data comes from
  /packages/apps/TV/src/com/android/tv/tuner/exoplayer/
MpegTsRendererBuilder.java 24 import com.google.android.exoplayer.upstream.DataSource;
48 public void buildRenderers(MpegTsPlayer mpegTsPlayer, DataSource dataSource,
51 SampleExtractor extractor = dataSource == null ?
53 new MpegTsSampleExtractor(dataSource, mBufferManager, mBufferListener);
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
ByteBufferDataSource.java 20 import com.android.apksig.util.DataSource;
25 * {@link DataSource} backed by a {@link ByteBuffer}.
27 public class ByteBufferDataSource implements DataSource {
  /tools/apksig/src/test/java/com/android/apksig/
ApkSignerTest.java 25 import com.android.apksig.util.DataSource;
155 DataSource in =
272 DataSource out = sign(in, new ApkSigner.Builder(signers).setMinSdkVersion(1));
290 DataSource out = sign(in, new ApkSigner.Builder(signers).setMinSdkVersion(1));
309 DataSource out = sign(in, new ApkSigner.Builder(signers).setMinSdkVersion(18));
370 DataSource out = sign(inResourceName, apkSignerBuilder);
415 private DataSource sign(
417 DataSource in =
429 private static ApkVerifier.Result verifyForMinSdkVersion(DataSource apk, int minSdkVersion)
434 private static ApkVerifier.Result verify(DataSource apk, Integer minSdkVersionOverride
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/
ApkSigner.java 31 import com.android.apksig.util.DataSource;
95 private final DataSource mInputApkDataSource;
99 private final DataSource mOutputApkDataSource;
110 DataSource inputApkDataSource,
113 DataSource outputApkDataSource) {
149 DataSource inputApk;
164 DataSource outputApkIn;
192 DataSource inputApk,
194 DataSource outputApkIn)
205 DataSource inputApkSigningBlock = null
    [all...]

Completed in 1371 milliseconds

1 23 4 5 6 7 8 91011