Home
last modified time | relevance | path

Searched defs:msg (Results 1 – 25 of 882) sorted by relevance

12345678910>>...36

/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/debug/
DLog.java58 public static void d(Tag tag, String msg) { in d()
60 android.util.Log.d(tag.toString(), msg); in d() local
64 public static void d(Tag tag, String msg, Throwable tr) { in d()
66 android.util.Log.d(tag.toString(), msg, tr); in d() local
70 public static void e(Tag tag, String msg) { in e()
72 android.util.Log.e(tag.toString(), msg); in e() local
76 public static void e(Tag tag, String msg, Throwable tr) { in e()
78 android.util.Log.e(tag.toString(), msg, tr); in e() local
82 public static void i(Tag tag, String msg) { in i()
84 android.util.Log.i(tag.toString(), msg); in i() local
[all …]
/frameworks/base/core/java/android/util/
DSlog.java35 public static int v(String tag, String msg) { in v()
39 public static int v(String tag, String msg, Throwable tr) { in v()
45 public static int d(String tag, String msg) { in d()
50 public static int d(String tag, String msg, Throwable tr) { in d()
56 public static int i(String tag, String msg) { in i()
60 public static int i(String tag, String msg, Throwable tr) { in i()
66 public static int w(String tag, String msg) { in w()
71 public static int w(String tag, String msg, Throwable tr) { in w()
81 public static int e(String tag, String msg) { in e()
86 public static int e(String tag, String msg, Throwable tr) { in e()
[all …]
DLog.java107 TerribleFailure(String msg, Throwable cause) { super(msg, cause); } in TerribleFailure()
134 public static int v(@Nullable String tag, @NonNull String msg) { in v()
145 public static int v(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { in v()
155 public static int d(@Nullable String tag, @NonNull String msg) { in d()
166 public static int d(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { in d()
176 public static int i(@Nullable String tag, @NonNull String msg) { in i()
187 public static int i(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { in i()
197 public static int w(@Nullable String tag, @NonNull String msg) { in w()
208 public static int w(@Nullable String tag, @Nullable String msg, @Nullable Throwable tr) { in w()
250 public static int e(@Nullable String tag, @NonNull String msg) { in e()
[all …]
/frameworks/base/services/robotests/src/com/android/server/testing/shadows/
DShadowSlog.java28 protected static int v(String tag, String msg) { in v()
33 protected static int v(String tag, String msg, Throwable tr) { in v()
38 protected static int d(String tag, String msg) { in d()
43 protected static int d(String tag, String msg, Throwable tr) { in d()
48 protected static int i(String tag, String msg) { in i()
53 protected static int i(String tag, String msg, Throwable tr) { in i()
58 protected static int w(String tag, String msg) { in w()
63 protected static int w(String tag, String msg, Throwable tr) { in w()
73 protected static int e(String tag, String msg) { in e()
78 protected static int e(String tag, String msg, Throwable tr) { in e()
[all …]
/frameworks/wilhelm/src/android/
Dandroid_GenericPlayer.cpp139 sp<AMessage> msg = new AMessage(kWhatPrepare, this); in prepare() local
147 sp<AMessage> msg = new AMessage(kWhatPlay, this); in play() local
154 sp<AMessage> msg = new AMessage(kWhatPause, this); in pause() local
174 sp<AMessage> msg = new AMessage(kWhatSeek, this); in seek() local
182 sp<AMessage> msg = new AMessage(kWhatLoop, this); in loop() local
190 sp<AMessage> msg = new AMessage(kWhatBuffUpdateThres, this); in setBufferingUpdateThreshold() local
219 sp<AMessage> msg = new AMessage(kWhatAttachAuxEffect, this); in attachAuxEffect() local
229 sp<AMessage> msg = new AMessage(kWhatSetAuxEffectSendLevel, this); in setAuxEffectSendLevel() local
260 sp<AMessage> msg = new AMessage(kWhatSetPlayEvents, this); in setPlayEvents() local
288 sp<AMessage> msg = new AMessage(kWhatNotif, this); in notify() local
[all …]
Dandroid_GenericMediaPlayer.cpp62 static const char *media_event_type_to_string(media_event_type msg) in media_event_type_to_string()
85 #define _(code, msg) case code: return msg; in media_error_type_to_string() argument
99 #define _(code, msg) case code: return msg; in media_info_type_to_string() argument
116 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { in notify()
395 void GenericMediaPlayer::onSeek(const sp<AMessage> &msg) { in onSeek()
430 void GenericMediaPlayer::onLoop(const sp<AMessage> &msg) { in onLoop()
458 void GenericMediaPlayer::onAttachAuxEffect(const sp<AMessage> &msg) { in onAttachAuxEffect()
472 void GenericMediaPlayer::onSetAuxEffectSendLevel(const sp<AMessage> &msg) { in onSetAuxEffectSendLevel()
486 void GenericMediaPlayer::onBufferingUpdate(const sp<AMessage> &msg) { in onBufferingUpdate()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
DMediaAudioEffectTest.java153 String msg = "test1_0ConstructorFromType()"; in test1_0ConstructorFromType() local
196 String msg = "test1_1ConstructorFromUuid()"; in test1_1ConstructorFromUuid() local
231 String msg = "test1_2ConstructorUnknownType()"; in test1_2ConstructorUnknownType() local
254 String msg = "test1_3GetEnabledAfterRelease()"; in test1_3GetEnabledAfterRelease() local
280 String msg = "test1_4InsertOnMediaPlayer()"; in test1_4InsertOnMediaPlayer() local
317 String msg = "test1_5AuxiliaryOnMediaPlayer()"; in test1_5AuxiliaryOnMediaPlayer() local
349 String msg = "test1_6AuxiliaryOnMediaPlayerFailure()"; in test1_6AuxiliaryOnMediaPlayerFailure() local
397 String msg = "test1_7AuxiliaryOnAudioTrack()"; in test1_7AuxiliaryOnAudioTrack() local
439 String msg = "test2_0SetEnabledGetEnabled()"; in test2_0SetEnabledGetEnabled() local
472 String msg = "test2_1SetEnabledAfterRelease()"; in test2_1SetEnabledAfterRelease() local
[all …]
DMediaEnvReverbTest.java105 String msg = "test1_0ConstructorAndRelease()"; in test0_0ConstructorAndRelease() local
136 String msg = "test1_0Room()"; in test1_0Room() local
171 String msg = "test1_1Decay()"; in test1_1Decay() local
242 String msg = "test1_3Reverb()"; in test1_3Reverb() local
276 String msg = "test1_4DiffusionAndDensity()"; in test1_4DiffusionAndDensity() local
311 String msg = "test1_5Properties()"; in test1_5Properties() local
351 String msg = "test2_0AuxiliarySoundModification()"; in test2_0AuxiliarySoundModification() local
425 String msg = "test2_1InsertSoundModification()"; in test2_1InsertSoundModification() local
/frameworks/multidex/library/test/src/android/util/
DLog.java67 public static int v(String tag, String msg) { in v()
78 public static int v(String tag, String msg, Throwable tr) { in v()
88 public static int d(String tag, String msg) { in d()
99 public static int d(String tag, String msg, Throwable tr) { in d()
109 public static int i(String tag, String msg) { in i()
120 public static int i(String tag, String msg, Throwable tr) { in i()
130 public static int w(String tag, String msg) { in w()
141 public static int w(String tag, String msg, Throwable tr) { in w()
161 public static int e(String tag, String msg) { in e()
172 public static int e(String tag, String msg, Throwable tr) { in e()
[all …]
/frameworks/base/telephony/java/com/android/telephony/
DRlog.java39 private static int log(int priority, String tag, String msg) { in log()
43 public static int v(String tag, String msg) { in v()
47 public static int v(String tag, String msg, Throwable tr) { in v()
52 public static int d(String tag, String msg) { in d()
56 public static int d(String tag, String msg, Throwable tr) { in d()
61 public static int i(String tag, String msg) { in i()
65 public static int i(String tag, String msg, Throwable tr) { in i()
70 public static int w(String tag, String msg) { in w()
74 public static int w(String tag, String msg, Throwable tr) { in w()
83 public static int e(String tag, String msg) { in e()
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DTaskChangeNotificationController.java196 public void handleMessage(Message msg) { in handleMessage()
349 final Message msg = mHandler.obtainMessage(NOTIFY_TASK_STACK_CHANGE_LISTENERS_MSG); in notifyTaskStackChanged() local
358 final Message msg = mHandler.obtainMessage(NOTIFY_ACTIVITY_PINNED_LISTENERS_MSG, in notifyActivityPinned() local
368 final Message msg = mHandler.obtainMessage(NOTIFY_ACTIVITY_UNPINNED_LISTENERS_MSG); in notifyActivityUnpinned() local
385 final Message msg = mHandler.obtainMessage(NOTIFY_ACTIVITY_RESTART_ATTEMPT_LISTENERS_MSG, in notifyActivityRestartAttempt() local
393 final Message msg = mHandler.obtainMessage(NOTIFY_ACTIVITY_DISMISSING_DOCKED_ROOT_TASK_MSG); in notifyActivityDismissingDockedRootTask() local
400 final Message msg = mHandler.obtainMessage(NOTIFY_FORCED_RESIZABLE_MSG, taskId, reason, in notifyActivityForcedResizable() local
408 final Message msg = mHandler.obtainMessage( in notifyActivityLaunchOnSecondaryDisplayFailed() local
417 final Message msg = mHandler.obtainMessage( in notifyActivityLaunchOnSecondaryDisplayRerouted() local
425 final Message msg = mHandler.obtainMessage(NOTIFY_TASK_ADDED_LISTENERS_MSG, in notifyTaskCreated() local
[all …]
DSafeActivityOptions.java218 final String msg = "Permission Denial: starting " + getIntentString(intent) in checkPermissions() local
233 final String msg = "Permission Denial: starting " + getIntentString(intent) in checkPermissions() local
244 final String msg = "Permission Denial: starting " + getIntentString(intent) in checkPermissions() local
256 final String msg = "Permission Denial: starting " + getIntentString(intent) in checkPermissions() local
269 final String msg = "Permission Denial: starting " + getIntentString(intent) in checkPermissions() local
282 final String msg = "Permission Denial: starting " + getIntentString(intent) in checkPermissions() local
291 final String msg = "Permission Denial: starting " + getIntentString(intent) in checkPermissions() local
309 final String msg = "Permission Denial: starting " + getIntentString(intent) in checkPermissions() local
/frameworks/base/core/java/android/telephony/
DRlog.java42 public static int v(String tag, String msg) { in v()
46 public static int v(String tag, String msg, Throwable tr) { in v()
52 public static int d(String tag, String msg) { in d()
57 public static int d(String tag, String msg, Throwable tr) { in d()
63 public static int i(String tag, String msg) { in i()
68 public static int i(String tag, String msg, Throwable tr) { in i()
74 public static int w(String tag, String msg) { in w()
79 public static int w(String tag, String msg, Throwable tr) { in w()
89 public static int e(String tag, String msg) { in e()
94 public static int e(String tag, String msg, Throwable tr) { in e()
[all …]
/frameworks/av/media/libmediaplayerservice/nuplayer/
DNuPlayerDecoderBase.cpp51 const sp<AMessage> &msg, sp<AMessage> *response) { in PostAndAwaitResponse()
66 sp<AMessage> msg = new AMessage(kWhatConfigure, this); in configure() local
81 sp<AMessage> msg = new AMessage(kWhatSetParameters, this); in setParameters() local
87 sp<AMessage> msg = new AMessage(kWhatSetRenderer, this); in setRenderer() local
93 sp<AMessage> msg = new AMessage(kWhatPause, this); in pause() local
104 sp<AMessage> msg = new AMessage(kWhatResume, this); in signalResume() local
122 sp<AMessage> msg = new AMessage(kWhatRequestInputBuffers, this); in onRequestInputBuffers() local
127 void NuPlayer::DecoderBase::onMessageReceived(const sp<AMessage> &msg) { in onMessageReceived()
/frameworks/base/services/core/java/com/android/server/utils/
DSlogf.java65 public static int v(String tag, String msg) { in v()
70 public static int v(String tag, String msg, Throwable tr) { in v()
75 public static int d(String tag, String msg) { in d()
80 public static int d(String tag, String msg, Throwable tr) { in d()
85 public static int i(String tag, String msg) { in i()
90 public static int i(String tag, String msg, Throwable tr) { in i()
95 public static int w(String tag, String msg) { in w()
100 public static int w(String tag, String msg, Throwable tr) { in w()
110 public static int e(String tag, String msg) { in e()
115 public static int e(String tag, String msg, Throwable tr) { in e()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
DCatLog.java28 public static void d(Object caller, String msg) { in d()
39 public static void d(String caller, String msg) { in d()
47 public static void e(Object caller, String msg) { in e()
53 public static void e(String caller, String msg) { in e()
DRilMessageDecoder.java95 Message msg = obtainMessage(CMD_START); in sendStartDecodingMessageParams() local
107 Message msg = obtainMessage(RilMessageDecoder.CMD_PARAMS_READY); in sendMsgParamsDecoded() local
115 Message msg = mCaller.obtainMessage(CatService.MSG_ID_RIL_MSG_DECODED, in sendCmdForExecution() local
137 public boolean processMessage(Message msg) { in processMessage()
152 public boolean processMessage(Message msg) { in processMessage()
/frameworks/base/core/java/android/view/textclassifier/
DLog.java40 public static void v(String tag, String msg) { in v()
46 public static void d(String tag, String msg) { in d()
50 public static void w(String tag, String msg) { in w()
54 public static void e(String tag, String msg, Throwable tr) { in e()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/
DCdmaSmsCbTest.java62 CdmaSmsMessage msg = new CdmaSmsMessage(); in createBroadcastParcel() local
119 private static SmsMessage createMessageFromParcel(CdmaSmsMessage msg, byte[] bearerData) { in createMessageFromParcel()
166 CdmaSmsMessage msg = createBroadcastParcel(serviceCategory); in createCmasSmsMessage() local
192 CdmaSmsMessage msg = createBroadcastParcel(serviceCategory); in createBroadcastSmsMessage() local
353 SmsMessage msg = createBroadcastSmsMessage(123, 456, BearerData.PRIORITY_NORMAL, in doTestNonEmergencyBroadcast() local
385 SmsMessage msg = createBroadcastSmsMessage(987, 654, -1, -1, in testNonEmergencyBroadcastIs91Extended() local
401 SmsMessage msg = createCmasSmsMessage( in doTestCmasBroadcast() local
455 SmsMessage msg = createCmasSmsMessage(SmsEnvelope.SERVICE_CATEGORY_CMAS_EXTREME_THREAT, in testCmasExtremeAlertType1Elements() local
487 SmsMessage msg = createCmasSmsMessage(SmsEnvelope.SERVICE_CATEGORY_CMAS_EXTREME_THREAT, in testCmasUnsupportedCharSet() local
499 SmsMessage msg = createCmasSmsMessage(SmsEnvelope.SERVICE_CATEGORY_CMAS_EXTREME_THREAT, in testCmasUnsupportedCharSet2() local
[all …]
/frameworks/base/core/java/com/android/internal/util/
DAsyncChannel.java468 Message msg = Message.obtain(); in disconnect() local
490 public void sendMessage(Message msg) { in sendMessage()
506 Message msg = Message.obtain(); in sendMessage() local
519 Message msg = Message.obtain(); in sendMessage() local
534 Message msg = Message.obtain(); in sendMessage() local
551 Message msg = Message.obtain(); in sendMessage() local
566 Message msg = Message.obtain(); in sendMessage() local
597 Message msg = Message.obtain(); in replyToMessage() local
611 Message msg = Message.obtain(); in replyToMessage() local
626 Message msg = Message.obtain(); in replyToMessage() local
[all …]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DUiccControllerTest.java256 Message msg = Message.obtain(mUiccControllerUT, EVENT_GET_ICC_STATUS_DONE, ar); in testCardIdFromIccStatus() local
293 Message msg = Message.obtain(mUiccControllerUT, EVENT_GET_SLOT_STATUS_DONE, ar); in testCardIdFromSlotStatus() local
316 Message msg = Message.obtain(mUiccControllerUT, EVENT_GET_SLOT_STATUS_DONE, ar); in testCardIdForDefaultEuicc() local
347 Message msg = Message.obtain(mUiccControllerUT, EVENT_GET_ICC_STATUS_DONE, ar); in testGetAllUiccCardInfos() local
384 Message msg = Message.obtain(mUiccControllerUT, EVENT_GET_ICC_STATUS_DONE, ar); in testIccidWithTrailingF() local
418 Message msg = Message.obtain(mUiccControllerUT, EVENT_GET_ICC_STATUS_DONE, ar); in testGetAllUiccCardInfosNullCard() local
452 Message msg = Message.obtain(mUiccControllerUT, EVENT_GET_ICC_STATUS_DONE, ar); in testEidNotSupported() local
493 Message msg = Message.obtain(mUiccControllerUT, EVENT_GET_SLOT_STATUS_DONE, ar); in testDefaultEuiccIsNotRemovable() local
536 Message msg = Message.obtain(mUiccControllerUT, EVENT_GET_SLOT_STATUS_DONE, ar); in testDefaultEuiccIsNotRemovable_swapSlotOrder() local
581 Message msg = Message.obtain(mUiccControllerUT, EVENT_GET_SLOT_STATUS_DONE, ar); in testDefaultEuiccIsNotRemovable_EuiccIsInactive() local
[all …]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
DCameraErrorCollector.java129 public boolean expectTrue(String msg, boolean condition) { in expectTrue()
147 public <T> boolean expectEquals(String msg, T expected, T actual) { in expectEquals()
169 public <T> boolean expectNotEquals(String msg, T expected, T actual) { in expectNotEquals()
189 public <T> boolean expectEquals(String msg, T[] expected, T[] actual) { in expectEquals()
214 public <T> boolean expectNotEquals(String msg, T[] expected, T[] actual) { in expectNotEquals()
236 public <T extends Comparable<? super T>> boolean expectGreater(String msg, T expected, in expectGreater()
250 public <T extends Comparable<? super T>> boolean expectGreaterOrEqual(String msg, T expected, in expectGreaterOrEqual()
264 public <T extends Comparable<? super T>> boolean expectLess(String msg, T expected, in expectLess()
278 public <T extends Comparable<? super T>> boolean expectLessOrEqual(String msg, T expected, in expectLessOrEqual()
293 public <T> boolean expectEquals(String msg, float expected, float actual, float tolerance) { in expectEquals()
[all …]
/frameworks/av/media/libstagefright/filters/
DMediaFilter.cpp57 sp<AMessage> msg = mInputBufferFilled->dup(); in queueInputBuffer() local
78 sp<AMessage> msg = mOutputBufferDrained->dup(); in renderOutputBuffer() local
86 sp<AMessage> msg = mInputBufferFilled->dup(); in discardBuffer() local
91 sp<AMessage> msg = mOutputBufferDrained->dup(); in discardBuffer() local
182 void MediaFilter::initiateAllocateComponent(const sp<AMessage> &msg) { in initiateAllocateComponent()
188 void MediaFilter::initiateConfigureComponent(const sp<AMessage> &msg) { in initiateConfigureComponent()
208 sp<AMessage> msg = new AMessage(kWhatShutdown, this); in initiateShutdown() local
227 sp<AMessage> msg = new AMessage(kWhatSetParameters, this); in signalSetParameters() local
236 void MediaFilter::onMessageReceived(const sp<AMessage> &msg) { in onMessageReceived()
487 void MediaFilter::onAllocateComponent(const sp<AMessage> &msg) { in onAllocateComponent()
[all …]
/frameworks/av/services/camera/libcameraservice/utils/
DSessionConfigurationUtils.cpp297 String8 msg = String8::format("Camera %s: Surface is NULL", logicalCameraId.string()); in createSurfaceFromGbp() local
308 String8 msg = String8::format("Camera %s: Failed to query Surface consumer usage: %s (%d)", in createSurfaceFromGbp() local
333 String8 msg = String8::format("Camera %s: Failed to query Surface width: %s (%d)", in createSurfaceFromGbp() local
339 String8 msg = String8::format("Camera %s: Failed to query Surface height: %s (%d)", in createSurfaceFromGbp() local
345 String8 msg = String8::format("Camera %s: Failed to query Surface format: %s (%d)", in createSurfaceFromGbp() local
352 String8 msg = String8::format("Camera %s: Failed to query Surface dataspace: %s (%d)", in createSurfaceFromGbp() local
370 String8 msg = String8::format("Camera %s: sensor pixel modes for stream with " in createSurfaceFromGbp() local
386 String8 msg = String8::format("Camera %s: No supported stream configurations with " in createSurfaceFromGbp() local
403 String8 msg = String8::format("Camera %s:Surface width doesn't match: %d vs %d", in createSurfaceFromGbp() local
409 String8 msg = String8::format("Camera %s:Surface height doesn't match: %d vs %d", in createSurfaceFromGbp() local
[all …]
/frameworks/native/opengl/tests/lib/include/
DEGLUtils.h154 String8 msg; in printGLString() local
161 String8 msg; in printEGLString() local
170 String8 msg; variable
182 String8 msg; in checkGlError() local
231 String8 msg; in printEGLConfiguration() local
244 bool EGLUtils::printEGLConfigurations(EGLDisplay dpy, String8& msg) { in printEGLConfigurations()
271 String8 msg; in printEGLConfigurations() local

12345678910>>...36