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

12 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/include/media/stagefright/
RemoteMediaExtractor.h 33 const sp<DataSource> &source,
48 sp<DataSource> mSource;
55 const sp<DataSource> &source,
RemoteDataSource.h 22 #include <media/DataSource.h>
30 static sp<IDataSource> wrap(const sp<DataSource> &source) {
79 sp<DataSource> mSource;
83 explicit RemoteDataSource(const sp<DataSource> &source) {
MediaExtractorFactory.h 29 class DataSource;
35 const sp<DataSource> &source, const char *mime = NULL);
37 const sp<DataSource> &source, const char *mime = NULL);
  /frameworks/av/media/libmedia/include/media/
DataSourceDesc.h 27 class DataSource;
30 // A binder interface for implementing a stagefright DataSource remotely.
56 sp<DataSource> mCallbackSource;
  /frameworks/av/media/ndk/
NdkMediaDataSourcePriv.h 34 #include <media/DataSource.h>
41 struct NdkDataSource : public DataSource {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msdatsrc.h 23 typedef struct DataSource DataSource;
36 #define IDataSource DataSource
95 struct DataSource : public IUnknown {
106 HRESULT (WINAPI *QueryInterface)(DataSource *This,REFIID riid,void **ppvObject);
107 ULONG (WINAPI *AddRef)(DataSource *This);
108 ULONG (WINAPI *Release)(DataSource *This);
109 HRESULT (WINAPI *getDataMember)(DataSource *This,DataMember bstrDM,REFIID riid,IUnknown **ppunk);
110 HRESULT (WINAPI *getDataMemberName)(DataSource *This,__LONG32 lIndex,DataMember *pbstrDM);
111 HRESULT (WINAPI *getDataMemberCount)(DataSource *This,__LONG32 *plCount)
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/
ApkSignerEngine.java 21 import com.android.apksig.util.DataSource;
59 * ignored. Similarly, the engine offers {@link #inputApkSigningBlock(DataSource)} to help the
69 * {@link #inputApkSigningBlock(DataSource)}.</li>
78 * invoke {@link #outputZipSections2(DataSource, DataSource, DataSource)} which may request that
99 * {@link #inputApkSigningBlock(DataSource)}, {@link #inputJarEntry(String)},
128 void inputApkSigningBlock(DataSource apkSigningBlock)
188 * {@link #outputZipSections2(DataSource, DataSource, DataSource)} is invoked
    [all...]
  /frameworks/av/media/libmedia/
DataSourceDesc.cpp 20 #include <media/DataSource.h>
  /frameworks/base/cmds/statsd/src/perfetto/
perfetto_config.proto 52 message DataSource {
57 repeated DataSource data_sources = 2;
  /libcore/ojluni/src/main/java/javax/sql/
DataSource.java 34 * <code>DataSource</code> object represents. An alternative to the
35 * <code>DriverManager</code> facility, a <code>DataSource</code> object
37 * the <code>DataSource</code> interface will typically be
41 * The <code>DataSource</code> interface is implemented by a driver vendor.
57 * A <code>DataSource</code> object has properties that can be modified
63 * A driver that is accessed via a <code>DataSource</code> object does not
65 * <code>DataSource</code> object is retrieved though a lookup operation
67 * implementation, the connection obtained through a <code>DataSource</code>
74 public interface DataSource extends CommonDataSource,Wrapper {
78 * this <code>DataSource</code> object represents
    [all...]
  /frameworks/support/paging/runtime/src/main/java/androidx/paging/
LivePagedListBuilder.java 29 * Builder for {@code LiveData<PagedList>}, given a {@link DataSource.Factory} and a
35 * @param <Key> Type of input valued used to load data from the DataSource. Must be integer if
42 private DataSource.Factory<Key, Value> mDataSourceFactory;
49 * @param dataSourceFactory DataSource factory providing DataSource generations.
52 public LivePagedListBuilder(@NonNull DataSource.Factory<Key, Value> dataSourceFactory,
60 throw new IllegalArgumentException("DataSource.Factory must be provided");
76 * @param dataSourceFactory DataSource.Factory providing DataSource generations.
79 public LivePagedListBuilder(@NonNull DataSource.Factory<Key, Value> dataSourceFactory
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowMediaMetadataRetriever.java 3 import static org.robolectric.shadows.util.DataSource.toDataSource;
15 import org.robolectric.shadows.util.DataSource;
19 private DataSource dataSource;
20 private static final Map<DataSource, Map<Integer, String>> metadata = new HashMap<>();
21 private static final Map<DataSource, Map<Long, Bitmap>> frames = new HashMap<>();
22 private static final Map<DataSource, RuntimeException> exceptions = new HashMap<>();
24 public void setDataSource(DataSource dataSource) {
25 RuntimeException e = exceptions.get(dataSource);
    [all...]
  /external/guice/extensions/persist/test/com/google/inject/persist/jpa/
EnsureJpaCanTakeObjectsInPropertiesTest.java 34 import javax.sql.DataSource;
42 final DataSource ds;
45 DBModule(DataSource ds, boolean passDataSource) {
56 p.put(Environment.DATASOURCE, ds);
80 private static DataSource getDataSource() {
81 final JDBCDataSource dataSource = new JDBCDataSource();
82 dataSource.setDatabase("jdbc:hsqldb:mem:persistence");
83 dataSource.setUser("sa");
84 dataSource.setPassword("");
85 return dataSource;
    [all...]
  /tools/apksig/src/test/java/com/android/apksig/util/
DataSourceTestBase.java 30 * Base class for testing implementations of {@link DataSource}. This class tests the contract of
31 * {@code DataSource}.
34 * the implementation of {@code DataSource} you want to test.
39 * Returns a new {@link DataSource} containing the provided contents.
50 DataSource ds = c.getDataSource();
58 DataSource ds = c.getDataSource();
60 DataSource slice = ds.slice(3, 5);
96 DataSource ds = c.getDataSource();
98 DataSource slice = ds.slice(3, 4); // "t123"
132 DataSource ds = c.getDataSource()
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
ChainedDataSource.java 20 import com.android.apksig.util.DataSource;
26 /** Pseudo {@link DataSource} that chains the given {@link DataSource} as a continuous one. */
27 public class ChainedDataSource implements DataSource {
29 private final DataSource[] mSources;
32 public ChainedDataSource(DataSource... sources) {
48 for (DataSource src : mSources) {
75 // Skip to the first DataSource we need.
102 public DataSource slice(long offset, long size) {
107 DataSource beginSource = mSources[beginIndex]
    [all...]
  /external/perfetto/include/perfetto/tracing/core/
trace_config.h 95 class PERFETTO_EXPORT DataSource {
97 DataSource();
98 ~DataSource();
99 DataSource(DataSource&&) noexcept;
100 DataSource& operator=(DataSource&&);
101 DataSource(const DataSource&);
102 DataSource& operator=(const DataSource&)
    [all...]
  /frameworks/av/media/libstagefright/httplive/
HTTPDownloader.h 29 class DataSource;
43 // bytes read in from the DataSource. If given a non-NULL buffer, new content
46 // The DataSource we read from is responsible for signaling error or EOF to help us
47 // break out of the read loop. The DataSource can be returned to the caller, so
75 sp<DataSource> mDataSource;
LiveDataSource.h 21 #include <media/DataSource.h>
30 struct LiveDataSource : public DataSource {
  /frameworks/base/media/jni/
android_media_Media2DataSource.h 22 #include <media/DataSource.h>
30 // DataSource.
32 // If the java DataSource returns an error or throws an exception it
35 class JMedia2DataSource : public DataSource {
52 // The status of the java DataSource. Set to OK unless an error occurred or
  /frameworks/support/paging/common/src/main/java/androidx/paging/
SnapshotPagedList.java 25 private final DataSource<?, T> mDataSource;
61 public DataSource<?, T> getDataSource() {
  /frameworks/support/room/integration-tests/testapp/src/main/java/androidx/room/integration/testapp/database/
CustomerDao.java 19 import androidx.paging.DataSource;
53 * @return DataSource.Factory of customers, ordered by last name. Use
57 DataSource.Factory<Integer, Customer> loadPagedAgeOrder();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/DataSource/
DataSource.inf 2 # DataSource Application
18 BASE_NAME = DataSource
31 DataSource.c
  /frameworks/av/media/libstagefright/
InterfaceUtils.cpp 26 sp<DataSource> CreateDataSourceFromIDataSource(const sp<IDataSource> &source) {
33 sp<IDataSource> CreateIDataSourceFromDataSource(const sp<DataSource> &source) {
42 const sp<DataSource> &source,
  /frameworks/av/services/mediaextractor/
MediaExtractorService.cpp 23 #include <media/DataSource.h>
37 sp<DataSource> localSource = CreateDataSourceFromIDataSource(remoteSource);
54 sp<DataSource> source = DataSourceFactory::CreateFromFd(fd, offset, length);
  /frameworks/av/media/libstagefright/include/
NuCachedSource2.h 21 #include <media/DataSource.h>
30 struct NuCachedSource2 : public DataSource {
32 const sp<DataSource> &source,
79 const sp<DataSource> &source,
102 sp<DataSource> mSource;

Completed in 238 milliseconds

12 3 4 5 6 7 8 91011>>