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

1 2 34 5 6 7 8 91011

  /frameworks/support/room/integration-tests/testapp/src/main/java/android/arch/persistence/room/integration/testapp/
CustomerViewModel.java 23 import android.arch.paging.DataSource;
100 protected DataSource<String, Customer> createDataSource() {
  /packages/apps/TV/
proguard.flags 36 -keepclasseswithmembers class com.android.tv.tuner.*DataSource {
  /tools/apksig/src/main/java/com/android/apksig/internal/zip/
LocalFileRecord.java 21 import com.android.apksig.util.DataSource;
124 DataSource apk,
142 DataSource apk,
299 public long outputRecord(DataSource sourceApk, DataSink output) throws IOException {
310 DataSource sourceApk,
378 DataSource lfhSection,
400 // No need to check whether output size is as expected because DataSource.feed is
418 DataSource source,
441 DataSource source,
  /tools/apksig/src/test/java/com/android/apksig/util/
DataSourceFromRAFChunkTest.java 30 * Tests for the {@link DataSource} returned by
39 DataSource ds = c.getDataSource();
40 DataSource slice = ds.slice(3, 2);
DataSourceFromRAFTest.java 32 * Tests for the {@link DataSource} returned by
41 DataSource ds = c.getDataSource();
42 DataSource slice = ds.slice(3, 2);
DataSourceFromByteBufferTest.java 27 * Tests for the {@link DataSource} returned by {@link DataSources#asDataSource(ByteBuffer)}.
37 DataSource ds = DataSources.asDataSource(buf);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.h 33 class DataSource;
52 status_t setDataSource(const sp<DataSource>& dataSource);
237 sp<DataSource> mDataSource;
239 sp<DataSource> mHttpSource;
  /frameworks/av/media/libstagefright/
MediaExtractor.cpp 42 #include <media/stagefright/DataSource.h>
122 const sp<DataSource> &source, const char *mime) {
147 const sp<DataSource> &source, const char *mime) {
231 const sp<DataSource> &source, String8 *mimeType, float *confidence, sp<AMessage> *meta) {
ItemTable.cpp 22 #include <media/stagefright/DataSource.h>
87 Box(const sp<DataSource> source, uint32_t type) :
99 inline sp<DataSource> source() const { return mDataSource; }
106 sp<DataSource> mDataSource;
181 FullBox(const sp<DataSource> source, uint32_t type) :
216 PitmBox(const sp<DataSource> source) :
296 IlocBox(const sp<DataSource> source, KeyedVector<uint32_t, ItemLoc> *itemLocs) :
466 ItemReference(const sp<DataSource> source, uint32_t type, uint32_t itemIdSize) :
551 IrefBox(const sp<DataSource> source, Vector<sp<ItemReference> > *itemRefs) :
613 IspeBox(const sp<DataSource> source)
    [all...]
FLACExtractor.cpp 28 #include <media/stagefright/DataSource.h>
43 const sp<DataSource> &dataSource,
57 sp<DataSource> mDataSource;
81 const sp<DataSource> &dataSource,
121 sp<DataSource> mDataSource;
490 const sp<DataSource> &dataSource,
493 : mDataSource(dataSource),
    [all...]
WAVExtractor.cpp 25 #include <media/stagefright/DataSource.h>
60 const sp<DataSource> &dataSource,
81 sp<DataSource> mDataSource;
97 WAVExtractor::WAVExtractor(const sp<DataSource> &source)
351 const sp<DataSource> &dataSource,
356 : mDataSource(dataSource),
548 const sp<DataSource> &source, String8 *mimeType, float *confidence,
JPEGSource.cpp 22 #include <media/stagefright/DataSource.h>
54 JPEGSource::JPEGSource(const sp<DataSource> &source)
VBRISeeker.cpp 30 #include <media/stagefright/DataSource.h>
41 const sp<DataSource> &source, off64_t post_id3_pos) {
XINGSeeker.cpp 23 #include <media/stagefright/DataSource.h>
80 const sp<DataSource> &source, off64_t first_frame_pos) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
PasspointObjectFactory.java 61 * @param dataSource Passpoint configuration data source
65 SIMAccessor simAccessor, PasspointConfigStoreData.DataSource dataSource) {
66 return new PasspointConfigStoreData(keyStore, simAccessor, dataSource);
  /frameworks/support/paging/common/src/main/java/android/arch/paging/
ContiguousDataSource.java 28 public abstract class ContiguousDataSource<Key, Value> extends DataSource<Key, Value> {
30 * Number of items that this DataSource can provide in total, or COUNT_UNDEFINED.
32 * @return number of items that this DataSource can provide in total, or COUNT_UNDEFINED
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
ByteArrayDataSink.java 20 import com.android.apksig.util.DataSource;
28 * {@link DataSource} interface.
162 public DataSource slice(long offset, long size) {
171 private class SliceDataSource implements DataSource {
210 public DataSource slice(long offset, long size) {
RandomAccessFileDataSource.java 20 import com.android.apksig.util.DataSource;
28 * {@link DataSource} backed by a {@link RandomAccessFile}.
30 public class RandomAccessFileDataSource implements DataSource {
  /tools/apksig/src/main/java/com/android/apksig/internal/apk/v2/
V2SchemeVerifier.java 27 import com.android.apksig.util.DataSource;
86 public static Result verify(DataSource apk, ApkUtils.ZipSections zipSections)
92 DataSource beforeApkSigningBlock = apk.slice(0, signatureInfo.apkSigningBlockOffset);
93 DataSource centralDir =
113 DataSource beforeApkSigningBlock,
115 DataSource centralDir,
448 DataSource beforeApkSigningBlock,
449 DataSource centralDir,
472 new DataSource[] {
555 DataSource apk, ApkUtils.ZipSections zipSections, Result result
    [all...]
V2SchemeSigner.java 22 import com.android.apksig.util.DataSource;
173 DataSource beforeCentralDir,
174 DataSource centralDir,
175 DataSource eocd,
208 new DataSource[] {
224 DataSource[] contents) throws IOException, NoSuchAlgorithmException, DigestException {
236 for (DataSource input : contents) {
278 for (DataSource input : contents) {
  /tools/apksig/src/main/java/com/android/apksig/
ApkVerifier.java 28 import com.android.apksig.util.DataSource;
64 private final DataSource mApkDataSource;
71 DataSource apkDataSource,
96 DataSource apk;
126 private Result verify(DataSource apk)
292 DataSource apk, ApkUtils.ZipSections zipSections)
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
JobTable.java 7 import autotest.common.table.DataSource.SortDirection;
  /external/autotest/frontend/client/src/autotest/common/table/
ArrayDataSource.java 18 public class ArrayDataSource<T extends JSONObject> implements DataSource {
DataSource.java 9 public interface DataSource {
  /frameworks/av/media/libmedia/
MidiIoWrapper.cpp 50 MidiIoWrapper::MidiIoWrapper(const sp<DataSource> &source) {
51 ALOGV("MidiIoWrapper(DataSource)");

Completed in 4823 milliseconds

1 2 34 5 6 7 8 91011