Searched defs:msg (Results 26 - 50 of 307) 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/media/libvideoeditor/osal/src/
H A DM4PSW_DebugTrace.c39 * M4OSA_Char* cond, char* msg, M4OSA_ERR err)
46 * @param msg (IN): the error message
56 M4OSA_Char* msg,
68 printf("Error: %li, on %s: %s\n",err,cond,msg);
70 printf("Error: %li, on %s: %s Line %lu in: %s\n",err,cond,msg,line,file);
52 M4OSA_DebugTrace(M4OSA_Int32 line, M4OSA_Char* file, M4OSA_Int32 level, M4OSA_Char* cond, M4OSA_Char* msg, M4OSA_ERR err) argument
/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/media/jni/soundpool/
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 LOGV("Got message m=%d, mData=%d", msg.mMessageType, msg.mData);
86 switch (msg.mMessageType) {
91 doLoadSample(msg.mData);
95 msg
[all...]
/frameworks/base/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/base/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/base/media/libstagefright/rtsp/
H A DUDPPusher.cpp111 void UDPPusher::onMessageReceived(const sp<AMessage> &msg) { argument
112 switch (msg->what()) {
H A DAH263Assembler.cpp168 sp<AMessage> msg = mNotifyMsg->dup(); local
169 msg->setObject("access-unit", accessUnit);
170 msg->post();
181 sp<AMessage> msg = mNotifyMsg->dup(); local
182 msg->setInt32("eos", true);
183 msg->post();
H A DARawAudioAssembler.cpp96 sp<AMessage> msg = mNotifyMsg->dup(); local
97 msg->setObject("access-unit", buffer);
98 msg->post();
112 sp<AMessage> msg = mNotifyMsg->dup(); local
113 msg->setInt32("eos", true);
114 msg->post();
/frameworks/base/opengl/libs/GLES2_dbg/src/
H A Dvertex.cpp27 glesv2debugger::Message msg, cmd; local
28 msg.set_context_id(reinterpret_cast<int>(dbg));
29 msg.set_type(glesv2debugger::Message_Type_BeforeCall);
31 msg.set_expect_response(expectResponse);
32 msg.set_function(glesv2debugger::Message_Function_glDrawArrays);
33 msg.set_arg0(mode);
34 msg.set_arg1(first);
35 msg.set_arg2(count);
37 msg.set_arg7(dbg->maxAttrib); // indicate capturing vertex data
39 std::string * const data = msg
123 glesv2debugger::Message msg, cmd; local
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSIMFileHandler.java55 public void handleMessage(Message msg) { argument
56 super.handleMessage(msg);
105 protected void logd(String msg) { argument
106 Log.d(LOG_TAG, "[SIMFileHandler] " + msg);
109 protected void loge(String msg) { argument
110 Log.e(LOG_TAG, "[SIMFileHandler] " + msg);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLog.java55 protected void errPrintln(String msg) { argument
56 System.err.println(msg);
60 protected void outPrintln(String msg) { argument
61 System.out.println(msg);
/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/bluetooth/
H A DBluetoothProfileState.java114 public boolean processMessage(Message msg) { argument
115 if (msg.what != TRANSITION_TO_STABLE) {
130 public boolean processMessage(Message msg) { argument
131 if (msg.what == TRANSITION_TO_STABLE) {
134 dispatchMessage(msg);
139 private void dispatchMessage(Message msg) { argument
141 (BluetoothDeviceProfileState)msg.obj;
142 int cmd = msg.arg1;
/frameworks/base/core/java/android/webkit/
H A DSslErrorHandlerImpl.java59 public void handleMessage(Message msg) { argument
60 switch (msg.what) {
62 LoadListener loader = (LoadListener) msg.obj;
65 msg.arg1 == 1);
H A DStreamLoader.java120 public boolean handleMessage(Message msg) { argument
128 switch(msg.what) {
H A DWebSyncManager.java48 public void handleMessage(Message msg) { argument
49 if (msg.what == SYNC_MESSAGE) {
87 Message msg = mHandler.obtainMessage(SYNC_MESSAGE);
88 mHandler.sendMessageDelayed(msg, SYNC_LATER_INTERVAL);
104 Message msg = mHandler.obtainMessage(SYNC_MESSAGE);
105 mHandler.sendMessageDelayed(msg, SYNC_NOW_INTERVAL);
119 Message msg = mHandler.obtainMessage(SYNC_MESSAGE);
120 mHandler.sendMessageDelayed(msg, SYNC_LATER_INTERVAL);
135 Message msg = mHandler.obtainMessage(SYNC_MESSAGE);
136 mHandler.sendMessageDelayed(msg, SYNC_LATER_INTERVA
[all...]
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
H A DWifiConnectionTest.java96 public void handleMessage(Message msg) { argument
97 switch (msg.what) {
99 if (msg.arg1 == AsyncChannel.STATUS_SUCCESSFUL) {
100 //AsyncChannel in msg.obj
/frameworks/base/core/tests/coretests/src/android/os/
H A DBroadcasterTest.java46 Message msg = new Message();
47 msg.what = MESSAGE_A;
49 b.broadcast(msg);
52 public void handleMessage(Message msg) {
53 if (msg.what == MESSAGE_B) {
82 Message msg = new Message();
83 msg.what = MESSAGE_A;
85 b.broadcast(msg);
88 public void handleMessage(Message msg) { argument
89 int index = msg
[all...]
H A DMemoryFileTest.java123 private void readIndexOutOfBoundsException(int offset, int count, String msg) argument
132 fail(msg);
/frameworks/base/include/media/stagefright/
H A DMediaWriter.h57 void notify(int msg, int ext1, int ext2) { argument
59 mListener->notify(msg, ext1, ext2);
/frameworks/base/media/tests/omxjpegdecoder/
H A Djpeg_decoder_bench.cpp38 int nullObjectReturn(const char msg[]) { argument
39 if (msg) {
40 SkDebugf("--- %s\n", msg);
/frameworks/base/services/java/com/android/server/
H A DSystemServer.java72 void reportWtf(String msg, Throwable e) { argument
74 Log.wtf(TAG, "BOOT FAILURE " + msg, e);
/frameworks/base/services/java/com/android/server/wm/
H A DInputFilter.java216 public void handleMessage(Message msg) { argument
217 switch (msg.what) {
219 mHost = (Host)msg.obj;
238 final InputEvent event = (InputEvent)msg.obj;
243 onInputEvent(event, msg.arg1);

Completed in 412 milliseconds

1234567891011>>