Searched defs:msg (Results 26 - 50 of 348) sorted by relevance

1234567891011>>

/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DMockLog.java33 protected void outPrintln(String msg) { argument
34 mOut.append(msg);
39 protected void errPrintln(String msg) { argument
40 mErr.append(msg);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCsimFileHandler.java63 protected void logd(String msg) { argument
64 Log.d(LOG_TAG, msg);
68 protected void loge(String msg) { argument
69 Log.e(LOG_TAG, msg);
H A DUsimFileHandler.java79 protected void logd(String msg) { argument
80 Log.d(LOG_TAG, msg);
84 protected void loge(String msg) { argument
85 Log.e(LOG_TAG, msg);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DRuimPhoneBookInterfaceManager.java75 protected void logd(String msg) { argument
76 Log.d(LOG_TAG, "[RuimPbInterfaceManager] " + msg);
79 protected void loge(String msg) { argument
80 Log.e(LOG_TAG, "[RuimPbInterfaceManager] " + msg);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSIMFileHandler.java80 protected void logd(String msg) { argument
81 Log.d(LOG_TAG, "[SIMFileHandler] " + msg);
85 protected void loge(String msg) { argument
86 Log.e(LOG_TAG, "[SIMFileHandler] " + msg);
H A DSimPhoneBookInterfaceManager.java74 protected void logd(String msg) { argument
75 Log.d(LOG_TAG, "[SimPbInterfaceManager] " + msg);
78 protected void loge(String msg) { argument
79 Log.e(LOG_TAG, "[SimPbInterfaceManager] " + msg);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
H A DIsimFileHandler.java50 protected void logd(String msg) { argument
51 Log.d(LOG_TAG, msg);
55 protected void loge(String msg) { argument
56 Log.e(LOG_TAG, msg);
/frameworks/av/media/libmedia/
H A DSoundPoolThread.cpp25 void SoundPoolThread::write(SoundPoolMsg msg) { argument
33 mMsgQueue.push(msg);
43 SoundPoolMsg msg = mMsgQueue[0]; local
46 return msg;
84 SoundPoolMsg msg = read(); local
85 ALOGV("Got message m=%d, mData=%d", msg.mMessageType, msg.mData);
86 switch (msg.mMessageType) {
91 doLoadSample(msg.mData);
95 msg
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DAHierarchicalStateMachine.cpp50 void AHierarchicalStateMachine::onMessageReceived(const sp<AMessage> &msg) { argument
54 while (cur != NULL && !cur->onMessageReceived(msg)) {
67 msg->debugString().c_str());
H A DALooperRoster.cpp75 const sp<AMessage> &msg, int64_t delayUs) {
77 return postMessage_l(msg, delayUs);
81 const sp<AMessage> &msg, int64_t delayUs) {
82 ssize_t index = mHandlers.indexOfKey(msg->target());
96 msg->target());
102 looper->post(msg, delayUs);
107 void ALooperRoster::deliverMessage(const sp<AMessage> &msg) { argument
113 ssize_t index = mHandlers.indexOfKey(msg->target());
126 msg->target());
133 handler->onMessageReceived(msg);
74 postMessage( const sp<AMessage> &msg, int64_t delayUs) argument
80 postMessage_l( const sp<AMessage> &msg, int64_t delayUs) argument
155 postAndAwaitResponse( const sp<AMessage> &msg, sp<AMessage> *response) argument
[all...]
/frameworks/av/media/libstagefright/omx/
H A DSimpleSoftOMXComponent.cpp61 sp<AMessage> msg = new AMessage(kWhatSendCommand, mHandler->id()); local
62 msg->setInt32("cmd", cmd);
63 msg->setInt32("param", param);
64 msg->post();
310 sp<AMessage> msg = new AMessage(kWhatEmptyThisBuffer, mHandler->id());
311 msg->setPointer("header", buffer);
312 msg->post();
319 sp<AMessage> msg = new AMessage(kWhatFillThisBuffer, mHandler->id());
320 msg->setPointer("header", buffer);
321 msg
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG2TSAssembler.cpp96 sp<AMessage> msg = mNotifyMsg->dup(); local
97 msg->setBuffer("access-unit", buffer);
98 msg->post();
112 sp<AMessage> msg = mNotifyMsg->dup(); local
113 msg->setInt32("eos", true);
114 msg->post();
H A DUDPPusher.cpp111 void UDPPusher::onMessageReceived(const sp<AMessage> &msg) { argument
112 switch (msg->what()) {
H A DAH263Assembler.cpp170 sp<AMessage> msg = mNotifyMsg->dup(); local
171 msg->setBuffer("access-unit", accessUnit);
172 msg->post();
183 sp<AMessage> msg = mNotifyMsg->dup(); local
184 msg->setInt32("eos", true);
185 msg->post();
H A DARawAudioAssembler.cpp96 sp<AMessage> msg = mNotifyMsg->dup(); local
97 msg->setBuffer("access-unit", buffer);
98 msg->post();
112 sp<AMessage> msg = mNotifyMsg->dup(); local
113 msg->setInt32("eos", true);
114 msg->post();
/frameworks/base/core/java/android/os/
H A DBroadcaster.java168 * Send out msg. Anyone who has registered via the request() method will be
171 public void broadcast(Message msg) argument
178 int senderWhat = msg.what;
194 m.copyFrom(msg);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DSecurityMessageDisplay.java20 public void setMessage(CharSequence msg, boolean important); argument
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLog.java63 protected void errPrintln(String msg) { argument
64 System.err.println(msg);
68 protected void outPrintln(String msg) { argument
69 System.out.println(msg);
/frameworks/av/include/media/stagefright/
H A DMediaWriter.h57 void notify(int msg, int ext1, int ext2) { argument
59 mListener->notify(msg, ext1, ext2);
/frameworks/av/media/libmediaplayerservice/
H A DHDCP.cpp114 void HDCP::ObserveWrapper(void *me, int msg, int ext1, int ext2) { argument
115 static_cast<HDCP *>(me)->observe(msg, ext1, ext2);
118 void HDCP::observe(int msg, int ext1, int ext2) { argument
122 mObserver->notify(msg, ext1, ext2, NULL /* obj */);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoder.cpp84 void NuPlayer::Decoder::onMessageReceived(const sp<AMessage> &msg) { argument
85 switch (msg->what()) {
89 CHECK(msg->findInt32("what", &what));
92 onFillThisBuffer(msg);
95 notify->setMessage("codec-request", msg);
107 void NuPlayer::Decoder::onFillThisBuffer(const sp<AMessage> &msg) { argument
109 CHECK(msg->findMessage("reply", &reply));
113 CHECK(msg->findBuffer("buffer", &outBuffer));
128 notify->setMessage("codec-request", msg);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DMediaPuller.cpp50 const sp<AMessage> &msg) {
52 status_t err = msg->postAndAwaitResponse(&response);
70 sp<AMessage> msg = new AMessage(kWhatStop, id()); local
71 msg->setMessage("notify", notify);
72 msg->post();
83 void MediaPuller::onMessageReceived(const sp<AMessage> &msg) { argument
84 switch (msg->what()) {
106 CHECK(msg->senderAwaitsResponse(&replyID));
124 CHECK(msg->findMessage("notify", &notify));
132 CHECK(msg
49 postSynchronouslyAndReturnError( const sp<AMessage> &msg) argument
215 sp<AMessage> msg = new AMessage(kWhatPull, id()); local
[all...]
H A DRepeaterSource.cpp159 void RepeaterSource::onMessageReceived(const sp<AMessage> &msg) { argument
160 switch (msg->what()) {
/frameworks/base/core/java/android/app/
H A DIntentService.java64 public void handleMessage(Message msg) { argument
65 onHandleIntent((Intent)msg.obj);
66 stopSelf(msg.arg1);
116 Message msg = mServiceHandler.obtainMessage();
117 msg.arg1 = startId;
118 msg.obj = intent;
119 mServiceHandler.sendMessage(msg);
/frameworks/base/core/java/android/view/
H A DInputFilter.java225 public void handleMessage(Message msg) { argument
226 switch (msg.what) {
228 mHost = (IInputFilterHost) msg.obj;
247 final InputEvent event = (InputEvent)msg.obj;
252 onInputEvent(event, msg.arg1);

Completed in 6326 milliseconds

1234567891011>>