Searched defs:message (Results 51 - 75 of 331) sorted by relevance

1234567891011>>

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DOMAException.java6 public OMAException(String message) { argument
7 super(message);
/frameworks/opt/telephony/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/drm/common/
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 DSyncContext.java41 * @param message the current status message for this sync
45 public void setStatusText(String message) { argument
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DCameraRuntimeException.java23 public CameraRuntimeException(int problem, String message) { argument
24 super(message);
26 mMessage = message;
29 public CameraRuntimeException(int problem, String message, Throwable cause) { argument
30 super(message, cause);
32 mMessage = message;
/frameworks/base/core/java/android/webkit/
H A DWebMessagePort.java25 * HTML5 message ports.</a>
28 * webview, there is no separate Message Channel object. When a message channel
31 * for creating a message channel.
33 * When a message port is first created or received via transfer, it does not
37 * A message port should be closed when it is not used by the embedder application
43 * if one of these has ever happened: i. a message callback was set, ii. a message was
53 * The listener for handling MessagePort events. The message callback
65 * @param port the WebMessagePort that the message is destined for
66 * @param message th
68 onMessage(WebMessagePort port, WebMessage message) argument
85 postMessage(WebMessage message) argument
[all...]
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java133 String message = getFormatter().format(record);
134 Log.println(level, tag, message);
136 Log.e("AndroidHandler", "Error logging message.", e);
140 public void publish(Logger source, String tag, Level level, String message) { argument
148 Log.println(priority, tag, message);
150 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/services/core/java/com/android/server/hdmi/
H A DHdmiCecMessageCache.java23 * Cache for incoming message. It caches {@link HdmiCecMessage} with source address and opcode
49 * @param opcode opcode of message
79 * Cache incoming {@link HdmiCecMessage}. If opcode of message is not listed on
82 * @param message a {@link HdmiCecMessage} to be cached
84 public void cacheMessage(HdmiCecMessage message) { argument
85 int opcode = message.getOpcode();
90 int source = message.getSource();
96 messages.put(opcode, message);
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkManagementServiceTest.java74 * Sends a message on the netd socket and gives the events some time to make it back.
76 private void sendMessage(String message) throws IOException { argument
78 mOutputStream.write((message + "\0").getBytes());
98 // called. After every valid message we expect a callback soon after; to ensure that
/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/opt/telephony/src/java/com/android/internal/telephony/
H A DCellBroadcastHandler.java59 * @param message the message to process
63 protected boolean handleSmsMessage(Message message) { argument
64 if (message.obj instanceof SmsCbMessage) {
65 handleBroadcastSms((SmsCbMessage) message.obj);
68 loge("handleMessage got object of type: " + message.obj.getClass().getName());
74 * Dispatch a Cell Broadcast message to listeners.
75 * @param message the Cell Broadcast to broadcast
77 protected void handleBroadcastSms(SmsCbMessage message) { argument
82 if (message
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaServiceCategoryProgramHandler.java79 * @param message the message to process
83 protected boolean handleSmsMessage(Message message) { argument
84 if (message.obj instanceof SmsMessage) {
85 return handleServiceCategoryProgramData((SmsMessage) message.obj);
87 loge("handleMessage got object of type: " + message.obj.getClass().getName());
117 * as a reply SMS, then sends a message to state machine to transition to idle.
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DRSTest.java59 static void log(String message) { argument
61 Log.v(LOG_TAG, message);
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
H A DRSTest.java59 static void log(String message) { argument
61 Log.v(LOG_TAG, message);
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DRSTest.java59 static void log(String message) { argument
61 Log.v(LOG_TAG, message);
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
H A DRSTest_v11.java77 static void log(String message) { argument
79 Log.v(LOG_TAG, message);
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
H A DRSTest_v14.java84 static void log(String message) { argument
86 Log.v(LOG_TAG, message);
/frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
H A DRSTest_v16.java84 static void log(String message) { argument
86 Log.v(LOG_TAG, message);
/frameworks/volley/src/main/java/com/android/volley/
H A DAuthFailureError.java39 public AuthFailureError(String message) { argument
40 super(message);
43 public AuthFailureError(String message, Exception reason) { argument
44 super(message, reason);

Completed in 848 milliseconds

1234567891011>>