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

1 2 3 4 5 6 7 8

  /frameworks/av/include/media/stagefright/foundation/
ALooperRoster.h 34 status_t postMessage(const sp<AMessage> &msg, int64_t delayUs = 0);
35 void deliverMessage(const sp<AMessage> &msg);
38 const sp<AMessage> &msg, sp<AMessage> *response);
40 void postReply(uint32_t replyID, const sp<AMessage> &reply);
56 KeyedVector<uint32_t, sp<AMessage> > mReplies;
58 status_t postMessage_l(const sp<AMessage> &msg, int64_t delayUs);
ABuffer.h 29 struct AMessage;
35 void setFarewellMessage(const sp<AMessage> msg);
48 sp<AMessage> meta();
54 sp<AMessage> mFarewell;
55 sp<AMessage> mMeta;
AMessage.h 32 struct AMessage : public RefBase {
33 AMessage(uint32_t what = 0, ALooper::handler_id target = 0);
35 static sp<AMessage> FromParcel(const Parcel &parcel);
55 void setMessage(const char *name, const sp<AMessage> &obj);
70 bool findMessage(const char *name, sp<AMessage> *obj) const;
80 status_t postAndAwaitResponse(sp<AMessage> *response);
92 sp<AMessage> dup() const;
114 virtual ~AMessage();
153 DISALLOW_EVIL_CONSTRUCTORS(AMessage);
  /frameworks/av/media/libstagefright/include/
M3UParser.h 22 #include <media/stagefright/foundation/AMessage.h>
38 sp<AMessage> meta();
41 bool itemAt(size_t index, AString *uri, sp<AMessage> *meta = NULL);
49 sp<AMessage> mMeta;
60 sp<AMessage> mMeta;
66 const AString &line, sp<AMessage> *meta, const char *key);
69 const AString &line, sp<AMessage> *meta, const char *key);
72 const AString &line, sp<AMessage> *meta);
75 const AString &line, sp<AMessage> *meta, const AString &baseURI);
SDPLoader.h 21 #include <media/stagefright/foundation/AMessage.h>
37 SDPLoader(const sp<AMessage> &notify, uint32_t flags = 0, bool uidValid = false, uid_t uid = 0);
46 virtual void onMessageReceived(const sp<AMessage> &msg);
53 void onLoad(const sp<AMessage> &msg);
55 sp<AMessage> mNotify;
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.h 38 void connect(const char *url, const sp<AMessage> &reply);
39 void disconnect(const sp<AMessage> &reply);
41 void sendRequest(const char *request, const sp<AMessage> &reply);
43 void observeBinaryData(const sp<AMessage> &reply);
51 virtual void onMessageReceived(const sp<AMessage> &msg);
90 KeyedVector<int32_t, sp<AMessage> > mPendingRequests;
92 sp<AMessage> mObserveBinaryMessage;
96 void onConnect(const sp<AMessage> &msg);
97 void onDisconnect(const sp<AMessage> &msg);
98 void onCompleteConnection(const sp<AMessage> &msg)
    [all...]
ARTPConnection.h 40 const sp<AMessage> &notify,
55 virtual void onMessageReceived(const sp<AMessage> &msg);
75 void onAddStream(const sp<AMessage> &msg);
76 void onRemoveStream(const sp<AMessage> &msg);
78 void onInjectPacket(const sp<AMessage> &msg);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.h 30 Decoder(const sp<AMessage> &notify,
33 void configure(const sp<AMessage> &format);
42 virtual void onMessageReceived(const sp<AMessage> &msg);
49 sp<AMessage> mNotify;
58 sp<AMessage> makeFormat(const sp<MetaData> &meta);
60 void onFillThisBuffer(const sp<AMessage> &msg);
NuPlayerRenderer.h 32 const sp<AMessage> &notify,
38 const sp<AMessage> &notifyConsumed);
61 virtual void onMessageReceived(const sp<AMessage> &msg);
77 sp<AMessage> mNotifyConsumed;
85 sp<AMessage> mNotify;
119 void onQueueBuffer(const sp<AMessage> &msg);
120 void onQueueEOS(const sp<AMessage> &msg);
121 void onFlush(const sp<AMessage> &msg);
133 bool dropBufferWhileFlushing(bool audio, const sp<AMessage> &msg);
NuPlayerSource.h 23 #include <media/stagefright/foundation/AMessage.h>
49 Source(const sp<AMessage> &notify)
64 virtual sp<AMessage> getFormat(bool audio);
84 virtual void onMessageReceived(const sp<AMessage> &msg);
88 sp<AMessage> dupNotify() const { return mNotify->dup(); }
95 sp<AMessage> mNotify;
NuPlayerDecoder.cpp 25 #include <media/stagefright/foundation/AMessage.h>
32 const sp<AMessage> &notify,
41 void NuPlayer::Decoder::configure(const sp<AMessage> &format) {
47 sp<AMessage> notifyMsg =
48 new AMessage(kWhatCodecNotify, id());
84 void NuPlayer::Decoder::onMessageReceived(const sp<AMessage> &msg) {
94 sp<AMessage> notify = mNotify->dup();
107 void NuPlayer::Decoder::onFillThisBuffer(const sp<AMessage> &msg) {
108 sp<AMessage> reply;
127 sp<AMessage> notify = mNotify->dup()
    [all...]
  /frameworks/av/media/libstagefright/
MediaCodec.cpp 29 #include <media/stagefright/foundation/AMessage.h>
85 const sp<AMessage> &msg, sp<AMessage> *response) {
125 mCodec->setNotificationMessage(new AMessage(kWhatCodecNotify, id()));
127 sp<AMessage> msg = new AMessage(kWhatInit, id());
135 sp<AMessage> response;
140 const sp<AMessage> &format,
144 sp<AMessage> msg = new AMessage(kWhatConfigure, id())
    [all...]
  /frameworks/av/media/libstagefright/foundation/
AMessage.cpp 17 #include "AMessage.h"
34 AMessage::AMessage(uint32_t what, ALooper::handler_id target)
40 AMessage::~AMessage() {
44 void AMessage::setWhat(uint32_t what) {
48 uint32_t AMessage::what() const {
52 void AMessage::setTarget(ALooper::handler_id handlerID) {
56 ALooper::handler_id AMessage::target() const {
60 void AMessage::clear()
    [all...]
ABuffer.cpp 21 #include "AMessage.h"
64 void ABuffer::setFarewellMessage(const sp<AMessage> msg) {
68 sp<AMessage> ABuffer::meta() {
70 mMeta = new AMessage;
Android.mk 12 AMessage.cpp \
  /frameworks/av/media/libstagefright/wifi-display/source/
MediaPuller.h 33 MediaPuller(const sp<MediaSource> &source, const sp<AMessage> &notify);
36 void stopAsync(const sp<AMessage> &notify);
42 virtual void onMessageReceived(const sp<AMessage> &msg);
55 sp<AMessage> mNotify;
60 status_t postSynchronouslyAndReturnError(const sp<AMessage> &msg);
Converter.h 37 const sp<AMessage> &notify,
39 const sp<AMessage> &format,
46 sp<AMessage> getOutputFormat() const;
80 virtual void onMessageReceived(const sp<AMessage> &msg);
84 sp<AMessage> mNotify;
86 sp<AMessage> mInputFormat;
89 sp<AMessage> mOutputFormat;
93 sp<AMessage> mEncoderActivityNotify;
MediaPuller.cpp 25 #include <media/stagefright/foundation/AMessage.h>
33 const sp<MediaSource> &source, const sp<AMessage> &notify)
50 const sp<AMessage> &msg) {
51 sp<AMessage> response;
66 return postSynchronouslyAndReturnError(new AMessage(kWhatStart, id()));
69 void MediaPuller::stopAsync(const sp<AMessage> &notify) {
70 sp<AMessage> msg = new AMessage(kWhatStop, id());
76 (new AMessage(kWhatPause, id()))->post();
80 (new AMessage(kWhatResume, id()))->post()
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/
ANetworkSession.h 30 struct AMessage;
41 const char *host, unsigned port, const sp<AMessage> &notify,
46 const sp<AMessage> &notify, int32_t *sessionID);
49 unsigned localPort, const sp<AMessage> &notify, int32_t *sessionID);
55 const sp<AMessage> &notify,
64 const sp<AMessage> &notify, int32_t *sessionID);
71 const sp<AMessage> &notify,
119 const sp<AMessage> &notify,
MediaSender.h 32 struct AMessage;
50 const sp<AMessage> &notify);
57 ssize_t addTrack(const sp<AMessage> &format, uint32_t flags);
73 virtual void onMessageReceived(const sp<AMessage> &msg);
88 sp<AMessage> mFormat;
97 sp<AMessage> mNotify;
114 void onSenderNotify(const sp<AMessage> &msg);
  /frameworks/av/include/media/stagefright/
ACodec.h 54 void setNotificationMessage(const sp<AMessage> &msg);
55 void initiateSetup(const sp<AMessage> &msg);
60 void signalSetParameters(const sp<AMessage> &msg);
63 void initiateAllocateComponent(const sp<AMessage> &msg);
64 void initiateConfigureComponent(const sp<AMessage> &msg);
155 sp<AMessage> mNotify;
181 List<sp<AMessage> > mDeferredQueue;
198 status_t setCyclicIntraMacroblockRefresh(const sp<AMessage> &msg, int32_t mode);
213 status_t configureCodec(const char *mime, const sp<AMessage> &msg);
226 const char *mime, const sp<AMessage> &msg)
    [all...]
MediaCodec.h 30 struct AMessage;
54 const sp<AMessage> &format,
108 status_t getOutputFormat(sp<AMessage> *format) const;
118 void requestActivityNotification(const sp<AMessage> &notify);
122 status_t setParameters(const sp<AMessage> &params);
126 virtual void onMessageReceived(const sp<AMessage> &msg);
188 sp<AMessage> mNotify;
201 sp<AMessage> mOutputFormat;
216 sp<AMessage> mActivityNotify;
223 const sp<AMessage> &msg, sp<AMessage> *response)
    [all...]
Utils.h 43 struct AMessage;
45 const sp<MetaData> &meta, sp<AMessage> *format);
47 const sp<AMessage> &format, sp<MetaData> &meta);
  /frameworks/av/cmds/stagefright/
SimplePlayer.cpp 28 #include <media/stagefright/foundation/AMessage.h>
47 const sp<AMessage> &msg, sp<AMessage> *response) {
61 sp<AMessage> msg = new AMessage(kWhatSetDataSource, id());
63 sp<AMessage> response;
68 sp<AMessage> msg = new AMessage(kWhatSetSurface, id());
78 sp<AMessage> response;
83 sp<AMessage> msg = new AMessage(kWhatPrepare, id())
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
Mailer.java 67 public void sendMessage(String aSubject, String aMessage) {
68 if (aSubject == null || aMessage == null || sendMail == false){
69 printEmailFailureNotice(aSubject,aMessage);
108 + aMessage);
120 public void sendTextMessage(String aSubject, String aMessage) {
121 if (aSubject == null || aMessage == null || sendMail == false){
122 printEmailFailureNotice(aSubject,aMessage);
153 message.setText(aMessage);
167 String aSubject, String aMessage, String[] attachments) {
168 if (aSubject == null || aMessage == null || sendMail == false)
    [all...]

Completed in 354 milliseconds

1 2 3 4 5 6 7 8