Searched defs:message (Results 26 - 50 of 193) sorted by relevance

12345678

/frameworks/opt/vcard/java/com/android/vcard/exception/
H A DVCardVersionException.java25 public VCardVersionException(String message) { argument
26 super(message);
/frameworks/av/drm/common/
H A DDrmInfoEvent.cpp22 DrmInfoEvent::DrmInfoEvent(int uniqueId, int infoType, const String8 message) argument
25 mMessage(message) {
H A DIDrmServiceListener.cpp50 const String8& message = data.readString8(); local
52 status_t status = notify(DrmInfoEvent(uniqueId, type, message));
/frameworks/base/core/java/android/content/
H A DOperationApplicationException.java30 public OperationApplicationException(String message) { argument
31 super(message);
34 public OperationApplicationException(String message, Throwable cause) { argument
35 super(message, cause);
46 public OperationApplicationException(String message, int numSuccessfulYieldPoints) { argument
47 super(message);
H A DSyncContext.java41 * @param message the current status message for this sync
45 public void setStatusText(String message) { argument
/frameworks/base/core/java/android/net/http/
H A DTimer.java34 public void mark(String message) { argument
37 HttpLog.v(message + " " + (now - mLast) + " total " + (now - mStart));
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteCommon.cpp23 /* throw a SQLiteException with a message appropriate for the error in handle */
28 /* throw a SQLiteException with the given message */
29 void throw_sqlite3_exception(JNIEnv* env, const char* message) { argument
30 throw_sqlite3_exception(env, NULL, message);
33 /* throw a SQLiteException with a message appropriate for the error in handle
34 concatenated with the given message
36 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message) { argument
38 // get the error code and message from the SQLite connection
39 // the error message may contain more information than the error code
43 sqlite3_errmsg(handle), message);
54 throw_sqlite3_exception_errcode(JNIEnv* env, int errcode, const char* message) argument
61 throw_sqlite3_exception(JNIEnv* env, int errcode, const char* sqlite3Message, const char* message) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DBuildTest.java35 * an AssertionFailedError is thrown with the given message.
37 private static void assertNotEmpty(String message, String string) { argument
38 //Log.i(TAG, "" + message + ": " + string);
39 assertNotNull(message, string);
40 assertFalse(message, string.equals(""));
/frameworks/base/test-runner/src/android/test/
H A DComparisonFailure.java27 public ComparisonFailure(String message, String expected, String actual) { argument
28 mComparison = new junit.framework.ComparisonFailure(message, expected, actual);
/frameworks/ex/variablespeed/jni/
H A Dprofile_timer.h35 void PrintElapsed(const char* message) { argument
37 LOGD("Timer(%s): %d ms", message,
/frameworks/native/libs/utils/
H A DLog.cpp25 int timeoutMillis, const char* message) :
26 mTag(tag), mPriority(priority), mTimeoutMillis(timeoutMillis), mMessage(message),
24 LogIfSlow(const char* tag, android_LogPriority priority, int timeoutMillis, const char* message) argument
/frameworks/opt/mms/src/java/com/google/android/mms/
H A DMmsException.java34 * Creates a new MmsException with the specified detail message.
36 * @param message the detail message.
38 public MmsException(String message) { argument
39 super(message);
52 * Creates a new MmsException with the specified detail message and cause.
54 * @param message the detail message.
57 public MmsException(String message, Throwable cause) { argument
58 super(message, caus
[all...]
/frameworks/av/libvideoeditor/osal/src/
H A DM4PSW_DebugTrace.c46 * @param msg (IN): the error message
79 M4OSA_Char* message,
82 M4OSA_DebugTrace(line, fileName, level, stringCondition, message, returnedError);
75 M4OSA_DEBUG_traceFunction(M4OSA_UInt32 line, M4OSA_Char* fileName, M4OSA_UInt32 level, M4OSA_Char* stringCondition, M4OSA_Char* message, M4OSA_ERR returnedError) argument
H A DM4PSW_Trace.c55 M4OSA_Char message[MAX_STRING_SIZE]; local
59 /* get the var arguments into the string message to be able to print */
61 vsprintf((char *)message, (const char *)format,marker ); /* formats and writes the data into message */
66 __android_log_print(ANDROID_LOG_INFO, "M4OSA_Trace", "%s", (char*)message);
69 (char *)message, line, file);
80 M4OSA_Char message[MAX_STRING_SIZE]; local
84 /* get the var arguments into the string message to be able to print */
86 vsprintf((char *)message, (const char *)stringMsg,marker ); /* formats and writes the data into message */
[all...]
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java132 String message = getFormatter().format(record);
133 Log.println(level, tag, message);
135 Log.e("AndroidHandler", "Error logging message.", e);
139 public void publish(Logger source, String tag, Level level, String message) { argument
147 Log.println(priority, tag, message);
149 Log.e("AndroidHandler", "Error logging message.", e);
/frameworks/base/core/tests/coretests/src/android/widget/
H A DAutoCompleteTextViewPopup.java224 private void waitAssertPopupShowState(String message, AutoCompleteTextView textView, argument
232 assertEquals(message, expected, textView.isPopupShowing());
240 private void waitAssertListSelection(String message, AutoCompleteTextView textView, argument
250 assertEquals(message, expected, textView.getListSelection());
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListGetCheckItemIdsTest.java43 private void assertChecked(String message, long... expectedIds) { argument
54 assertTrue(message, Arrays.equals(sortedExpectedIds, sortedCheckItemsIds));
/frameworks/base/drm/java/android/drm/
H A DDrmErrorEvent.java80 * @param message Message description. It can be null.
82 public DrmErrorEvent(int uniqueId, int type, String message) { argument
83 super(uniqueId, type, message);
92 * @param message Message description.
96 public DrmErrorEvent(int uniqueId, int type, String message, argument
98 super(uniqueId, type, message, attributes);
H A DDrmInfoEvent.java70 * @param message Message description. It can be null.
72 public DrmInfoEvent(int uniqueId, int type, String message) { argument
73 super(uniqueId, type, message);
83 * @param message Message description. It can be null.
87 public DrmInfoEvent(int uniqueId, int type, String message, argument
89 super(uniqueId, type, message, attributes);
/frameworks/base/tests/RenderScriptTests/Fountain/src/com/example/android/rs/fountain/
H A DFountain.java87 static void log(String message) { argument
89 Log.v(LOG_TAG, message);
/frameworks/base/tests/RenderScriptTests/FountainFbo/src/com/example/android/rs/fountainfbo/
H A DFountainFbo.java59 static void log(String message) { argument
61 Log.v(LOG_TAG, message);
/frameworks/base/tests/RenderScriptTests/Fountain_v11/src/com/android/fountain/
H A DFountain_v11.java88 static void log(String message) { argument
90 Log.v(LOG_TAG, message);
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
H A DRSTest.java84 static void log(String message) { argument
86 Log.v(LOG_TAG, message);
/frameworks/base/tests/RenderScriptTests/tests_v11/src/com/android/rs/test/
H A DRSTest_v11.java77 static void log(String message) { argument
79 Log.v(LOG_TAG, message);
/frameworks/base/tests/RenderScriptTests/tests_v14/src/com/android/rs/test/
H A DRSTest_v14.java84 static void log(String message) { argument
86 Log.v(LOG_TAG, message);

Completed in 8693 milliseconds

12345678