OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DataSource
(Results
1 - 25
of
218
) sorted by null
1
2
3
4
5
6
7
8
9
/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
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
// Stops the
DataSource
. Once this is called all future Read() calls will
61
// Notify the
DataSource
of the bitrate of the media.
71
DISALLOW_COPY_AND_ASSIGN(
DataSource
);
/external/chromium/webkit/glue/media/
web_data_source.cc
11
: media::
DataSource
() {
/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
...]
/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_;
/frameworks/base/media/java/android/media/
DataSource.java
26
public interface
DataSource
extends Closeable {
/frameworks/av/media/libstagefright/include/
chromium_http_stub.h
21
#include <media/stagefright/
DataSource
.h>
30
DataSource
*createDataUriSource(const char *uri);
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);
XINGSeeker.h
25
struct
DataSource
;
29
const sp<
DataSource
> &source, off64_t first_frame_pos);
AACExtractor.h
32
AACExtractor(const sp<
DataSource
> &source, const sp<AMessage> &meta);
44
sp<
DataSource
> mDataSource;
56
const sp<
DataSource
> &source, String8 *mimeType, float *confidence,
AMRExtractor.h
32
AMRExtractor(const sp<
DataSource
> &source);
44
sp<
DataSource
> mDataSource;
57
const sp<
DataSource
> &source, String8 *mimeType, float *confidence,
/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,
98
virtual ~
DataSource
() {}
107
DataSource
(const
DataSource
&);
108
DataSource
&operator=(const
DataSource
&);
JPEGSource.h
25
class
DataSource
;
29
JPEGSource(const sp<
DataSource
> &source);
42
sp<
DataSource
> mSource;
/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/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;
110
bool
DataSource
::gSniffersRegistered = false
[
all
...]
/frameworks/wilhelm/src/android/
BufferQueueSource.h
20
#include <media/stagefright/
DataSource
.h>
28
// a Stagefright
DataSource
that pulls data from an AndroidBufferQueue
30
class BufferQueueSource : public
DataSource
{
/external/chromium_org/chrome/common/extensions/docs/server2/
strings_data_source.py
8
from data_source import
DataSource
11
class StringsDataSource(
DataSource
):
/frameworks/base/media/tests/omxjpegdecoder/
StreamSource.h
24
#include <media/stagefright/
DataSource
.h>
30
class StreamSource : public
DataSource
{
Completed in 1675 milliseconds
1
2
3
4
5
6
7
8
9