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

1234567891011>>

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DCsimFileHandler.java61 protected void logd(String msg) { argument
62 Rlog.d(LOG_TAG, msg);
66 protected void loge(String msg) { argument
67 Rlog.e(LOG_TAG, msg);
H A DIsimFileHandler.java49 protected void logd(String msg) { argument
50 Rlog.d(LOG_TAG, msg);
54 protected void loge(String msg) { argument
55 Rlog.e(LOG_TAG, msg);
H A DSIMFileHandler.java78 protected void logd(String msg) { argument
79 Rlog.d(LOG_TAG, msg);
83 protected void loge(String msg) { argument
84 Rlog.e(LOG_TAG, msg);
H A DUsimFileHandler.java81 protected void logd(String msg) { argument
82 Rlog.d(LOG_TAG, msg);
86 protected void loge(String msg) { argument
87 Rlog.e(LOG_TAG, msg);
/frameworks/av/media/libstagefright/filters/
H A DRSFilter.cpp38 status_t RSFilter::configure(const sp<AMessage> &msg) { argument
39 status_t err = SimpleFilter::configure(msg);
44 if (!msg->findString("cacheDir", &mCacheDir)) {
50 if (!msg->findObject("rs-wrapper", (sp<RefBase>*)&wrapper)) {
83 status_t RSFilter::setParameters(const sp<AMessage> &msg) { argument
84 return mCallback->handleSetParameters(msg);
/frameworks/av/media/libstagefright/foundation/
H A DAHierarchicalStateMachine.cpp54 void AHierarchicalStateMachine::handleMessage(const sp<AMessage> &msg) { argument
58 while (cur != NULL && !cur->onMessageReceived(msg)) {
71 msg->debugString().c_str());
/frameworks/av/media/libstagefright/omx/
H A DSimpleSoftOMXComponent.cpp61 sp<AMessage> msg = new AMessage(kWhatSendCommand, mHandler); local
62 msg->setInt32("cmd", cmd);
63 msg->setInt32("param", param);
64 msg->post();
318 sp<AMessage> msg = new AMessage(kWhatEmptyThisBuffer, mHandler);
319 msg->setPointer("header", buffer);
320 msg->post();
327 sp<AMessage> msg = new AMessage(kWhatFillThisBuffer, mHandler);
328 msg->setPointer("header", buffer);
329 msg
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DUDPPusher.cpp111 void UDPPusher::onMessageReceived(const sp<AMessage> &msg) { argument
112 switch (msg->what()) {
H A DAH263Assembler.cpp196 sp<AMessage> msg = mNotifyMsg->dup(); local
197 msg->setBuffer("access-unit", accessUnit);
198 msg->post();
209 sp<AMessage> msg = mNotifyMsg->dup(); local
210 msg->setInt32("eos", true);
211 msg->post();
H A DARawAudioAssembler.cpp98 sp<AMessage> msg = mNotifyMsg->dup(); local
99 msg->setBuffer("access-unit", buffer);
100 msg->post();
114 sp<AMessage> msg = mNotifyMsg->dup(); local
115 msg->setInt32("eos", true);
116 msg->post();
H A DSDPLoader.cpp54 sp<AMessage> msg = new AMessage(kWhatLoad, this); local
55 msg->setString("url", url);
58 msg->setPointer(
63 msg->post();
72 void SDPLoader::onMessageReceived(const sp<AMessage> &msg) { argument
73 switch (msg->what()) {
75 onLoad(msg);
84 void SDPLoader::onLoad(const sp<AMessage> &msg) { argument
88 CHECK(msg->findString("url", &url));
91 msg
[all...]
/frameworks/base/cmds/hid/src/com/android/commands/hid/
H A DHid.java122 private static void error(String msg) { argument
123 error(msg, null);
126 private static void error(String msg, Exception e) { argument
127 System.out.println(msg);
128 Log.e(TAG, msg);
/frameworks/base/core/java/android/net/metrics/
H A DDhcpClientEvent.java37 public final String msg; field in class:DhcpClientEvent
41 public DhcpClientEvent(String ifName, String msg, int durationMs) { argument
43 this.msg = msg;
49 this.msg = in.readString();
56 out.writeString(msg);
67 return String.format("DhcpClientEvent(%s, %s, %dms)", ifName, msg, durationMs);
/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/core/java/android/permissionpresenterservice/
H A DRuntimePermissionPresenterService.java112 public void handleMessage(Message msg) { argument
113 switch (msg.what) {
115 SomeArgs args = (SomeArgs) msg.obj;
132 RemoteCallback callback = (RemoteCallback) msg.obj;
133 final boolean system = msg.arg1 == 1;
/frameworks/base/core/java/android/print/
H A DPrintServicesLoader.java118 public void handleMessage(Message msg) { argument
120 deliverResult((List<PrintServiceInfo>) msg.obj);
/frameworks/base/core/java/android/service/vr/
H A DVrListenerService.java84 public void handleMessage(Message msg) { argument
85 switch (msg.what) {
87 VrListenerService.this.onCurrentVrActivityChanged((ComponentName) msg.obj);
/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 ALOGV("Got message m=%d, mData=%d", msg.mMessageType, msg.mData);
86 switch (msg.mMessageType) {
91 doLoadSample(msg.mData);
95 msg
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/shortcut/
H A DShortcutKeyServiceProxy.java49 public void handleMessage(Message msg) { argument
50 final int what = msg.what;
53 mCallbacks.onShortcutKeyPressed((Long)msg.obj);
/frameworks/base/services/core/java/com/android/server/pm/
H A DProcessLoggingHandler.java48 public void handleMessage(Message msg) { argument
49 switch (msg.what) {
51 Bundle bundle = msg.getData();
64 Bundle bundle = msg.getData();
74 Message msg = obtainMessage(INVALIDATE_BASE_APK_HASH_MSG);
75 msg.setData(data);
76 sendMessage(msg);
/frameworks/base/telephony/java/android/telephony/
H A DRlog.java38 public static int v(String tag, String msg) { argument
39 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag, msg);
42 public static int v(String tag, String msg, Throwable tr) { argument
44 msg + '\n' + Log.getStackTraceString(tr));
47 public static int d(String tag, String msg) { argument
48 return Log.println_native(Log.LOG_ID_RADIO, Log.DEBUG, tag, msg);
51 public static int d(String tag, String msg, Throwable tr) { argument
53 msg + '\n' + Log.getStackTraceString(tr));
56 public static int i(String tag, String msg) { argument
57 return Log.println_native(Log.LOG_ID_RADIO, Log.INFO, tag, msg);
60 i(String tag, String msg, Throwable tr) argument
65 w(String tag, String msg) argument
69 w(String tag, String msg, Throwable tr) argument
78 e(String tag, String msg) argument
82 e(String tag, String msg, Throwable tr) argument
87 println(int priority, String tag, String msg) argument
[all...]
/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/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestPushMessage.java43 public BluetoothMasRequestPushMessage(String folder, String msg, CharsetType charset, argument
46 mMsg = msg;
/frameworks/av/include/media/stagefright/
H A DMediaWriter.h60 void notify(int msg, int ext1, int ext2) { argument
62 mListener->notify(msg, ext1, ext2);
/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, this); local
71 msg->setMessage("notify", notify);
72 msg->post();
83 void MediaPuller::onMessageReceived(const sp<AMessage> &msg) { argument
84 switch (msg->what()) {
109 CHECK(msg->senderAwaitsResponse(&replyID));
127 CHECK(msg->findMessage("notify", &notify));
135 CHECK(msg
49 postSynchronouslyAndReturnError( const sp<AMessage> &msg) argument
218 sp<AMessage> msg = new AMessage(kWhatPull, this); local
[all...]

Completed in 1069 milliseconds

1234567891011>>