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

12 3 4 5 6 7

  /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...]
  /frameworks/av/media/libstagefright/include/
ID3.h 25 class DataSource;
38 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);
MPEG2TSExtractor.h 35 class DataSource;
40 MPEG2TSExtractor(const sp<DataSource> &source);
56 sp<DataSource> mDataSource;
77 // This function returns OK if expected amount of data is fed from DataSource to
79 // returned, e.g., ERROR_END_OF_STREAM, or no data availalbe from DataSource, or
96 const sp<DataSource> &source, String8 *mimeType, float *confidence,
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;
WVMExtractor.h 28 class DataSource;
46 WVMExtractor(const sp<DataSource> &source);
88 sp<DataSource> mDataSource;
96 const sp<DataSource> &source, String8 *mimeType, float *confidence,
MidiExtractor.h 20 #include <media/stagefright/DataSource.h>
32 MidiEngine(const sp<DataSource> &dataSource,
56 MidiExtractor(const sp<DataSource> &source);
69 sp<DataSource> mDataSource;
91 bool SniffMidi(const sp<DataSource> &source, String8 *mimeType,
DataUriSource.h 23 #include <media/stagefright/DataSource.h>
29 class DataUriSource : public DataSource {
MPEG2PSExtractor.h 34 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;
HTTPBase.h 22 #include <media/stagefright/DataSource.h>
28 struct HTTPBase : public DataSource {
MPEG4Extractor.h 23 #include <media/stagefright/DataSource.h>
33 class DataSource;
53 MPEG4Extractor(const sp<DataSource> &source);
94 sp<DataSource> mDataSource;
149 const sp<DataSource> &source, String8 *mimeType, float *confidence,
  /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 AacAdtsExtractor(const sp<DataSource> &source);
88 sp<DataSource> mDataSource;
  /frameworks/av/include/media/
MediaMetadataRetrieverInterface.h 28 class DataSource;
44 virtual status_t setDataSource(const sp<DataSource>& source) = 0;
IMediaExtractor.h 22 #include <media/stagefright/DataSource.h>
75 const sp<DataSource> &source,
  /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/av/media/libstagefright/matroska/
MatroskaExtractor.h 37 MatroskaExtractor(const sp<DataSource> &source);
73 sp<DataSource> mDataSource;
92 const sp<DataSource> &source, String8 *mimeType, float *confidence,
  /frameworks/av/media/libstagefright/
MediaExtractor.cpp 43 #include <media/stagefright/DataSource.h>
82 static sp<IDataSource> wrap(const sp<DataSource> &source);
95 sp<DataSource> mSource;
97 RemoteDataSource(const sp<DataSource> &source);
102 sp<IDataSource> RemoteDataSource::wrap(const sp<DataSource> &source) {
105 RemoteDataSource::RemoteDataSource(const sp<DataSource> &source) {
144 const sp<DataSource> &source, const char *mime) {
192 const sp<DataSource> &source, const char *mime) {
195 DataSource::RegisterDefaultSniffers();
WVMExtractor.cpp 26 #include <media/stagefright/DataSource.h>
47 WVMExtractor::WVMExtractor(const sp<DataSource> &source)
56 typedef WVMLoadableExtractor *(*GetInstanceFunc)(sp<DataSource>);
169 const sp<DataSource> &source, String8 *mimeType, float *confidence,
178 typedef WVMLoadableExtractor *(*SnifferFunc)(const sp<DataSource>&);
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,
  /frameworks/av/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);
108 sp<DataSource> mDataSource;
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerFactory.h 47 const sp<DataSource> &/*source*/,
65 const sp<DataSource> &source);

Completed in 510 milliseconds

12 3 4 5 6 7