HomeSort by relevance Sort by last modified time
    Searched full:datasource (Results 1 - 25 of 305) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/media/base/
data_source.cc 11 DataSource::DataSource() {}
13 DataSource::~DataSource() {}
data_source.h 14 class MEDIA_EXPORT DataSource {
21 DataSource();
22 virtual ~DataSource();
28 const DataSource::ReadCB& read_cb) = 0;
30 // Stops the DataSource. Once this is called all future Read() calls will
42 // Notify the DataSource of the bitrate of the media.
47 DISALLOW_COPY_AND_ASSIGN(DataSource);
  /external/chromium_org/media/tools/player_x11/
data_source_logger.h 10 // Logs all DataSource operations to VLOG(1) for debugging purposes.
11 class DataSourceLogger : public media::DataSource {
13 // Constructs a DataSourceLogger to log operations against another DataSource.
20 DataSourceLogger(scoped_ptr<DataSource> data_source,
24 // media::DataSource implementation.
28 const media::DataSource::ReadCB& read_cb) OVERRIDE;
34 scoped_ptr<media::DataSource> data_source_;
  /external/chromium_org/chrome/common/extensions/docs/server2/
data_source.py 6 class DataSource(object):
10 DataSources must have two public methods, get and Refresh. A DataSource is
12 Anything in the ServerInstance can be used by the DataSource. Request is None
25 to refresh this DataSource's data set. Any paths listed here will be
26 routed to the DataSource Refresh method in a taskqueue task request.
31 '''Handles _refresh requests to this DataSource. Should return a Future
data_source_registry.py 7 from data_source import DataSource
35 assert all(issubclass(cls, DataSource)
44 '''Create a single DataSource by name.'''
54 The key of each DataSource is the name the template system will use to access
55 the DataSource.
strings_data_source.py 8 from data_source import DataSource
11 class StringsDataSource(DataSource):
  /frameworks/av/include/media/stagefright/
DataSource.h 39 class DataSource : public RefBase {
48 static sp<DataSource> CreateFromURI(
55 static sp<DataSource> CreateMediaHTTP(const sp<IMediaHTTPService> &httpService);
57 DataSource() {}
88 const sp<DataSource> &source, String8 *mimeType,
106 virtual ~DataSource() {}
115 DataSource(const DataSource &);
116 DataSource &operator=(const DataSource &)
    [all...]
  /frameworks/av/media/libstagefright/
DataSource.cpp 17 #define LOG_TAG "DataSource"
40 #include <media/stagefright/DataSource.h>
51 bool DataSource::getUInt16(off64_t offset, uint16_t *x) {
64 bool DataSource::getUInt24(off64_t offset, uint32_t *x) {
77 bool DataSource::getUInt32(off64_t offset, uint32_t *x) {
90 bool DataSource::getUInt64(off64_t offset, uint64_t *x) {
103 status_t DataSource::getSize(off64_t *size) {
111 Mutex DataSource::gSnifferMutex;
112 List<DataSource::SnifferFunc> DataSource::gSniffers
    [all...]
  /external/chromium_org/device/serial/
data_stream_serialization.mojom 32 // The control channel to the DataSource from which this DataReceiver receives
34 DataSource source;
36 // The data pipe this DataReceiver uses to receive data from the DataSource.
42 // The number of bytes this DataReceiver has received from the DataSource.
45 // Whether a Resume() message needs to be sent to the DataSource for it to
data_stream.mojom 8 interface DataSource {
9 // Initializes this DataSource with a data pipe handle to use for data
18 // Invoked to report |error| from the DataSource, at |error_location| bytes
20 // transmitted from the DataSource until Resume() is called.
  /frameworks/av/media/libstagefright/include/
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;
DRMExtractor.h 27 class DataSource;
34 DRMExtractor(const sp<DataSource> &source, const char *mime);
45 sp<DataSource> mDataSource;
56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
FLACExtractor.h 20 #include <media/stagefright/DataSource.h>
32 FLACExtractor(const sp<DataSource> &source);
44 sp<DataSource> mDataSource;
59 bool SniffFLAC(const sp<DataSource> &source, String8 *mimeType,
MP3Extractor.h 27 class DataSource;
34 MP3Extractor(const sp<DataSource> &source, const sp<AMessage> &meta);
45 sp<DataSource> mDataSource;
56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
MPEG2TSExtractor.h 31 struct DataSource;
36 MPEG2TSExtractor(const sp<DataSource> &source);
51 sp<DataSource> mDataSource;
66 const sp<DataSource> &source, String8 *mimeType, float *confidence,
OggExtractor.h 27 class DataSource;
34 OggExtractor(const sp<DataSource> &source);
48 sp<DataSource> mDataSource;
58 const sp<DataSource> &source, String8 *mimeType, float *confidence,
WAVExtractor.h 27 class DataSource;
33 WAVExtractor(const sp<DataSource> &source);
45 sp<DataSource> mDataSource;
64 const sp<DataSource> &source, String8 *mimeType, float *confidence,
VBRISeeker.h 27 struct DataSource;
31 const sp<DataSource> &source, off64_t post_id3_pos);
  /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/luni/src/main/java/javax/sql/
DataSource.java 29 * A class which implements the {@code DataSource} interface is typically
33 * The {@code DataSource} interface is typically implemented by the writer of a
34 * JDBC driver. There are three variants of the {@code DataSource} interface,
37 * <li><i>Standard {@code DataSource}</i>: produces standard {@code Connection}
39 * <li><i>Connection Pool {@code DataSource}</i>: produces {@code
42 * <li><i>Distributed transaction {@code DataSource} ("XADataSource")</i>:
49 * Note that a JDBC driver which is accessed via the {@code DataSource}
53 public interface DataSource extends CommonDataSource, Wrapper {
57 * DataSource}.
68 * DataSource}, using the supplied user name and password
    [all...]
  /external/chromium_org/media/filters/
blocking_url_protocol.h 15 class DataSource;
18 // asynchronous DataSource::Read() operation completes.
22 // fired any time DataSource::Read() returns an error.
26 BlockingUrlProtocol(DataSource* data_source, const base::Closure& error_cb);
45 DataSource* data_source_;
  /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;
  /external/chromium_org/content/browser/webui/
url_data_manager.h 22 // URLDataManager::DataSource interface and register your handler
31 // Adds a DataSource to the collection of data sources. This *must* be invoked
35 // release the old |DataSource|, most likely resulting in it getting deleted
36 // as there are no other references to it. |DataSource| uses the
38 // thread. This is necessary as some |DataSource|s notably |FileIconSource|
62 // If invoked on the UI thread the DataSource is deleted immediatlye,
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
choose_mobile_network_ui.h 12 // A custom WebUI that defines datasource for choosing cellular network dialog.
  /external/chromium_org/chrome/utility/media_galleries/
ipc_data_source.h 24 // as a DataSource on a different thread. The utility thread must not be blocked
26 class IPCDataSource: public media::DataSource,
33 // Implementation of DataSource. These methods may be called on any single
68 // Enforces that the DataSource methods are called on one other thread only.

Completed in 525 milliseconds

1 2 3 4 5 6 7 8 91011>>