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

12 3 4 5 6 7 8 91011

  /frameworks/av/media/libstagefright/include/
StagefrightMetadataRetriever.h 28 class DataSource;
41 virtual status_t setDataSource(const sp<DataSource>& source, const char *mime);
48 sp<DataSource> mSource;
ID3.h 25 class DataSource;
38 explicit ID3(const sp<DataSource> &source, bool ignoreV1 = false, off64_t offset = 0);
88 bool parseV1(const sp<DataSource> &source);
89 bool parseV2(const sp<DataSource> &source, off64_t offset);
ThrottledSource.h 21 #include <media/stagefright/DataSource.h>
26 struct ThrottledSource : public DataSource {
28 const sp<DataSource> &source,
34 // returns an empty string to prevent callers from using the Uri to construct a new datasource
39 // following methods all call through to the wrapped DataSource's methods
72 sp<DataSource> mSource;
MidiExtractor.h 20 #include <media/stagefright/DataSource.h>
32 MidiEngine(const sp<DataSource> &dataSource,
56 explicit MidiExtractor(const sp<DataSource> &source);
69 sp<DataSource> mDataSource;
91 bool SniffMidi(const sp<DataSource> &source, String8 *mimeType,
MPEG2TSExtractor.h 35 class DataSource;
40 explicit MPEG2TSExtractor(const sp<DataSource> &source);
58 sp<DataSource> mDataSource;
82 // This function returns OK if expected amount of data is fed from DataSource to
84 // returned, e.g., ERROR_END_OF_STREAM, or no data availalbe from DataSource, or
103 const sp<DataSource> &source, String8 *mimeType, float *confidence,
MPEG2PSExtractor.h 34 explicit MPEG2PSExtractor(const sp<DataSource> &source);
53 sp<DataSource> mDataSource;
75 const sp<DataSource> &source, String8 *mimeType, float *confidence,
NuCachedSource2.h 23 #include <media/stagefright/DataSource.h>
30 struct NuCachedSource2 : public DataSource {
32 const sp<DataSource> &source,
80 const sp<DataSource> &source,
103 sp<DataSource> mSource;
  /frameworks/av/media/libstagefright/include/media/stagefright/
DataSource.h 40 class DataSource : public RefBase {
50 static sp<DataSource> CreateFromURI(
57 static sp<DataSource> CreateMediaHTTP(const sp<IMediaHTTPService> &httpService);
58 static sp<DataSource> CreateFromIDataSource(const sp<IDataSource> &source);
59 static sp<DataSource> CreateFromFd(int fd, int64_t offset, int64_t length);
61 DataSource() {}
126 // creates an IDataSource wrapper to the DataSource.
133 virtual ~DataSource() {}
136 DataSource(const DataSource &)
    [all...]
DataURISource.h 21 #include <media/stagefright/DataSource.h>
28 struct DataURISource : public DataSource {
DataUriSource.h 23 #include <media/stagefright/DataSource.h>
29 class DataUriSource : public DataSource {
RemoteDataSource.h 23 #include <media/stagefright/DataSource.h>
30 static sp<IDataSource> wrap(const sp<DataSource> &source) {
79 sp<DataSource> mSource;
83 explicit RemoteDataSource(const sp<DataSource> &source) {
  /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...]
  /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...]
  /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...]
  /frameworks/wilhelm/src/android/include/
AacAdtsExtractor.h 24 #include <media/stagefright/DataSource.h>
41 AacAdtsSource(const sp<DataSource> &source,
59 sp<DataSource> mDataSource;
76 explicit AacAdtsExtractor(const sp<DataSource> &source);
88 sp<DataSource> mDataSource;
  /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 #outputZipSections(DataSource, DataSource, DataSource)} which may request that
99 * {@link #inputApkSigningBlock(DataSource)}, {@link #inputJarEntry(String)},
128 void inputApkSigningBlock(DataSource apkSigningBlock)
188 * {@link #outputZipSections(DataSource, DataSource, DataSource)} is invoked
    [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...]
  /frameworks/av/media/libmedia/include/media/
MediaMetadataRetrieverInterface.h 28 class DataSource;
44 virtual status_t setDataSource(const sp<DataSource>& source, const char *mime) = 0;
  /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 22 #include <media/stagefright/DataSource.h>
30 struct LiveDataSource : public DataSource {
  /frameworks/support/paging/common/src/main/java/android/arch/paging/
DataSource.java 40 * Because a <code>null</code> item indicates a placeholder in {@link PagedList}, DataSource may not
44 * @param <Key> Input used to trigger initial load from the DataSource. Often an Integer position.
45 * @param <Value> Value type loaded by the DataSource.
48 public abstract class DataSource<Key, Value> {
52 DataSource() {
63 * Number of items that this DataSource can provide in total, or {@link #COUNT_UNDEFINED}.
65 * @return number of items that this DataSource can provide in total, or
78 * Invalidation callback for DataSource.
80 * Used to signal when a DataSource a data source has become invalid, and that a new data source
102 * Add a callback to invoke when the DataSource is first invalidated
    [all...]
  /frameworks/support/paging/integration-tests/testapp/src/main/java/android/arch/paging/integration/testapp/
PagedListItemViewModel.java 21 import android.arch.paging.DataSource;
46 protected DataSource<Integer, Item> createDataSource() {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/DataSource/
DataSource.inf 2 # DataSource Application
18 BASE_NAME = DataSource
31 DataSource.c
  /frameworks/support/paging/runtime/src/main/java/android/arch/paging/
LivePagedListProvider.java 28 * Provides a {@code LiveData<PagedList>}, given a means to construct a DataSource.
49 * @param <Key> Type of input valued used to load data from the DataSource. Must be integer if
51 * @param <Value> Data type produced by the DataSource, and held by the PagedLists.
54 * @see DataSource
66 protected abstract DataSource<Key, Value> createDataSource();
109 private DataSource<Key, Value> mDataSource;
111 private final DataSource.InvalidatedCallback mCallback =
112 new DataSource.InvalidatedCallback() {
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.h 37 explicit MatroskaExtractor(const sp<DataSource> &source);
79 sp<DataSource> mDataSource;
99 const sp<DataSource> &source, String8 *mimeType, float *confidence,

Completed in 313 milliseconds

12 3 4 5 6 7 8 91011