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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/media/base/
data_source.cc 12 const int DataSource::kReadError = -1;
16 DataSource::DataSource() : host_(NULL) {}
18 DataSource::~DataSource() {}
20 void DataSource::set_host(DataSourceHost* host) {
26 void DataSource::SetPlaybackRate(float playback_rate) {}
28 DataSourceHost* DataSource::host() { return host_; }
data_source.h 32 class MEDIA_EXPORT DataSource {
38 DataSource();
39 virtual ~DataSource();
47 const DataSource::ReadCB& read_cb) = 0;
49 // Notifies the DataSource of a change in the current playback rate.
52 // Stops the DataSource. Once this is called all future Read() calls will
64 // Notify the DataSource of the bitrate of the media.
74 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.
29 const media::DataSource::ReadCB& read_cb) OVERRIDE;
35 scoped_ptr<media::DataSource> data_source_;
  /external/chromium/chrome/browser/ui/webui/
chrome_url_data_manager.h 23 // ChromeURLDataManager::DataSource interface and register your handler
29 class DataSource;
31 // Trait used to handle deleting a DataSource. Deletion happens on the UI
41 // deletion of the DataSources. When a DataSource is no longer referenced it
46 static void Destruct(const DataSource* data_source) {
51 // A DataSource is an object that can answer requests for data
57 // An implementation of DataSource should handle calls to
60 class DataSource : public base::RefCountedThreadSafe<
61 DataSource, DeleteDataSource> {
64 DataSource(const std::string& source_name, MessageLoop* message_loop)
    [all...]
chrome_url_data_manager.cc 32 // Invoked on the IO thread to do the actual adding of the DataSource.
35 scoped_refptr<ChromeURLDataManager::DataSource> data_source) {
49 void ChromeURLDataManager::AddDataSource(DataSource* source) {
73 void ChromeURLDataManager::DeleteDataSource(const DataSource* data_source) {
74 // Invoked when a DataSource is no longer referenced and needs to be deleted.
81 // We're not on the UI thread, add the DataSource to the list of DataSources
92 // Schedule a task to delete the DataSource back on the UI thread.
102 const DataSource* data_source) {
110 ChromeURLDataManager::DataSource::DataSource(const std::string& source_name
    [all...]
shared_resources_data_source.h 18 // A DataSource for chrome://resources/ URLs.
19 class SharedResourcesDataSource : public ChromeURLDataManager::DataSource {
23 // Overridden from ChromeURLDataManager::DataSource:
sync_internals_html_source.h 14 class SyncInternalsHTMLSource : public ChromeURLDataManager::DataSource {
18 // ChromeURLDataManager::DataSource implementation.
keyboard_ui.h 22 class KeyboardHTMLSource : public ChromeURLDataManager::DataSource {
26 // Overrides from DataSource
  /frameworks/av/include/media/stagefright/
DataSource.h 36 class DataSource : public RefBase {
45 static sp<DataSource> CreateFromURI(
49 DataSource() {}
80 const sp<DataSource> &source, String8 *mimeType,
99 virtual ~DataSource() {}
105 DataSource(const DataSource &);
106 DataSource &operator=(const DataSource &);
  /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);
chromium_http_stub.h 21 #include <media/stagefright/DataSource.h>
30 DataSource *createDataUriSource(const char *uri);
  /frameworks/av/media/libstagefright/
DataSource.cpp 39 #include <media/stagefright/DataSource.h>
48 bool DataSource::getUInt16(off64_t offset, uint16_t *x) {
61 bool DataSource::getUInt24(off64_t offset, uint32_t *x) {
74 bool DataSource::getUInt32(off64_t offset, uint32_t *x) {
87 bool DataSource::getUInt64(off64_t offset, uint64_t *x) {
100 status_t DataSource::getSize(off64_t *size) {
108 Mutex DataSource::gSnifferMutex;
109 List<DataSource::SnifferFunc> DataSource::gSniffers;
111 bool DataSource::sniff
    [all...]
  /external/chromium/webkit/glue/media/
web_data_source.cc 11 : media::DataSource() {
  /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;
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp 24 #include <media/stagefright/DataSource.h>
43 DataSource::RegisterDefaultSniffers();
45 sp<DataSource> dataSource =
46 DataSource::CreateFromURI(url, headers);
47 CHECK(dataSource != NULL);
49 initFromDataSource(dataSource);
58 DataSource::RegisterDefaultSniffers();
60 sp<DataSource> dataSource = new FileSource(dup(fd), offset, length)
    [all...]
  /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,

Completed in 617 milliseconds

1 2 3 4 5 6 7 8 91011>>