Searched defs:msg (Results 51 - 75 of 346) sorted by relevance

1234567891011>>

/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/services/java/com/android/server/
H A DSystemServer.java82 void reportWtf(String msg, Throwable e) { argument
84 Log.wtf(TAG, "BOOT FAILURE " + msg, e);
/frameworks/base/services/java/com/android/server/wm/
H A DKeyguardDisableHandler.java56 public void handleMessage(Message msg) { argument
61 switch (msg.what) {
63 final Pair<IBinder, String> pair = (Pair<IBinder, String>)msg.obj;
68 mKeyguardTokenWatcher.release((IBinder)msg.obj);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DAdnRecordLoader.java131 handleMessage(Message msg) { argument
137 switch (msg.what) {
139 ar = (AsyncResult)(msg.obj);
172 ar = (AsyncResult)(msg.obj);
181 ar = (AsyncResult)(msg.obj);
212 ar = (AsyncResult)(msg.obj);
233 ar = (AsyncResult)(msg.obj);
H A DSmsStorageMonitor.java95 * @param msg the message to handle
98 public void handleMessage(Message msg) { argument
101 switch (msg.what) {
107 ar = (AsyncResult) msg.obj;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DRilMessageDecoder.java69 Message msg = obtainMessage(CMD_START);
70 msg.obj = rilMsg;
71 sendMessage(msg);
81 Message msg = obtainMessage(RilMessageDecoder.CMD_PARAMS_READY);
82 msg.arg1 = resCode.value();
83 msg.obj = cmdParams;
84 sendMessage(msg);
88 Message msg = mCaller.obtainMessage(CatService.MSG_ID_RIL_MSG_DECODED,
90 msg.sendToTarget();
106 public boolean processMessage(Message msg) { argument
121 processMessage(Message msg) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DRuimFileHandler.java69 protected void logd(String msg) { argument
70 Log.d(LOG_TAG, "[RuimFileHandler] " + msg);
74 protected void loge(String msg) { argument
75 Log.e(LOG_TAG, "[RuimFileHandler] " + msg);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DGSMTestHandler.java62 public boolean handleMessage(Message msg) { argument
64 mCurrentMessage = msg;
96 Message msg;
98 msg = null;
108 msg = Message.obtain();
109 msg.copyFrom(mCurrentMessage);
115 if (msg == null || code == GSMPhoneTest.ANY_MESSAGE || msg.what == code) return msg;
/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/av/media/libmedia/
H A DIHDCP.cpp42 int msg, int ext1, int ext2, const Parcel *obj) {
45 data.writeInt32(msg);
120 int msg = data.readInt32(); local
132 notify(msg, ext1, ext2, &obj);
41 notify( int msg, int ext1, int ext2, const Parcel *obj) argument
H A DIStreamSource.cpp152 Command cmd, bool synchronous, const sp<AMessage> &msg) {
158 if (msg != NULL) {
160 msg->writeToParcel(&data);
191 sp<AMessage> msg; local
194 msg = AMessage::FromParcel(data);
197 issueCommand(cmd, synchronous, msg);
151 issueCommand( Command cmd, bool synchronous, const sp<AMessage> &msg) argument
/frameworks/av/media/libstagefright/foundation/
H A DALooper.cpp157 void ALooper::post(const sp<AMessage> &msg, int64_t delayUs) { argument
174 event.mMessage = msg;
/frameworks/av/media/libstagefright/rtsp/
H A DAAMRAssembler.cpp213 sp<AMessage> msg = mNotifyMsg->dup(); local
214 msg->setBuffer("access-unit", accessUnit);
215 msg->post();
229 sp<AMessage> msg = mNotifyMsg->dup(); local
230 msg->setInt32("eos", true);
231 msg->post();
H A DAAVCAssembler.cpp347 sp<AMessage> msg = mNotifyMsg->dup(); local
348 msg->setBuffer("access-unit", accessUnit);
349 msg->post();
371 sp<AMessage> msg = mNotifyMsg->dup(); local
372 msg->setInt32("eos", true);
373 msg->post();
H A DARTPSession.cpp126 void ARTPSession::onMessageReceived(const sp<AMessage> &msg) { argument
127 switch (msg->what()) {
131 if (msg->findInt32("first-rtcp", &firstRTCP)) {
139 CHECK(msg->findSize("track-index", &trackIndex));
142 if (msg->findInt32("eos", &eos) && eos) {
149 CHECK(msg->findBuffer("access-unit", &accessUnit));
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextPlayer.cpp70 sp<AMessage> msg = new AMessage(kWhatSeek, id()); local
71 msg->setInt64("seekTimeUs", timeUs);
72 msg->post();
76 sp<AMessage> msg = new AMessage(kWhatSetSource, id()); local
77 msg->setObject("source", source);
78 msg->post();
81 void TimedTextPlayer::onMessageReceived(const sp<AMessage> &msg) { argument
82 switch (msg->what()) {
116 CHECK(msg->findInt32("generation", &generation));
118 // Drop obsolete msg
233 sp<AMessage> msg = new AMessage(kWhatRetryRead, id()); local
261 sp<AMessage> msg = new AMessage(kWhatSendSubtitle, id()); local
[all...]
/frameworks/av/media/libstagefright/wifi-display/
H A DParsedMessage.cpp28 sp<ParsedMessage> msg = new ParsedMessage; local
29 ssize_t res = msg->parse(data, size, noMoreData);
37 return msg;
/frameworks/av/services/camera/libcameraservice/camera2/
H A DJpegCompressor.cpp169 bool JpegCompressor::checkError(const char *msg) { argument
175 __FUNCTION__, msg, errBuffer);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java479 private static void log(String msg) { argument
480 Log.d(TAG, msg);
H A DBluetoothPbap.java315 private static void log(String msg) { argument
316 Log.d(TAG, msg);
/frameworks/base/core/java/android/content/
H A DAsyncQueryHandler.java66 public void handleMessage(Message msg) { argument
70 WorkerArgs args = (WorkerArgs) msg.obj;
72 int token = msg.what;
73 int event = msg.arg1;
113 reply.arg1 = msg.arg1;
116 Log.d(TAG, "WorkerHandler.handleMsg: msg.arg1=" + msg.arg1
168 Message msg = mWorkerThreadHandler.obtainMessage(token);
169 msg.arg1 = EVENT_ARG_QUERY;
179 msg
330 handleMessage(Message msg) argument
[all...]
/frameworks/base/core/java/android/os/
H A DMessageQueue.java135 Message msg = mMessages;
136 if (msg != null && msg.target == null) {
139 prevMsg = msg;
140 msg = msg.next;
141 } while (msg != null && !msg.isAsynchronous());
143 if (msg != null) {
144 if (now < msg
283 enqueueMessage(Message msg, long when) argument
[all...]
/frameworks/base/core/java/android/util/
H A DLog.java89 TerribleFailure(String msg, Throwable cause) { super(msg, cause); } argument
114 * @param msg The message you would like logged.
116 public static int v(String tag, String msg) { argument
117 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg);
124 * @param msg The message you would like logged.
127 public static int v(String tag, String msg, Throwable tr) { argument
128 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg + '\n' + getStackTraceString(tr));
135 * @param msg The message you would like logged.
137 public static int d(String tag, String msg) { argument
148 d(String tag, String msg, Throwable tr) argument
158 i(String tag, String msg) argument
169 i(String tag, String msg, Throwable tr) argument
179 w(String tag, String msg) argument
190 w(String tag, String msg, Throwable tr) argument
230 e(String tag, String msg) argument
241 e(String tag, String msg, Throwable tr) argument
254 wtf(String tag, String msg) argument
275 wtf(String tag, String msg, Throwable tr) argument
331 println(int priority, String tag, String msg) argument
340 println_native(int bufID, int priority, String tag, String msg) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DGeolocationPermissionsClassic.java70 public void handleMessage(Message msg) {
72 switch (msg.what) {
74 Map values = (Map) msg.obj;
80 Map values = (Map) msg.obj;
99 public void handleMessage(Message msg) {
101 switch (msg.what) {
104 ValueCallback callback = (ValueCallback) msg.obj;
111 Map values = (Map) msg.obj;
121 nativeClear((String) msg.obj);
124 nativeAllow((String) msg
146 postMessage(Message msg) argument
160 postUIMessage(Message msg) argument
[all...]

Completed in 6154 milliseconds

1234567891011>>