HomeSort by relevance Sort by last modified time
    Searched refs:DataSource (Results 101 - 125 of 318) sorted by null

1 2 3 45 6 7 8 91011>>

  /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/test/java/com/android/apksig/util/
DataSourceFromByteBufferTest.java 27 * Tests for the {@link DataSource} returned by {@link DataSources#asDataSource(ByteBuffer)}.
37 DataSource ds = DataSources.asDataSource(buf);
  /tools/apksig/src/main/java/com/android/apksig/
DefaultApkSignerEngine.java 32 import com.android.apksig.util.DataSource;
402 public void inputApkSigningBlock(DataSource apkSigningBlock) {
682 DataSource zipEntries,
683 DataSource zipCentralDirectory,
684 DataSource zipEocd)
692 DataSource zipEntries,
693 DataSource zipCentralDirectory,
694 DataSource zipEocd
    [all...]
  /frameworks/support/paging/common/src/main/java/androidx/paging/
PagedList.java 34 * Lazy loading list that pages in immutable content from a {@link DataSource}.
36 * A PagedList is a {@link List} which loads its data in chunks (pages) from a {@link DataSource}.
42 * All data in a PagedList is loaded from its {@link DataSource}. Creating a PagedList loads the
43 * first chunk of data from the DataSource immediately, and should for this reason be done on a
94 * DataSource does not count its data set in its initial load, or if {@code false} is passed to
97 * A PagedList is <em>mutable</em> while loading, or ready to load from its DataSource.
102 * If a PagedList attempts to load from an invalid DataSource, it will {@link #detach()}
103 * from the DataSource, meaning that it will no longer attempt to load data. It will return true
104 * from {@link #isImmutable()}, and a new DataSource / PagedList pair must be created to load
105 * further data. See {@link DataSource} and {@link LivePagedListBuilder} for how new PagedLists ar
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/internal/apk/v2/
V2SchemeVerifier.java 28 import com.android.apksig.util.DataSource;
90 DataSource apk,
104 DataSource beforeApkSigningBlock = apk.slice(0, signatureInfo.apkSigningBlockOffset);
105 DataSource centralDir =
126 * {@code result}. See {@link #verify(DataSource, ApkUtils.ZipSections, Map, Set, int, int)} for
133 DataSource beforeApkSigningBlock,
135 DataSource centralDir,
  /prebuilts/sdk/current/extras/app-toolkit/m2repository/android/arch/paging/common/28.0.0/
common-28.0.0.jar 
  /frameworks/av/media/libstagefright/
JPEGSource.cpp 21 #include <media/DataSource.h>
55 JPEGSource::JPEGSource(const sp<DataSource> &source)
  /frameworks/support/room/integration-tests/testapp/src/main/java/androidx/room/integration/testapp/database/
LastNameAscCustomerDataSource.java 19 import androidx.paging.DataSource;
39 public DataSource<String, Customer> create() {
46 * Create a DataSource from the customer table of the given database
  /external/autotest/frontend/client/src/autotest/afe/
JobTable.java 7 import autotest.common.table.DataSource.SortDirection;
HostDetailView.java 7 import autotest.common.table.DataSource;
8 import autotest.common.table.DataSource.DataCallback;
9 import autotest.common.table.DataSource.Query;
10 import autotest.common.table.DataSource.SortDirection;
77 private static final DataSource normalDataSource = new HostQueueEntryDataSource();
78 private static final DataSource dataSourceWithSpecialTasks =
153 private DataSource hostDataSource = new HostDataSource();
  /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/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
PasspointObjectFactory.java 68 * @param dataSource Passpoint configuration data source
72 SIMAccessor simAccessor, PasspointConfigStoreData.DataSource dataSource) {
73 return new PasspointConfigStoreData(keyStore, simAccessor, dataSource);
PasspointConfigStoreData.java 73 private final DataSource mDataSource;
78 public interface DataSource {
109 DataSource dataSource) {
112 mDataSource = dataSource;
  /tools/apksig/src/main/java/com/android/apksig/internal/apk/v3/
V3SchemeSigner.java 31 import com.android.apksig.util.DataSource;
131 DataSource beforeCentralDir,
132 DataSource centralDir,
133 DataSource eocd,
V3SchemeVerifier.java 34 import com.android.apksig.util.DataSource;
97 DataSource apk,
108 DataSource beforeApkSigningBlock = apk.slice(0, signatureInfo.apkSigningBlockOffset);
109 DataSource centralDir =
134 * {@code result}. See {@link #verify(DataSource, ApkUtils.ZipSections, int, int)} for more
141 DataSource beforeApkSigningBlock,
143 DataSource centralDir,
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/
SigningExtension.java 22 import com.android.apksig.util.DataSource;
350 DataSource centralDir = DataSources.asDataSource(ByteBuffer.wrap(centralDirBytes));
351 DataSource eocd = DataSources.asDataSource(ByteBuffer.wrap(eocdBytes));
354 DataSource zipEntries = new ZFileDataSource(zFile, 0, zipEntriesSizeBytes);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowMediaPlayer.java 14 import static org.robolectric.shadows.util.DataSource.toDataSource;
37 import org.robolectric.shadows.util.DataSource;
76 * (using {@link #addException(DataSource, IOException)} or
77 * {@link #addMediaInfo(DataSource, MediaInfo)} respectively) <i>before</i>
102 private static final Map<DataSource, Exception> exceptions = new HashMap<>();
103 private static final Map<DataSource, MediaInfo> mediaInfo = new HashMap<>();
421 private DataSource dataSource;
569 * * If no exception is thrown in either of the previous two steps, then {@link #doSetDataSource(DataSource)} is called to set the data source.</li>
573 * other {@link #setDataSource(String)} implementations, which use {@link DataSource#toDataSource(String)
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerFactory.cpp 23 #include <media/DataSource.h>
121 const sp<DataSource> &source) {
211 const sp<DataSource>& /*source*/,
213 // Only NuPlayer supports setting a DataSource source directly.
  /frameworks/wilhelm/src/android/util/
AacAdtsExtractor.cpp 49 static size_t getFrameSize(const sp<DataSource> &source, off64_t offset) {
94 AacAdtsExtractor::AacAdtsExtractor(const sp<DataSource> &source)
185 const sp<DataSource> &source, const sp<MetaData> &meta,
  /tools/apksig/src/main/java/com/android/apksig/internal/zip/
ZipUtils.java 20 import com.android.apksig.util.DataSource;
112 public static Pair<ByteBuffer, Long> findZipEndOfCentralDirectoryRecord(DataSource zip)
156 DataSource zip, int maxCommentSize) throws IOException {
  /frameworks/base/core/java/android/util/apk/
ApkSigningBlockUtils.java 135 // Each of these sections is represented as a separate DataSource instance below.
141 DataSource beforeApkSigningBlock =
144 DataSource centralDir =
154 DataSource eocd = new ByteBufferDataSource(eocdBuf);
167 new DataSource[] {beforeApkSigningBlock, centralDir, eocd});
185 DataSource[] contents) throws DigestException {
197 for (DataSource input : contents) {
237 for (DataSource input : contents) {
    [all...]
  /packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/
ExoPlayerSampleExtractor.java 36 import com.google.android.exoplayer.upstream.DataSource;
90 final DataSource source,
107 DataSource source,
129 new com.google.android.exoplayer2.upstream.DataSource.Factory() {
131 public com.google.android.exoplayer2.upstream.DataSource
134 // DataSource interface.
136 .DataSource() {
  /frameworks/av/media/libmedia/include/media/
NdkWrapper.h 21 #include <media/DataSource.h>
352 AMediaDataSourceWrapper(const sp<DataSource> &dataSource);
360 sp<DataSource> mDataSource;

Completed in 308 milliseconds

1 2 3 45 6 7 8 91011>>