Searched refs:msg (Results 226 - 250 of 909) sorted by relevance

1234567891011>>

/frameworks/base/services/core/java/com/android/server/pm/
H A DCrossProfileIntentFilter.java83 String msg = "Unknown element under "
86 PackageManagerService.reportSettingsProblem(Log.WARN, msg);
94 String msg = "Missing element under " + TAG + ": " + ATTR_FILTER +
96 PackageManagerService.reportSettingsProblem(Log.WARN, msg);
104 String msg = "Missing element under " + TAG +": " + attribute + " at " +
106 PackageManagerService.reportSettingsProblem(Log.WARN, msg);
/frameworks/base/tools/aapt/
H A DSourcePos.cpp118 String8 msg = String8::formatV(fmt, ap); local
120 g_errors.push_back(ErrorPos(this->file, this->line, msg, ErrorPos::ERROR));
128 String8 msg = String8::formatV(fmt, ap); local
130 ErrorPos(this->file, this->line, msg, ErrorPos::WARNING).print(stderr);
138 String8 msg = String8::formatV(fmt, ap); local
140 ErrorPos(this->file, this->line, msg, ErrorPos::NOTE).print(stderr);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSubscriptionSourceManager.java109 public void handleMessage(Message msg) { argument
111 switch (msg.what) {
115 log("CDMA_SUBSCRIPTION_SOURCE event = " + msg.what);
116 ar = (AsyncResult) msg.obj;
126 ar = (AsyncResult)msg.obj;
143 super.handleMessage(msg);
/frameworks/base/services/net/java/android/net/ip/
H A DIpManager.java186 private void log(String msg) { argument
187 mLocalLog.log(PREFIX + msg);
464 final String msg = "interfaceAdded(" + iface +")";
465 logMsg(msg);
482 final String msg = "interfaceRemoved(" + iface +")";
483 logMsg(msg);
486 private void logMsg(String msg) {
487 Log.d(mTag, msg);
488 getHandler().post(() -> { mLocalLog.log("OBSERVED " + msg); });
650 protected String getLogRecString(Message msg) { argument
667 recordLogRec(Message msg) argument
1093 processMessage(Message msg) argument
1145 processMessage(Message msg) argument
1195 processMessage(Message msg) argument
1322 processMessage(Message msg) argument
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.h55 virtual void onMessageReceived(const sp<AMessage> &msg);
82 void onSessionNotify(const sp<AMessage> &msg);
84 const sp<AMessage> &msg, int32_t currentGeneration,
H A DNuPlayerDecoder.h42 virtual void onMessageReceived(const sp<AMessage> &msg);
119 bool isStaleReply(const sp<AMessage> &msg);
123 bool onInputBufferFetched(const sp<AMessage> &msg);
124 void onRenderBuffer(const sp<AMessage> &msg);
H A DRTSPSource.h54 void onMessageReceived(const sp<AMessage> &msg);
132 void onSDPLoaded(const sp<AMessage> &msg);
133 void onDisconnected(const sp<AMessage> &msg);
156 void onSignalEOS(const sp<AMessage> &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/tests/
H A DOMXHarness.h47 IOMX::node_id node, omx_message *msg, int64_t timeoutUs = -1);
53 omx_message *msg, int64_t timeoutUs = -1);
95 const omx_message &msg,
/frameworks/av/media/ndk/
H A DNdkMediaMuxer.cpp82 sp<AMessage> msg; local
83 AMediaFormat_getFormat(format, &msg);
84 return translate_error(muxer->mImpl->addTrack(msg));
/frameworks/base/core/java/android/app/
H A DEphemeralResolverService.java68 final Message msg = mHandler.obtainMessage(
72 msg.setData(data);
73 msg.sendToTarget();
/frameworks/base/core/java/android/net/
H A DEthernetManager.java42 public void handleMessage(Message msg) {
43 if (msg.what == MSG_AVAILABILITY_CHANGED) {
44 boolean isAvailable = (msg.arg1 == 1);
/frameworks/base/core/java/com/android/internal/util/
H A DWakeupMessage.java110 Message msg = mHandler.obtainMessage(mCmd, mArg1, mArg2, mObj);
111 mHandler.dispatchMessage(msg);
112 msg.recycle();
/frameworks/base/core/jni/android/graphics/
H A DUtils.cpp113 jobject android::nullObjectReturn(const char msg[]) { argument
114 if (msg) {
115 SkDebugf("--- %s\n", msg);
/frameworks/base/services/core/java/com/android/server/am/
H A DBaseErrorDialog.java77 public void handleMessage(Message msg) {
78 if (msg.what == ENABLE_BUTTONS) {
81 } else if (msg.what == DISABLE_BUTTONS) {
H A DLockTaskNotify.java84 public void handleMessage(Message msg) { argument
85 switch(msg.what) {
87 handleShowToast(msg.arg1);
/frameworks/base/tests/utils/SleepUtils/WakeLoopService/src/android/test/wakeuploop/
H A DWakeLoopService.java44 public void handleMessage(Message msg) {
45 if (msg.what == MSG_STOP_SERVICE) {
48 super.handleMessage(msg);
/frameworks/native/cmds/servicemanager/
H A Dbinder.h46 struct binder_io *msg,
56 struct binder_io *msg, struct binder_io *reply,
65 struct binder_io *msg, struct binder_io *reply);
/frameworks/av/include/media/
H A DIMediaPlayerClient.h31 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
H A DIMediaRecorderClient.h31 virtual void notify(int msg, int ext1, int ext2) = 0;
/frameworks/av/include/media/stagefright/
H A DUtils.h86 void writeToAMessage(sp<AMessage> msg, const AudioPlaybackRate &rate);
87 void readFromAMessage(const sp<AMessage> &msg, AudioPlaybackRate *rate /* nonnull */);
89 void writeToAMessage(sp<AMessage> msg, const AVSyncSettings &sync, float videoFpsHint);
91 const sp<AMessage> &msg, AVSyncSettings *sync /* nonnull */, float *videoFps /* nonnull */);
/frameworks/av/media/libstagefright/rtsp/
H A DUDPPusher.h35 virtual void onMessageReceived(const sp<AMessage> &msg);
/frameworks/base/core/java/android/service/notification/
H A DConditionProviderService.java194 public void handleMessage(Message msg) { argument
197 switch(msg.what) {
204 onSubscribe((Uri)msg.obj);
208 onUnsubscribe((Uri)msg.obj);
/frameworks/base/core/jni/
H A Dandroid_util_Log.cpp82 * public static native int println_native(int buffer, int priority, String tag, String msg)
88 const char* msg = NULL; local
102 msg = env->GetStringUTFChars(msgObj, NULL);
104 int res = __android_log_buf_write(bufID, (android_LogPriority)priority, tag, msg);
108 env->ReleaseStringUTFChars(msgObj, msg);
/frameworks/base/services/core/java/com/android/server/wm/
H A DKeyguardDisableHandler.java58 public void handleMessage(Message msg) { argument
63 switch (msg.what) {
65 final Pair<IBinder, String> pair = (Pair<IBinder, String>)msg.obj;
70 mKeyguardTokenWatcher.release((IBinder)msg.obj);

Completed in 4350 milliseconds

1234567891011>>