HomeSort by relevance Sort by last modified time
    Searched refs:message (Results 76 - 100 of 1541) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/wpa_supplicant_6/wpa_supplicant/
ctrl_iface_dbus_handlers.h 20 DBusMessage * wpas_dbus_new_invalid_iface_error(DBusMessage *message);
22 DBusMessage * wpas_dbus_global_add_interface(DBusMessage *message,
25 DBusMessage * wpas_dbus_global_remove_interface(DBusMessage *message,
28 DBusMessage * wpas_dbus_global_get_interface(DBusMessage *message,
31 DBusMessage * wpas_dbus_global_set_debugparams(DBusMessage *message,
34 DBusMessage * wpas_dbus_iface_scan(DBusMessage *message,
37 DBusMessage * wpas_dbus_iface_scan_results(DBusMessage *message,
40 DBusMessage * wpas_dbus_bssid_properties(DBusMessage *message,
44 DBusMessage * wpas_dbus_iface_capabilities(DBusMessage *message,
47 DBusMessage * wpas_dbus_iface_add_network(DBusMessage *message,
    [all...]
  /frameworks/base/location/tests/locationtests/src/android/location/
LocationTest.java 32 String message; local
36 message = "degreesToDoubleTest: Double should be -80.075, actual value is " +
38 assertEquals(message, -80.075, result);
43 String message; local
47 message = "minutesToDoubleTest: Double should be -80.085, actual value is " +
49 assertEquals(message, -80.085, result);
54 String message; local
58 message = "secondsToDoubleTest: Double should be -80.0675, actual value is " +
60 assertEquals(message, -80.0675, result);
65 String message; local
76 String message; local
85 String message; local
93 String message; local
103 String message; local
113 String message; local
125 String message; local
155 String message; local
178 String message; local
195 String message; local
212 String message; local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
SimException.java 26 public SimException(String message) {
27 super(message);
34 public SimException(String message, Throwable cause) {
35 super(message, cause);
  /dalvik/dx/src/com/android/dx/cf/iface/
ParseException.java 26 public ParseException(String message) {
27 super(message);
34 public ParseException(String message, Throwable cause) {
35 super(message, cause);
  /dalvik/dx/src/com/android/dx/util/
MutabilityException.java 24 public MutabilityException(String message) {
25 super(message);
32 public MutabilityException(String message, Throwable cause) {
33 super(message, cause);
  /dalvik/libcore/annotation/src/main/java/java/lang/annotation/
AnnotationFormatError.java 33 * Constructs an instance with the message provided.
35 * @param message
38 public AnnotationFormatError(String message) {
39 super(message);
43 * Constructs an instance with a message and a cause.
45 * @param message
50 public AnnotationFormatError(String message, Throwable cause) {
51 super(message, cause);
57 * error's message.
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
ExecutionException.java 22 * Constructs an <tt>ExecutionException</tt> with no detail message.
30 * message. The cause is not initialized, and may subsequently be
33 * @param message the detail message
35 protected ExecutionException(String message) {
36 super(message);
41 * message and cause.
43 * @param message the detail message
47 public ExecutionException(String message, Throwable cause)
    [all...]
RejectedExecutionException.java 20 * Constructs a <tt>RejectedExecutionException</tt> with no detail message.
28 * specified detail message. The cause is not initialized, and may
32 * @param message the detail message
34 public RejectedExecutionException(String message) {
35 super(message);
40 * specified detail message and cause.
42 * @param message the detail message
46 public RejectedExecutionException(String message, Throwable cause)
    [all...]
  /dalvik/libcore/security/src/main/java/java/security/
AccessControlException.java 32 * given message.
34 * @param message
35 * the detail message for this exception.
37 public AccessControlException(String message) {
38 super(message);
43 * given message and the requested {@code Permission} which was not granted.
45 * @param message
46 * the detail message for the exception.
50 public AccessControlException(String message, Permission perm) {
51 super(message);
    [all...]
  /external/apache-http/src/org/apache/http/
HttpException.java 48 * Creates a new HttpException with a <tt>null</tt> detail message.
55 * Creates a new HttpException with the specified detail message.
57 * @param message the exception detail message
59 public HttpException(final String message) {
60 super(message);
64 * Creates a new HttpException with the specified detail message and cause.
66 * @param message the exception detail message
70 public HttpException(final String message, final Throwable cause)
    [all...]
  /external/apache-http/src/org/apache/http/auth/
AuthenticationException.java 47 * Creates a new AuthenticationException with a <tt>null</tt> detail message.
54 * Creates a new AuthenticationException with the specified message.
56 * @param message the exception detail message
58 public AuthenticationException(String message) {
59 super(message);
63 * Creates a new AuthenticationException with the specified detail message and cause.
65 * @param message the exception detail message
69 public AuthenticationException(String message, Throwable cause)
    [all...]
MalformedChallengeException.java 48 * Creates a new MalformedChallengeException with a <tt>null</tt> detail message.
55 * Creates a new MalformedChallengeException with the specified message.
57 * @param message the exception detail message
59 public MalformedChallengeException(String message) {
60 super(message);
64 * Creates a new MalformedChallengeException with the specified detail message and cause.
66 * @param message the exception detail message
70 public MalformedChallengeException(String message, Throwable cause)
    [all...]
  /external/apache-http/src/org/apache/http/client/
RedirectException.java 47 * Creates a new RedirectException with a <tt>null</tt> detail message.
54 * Creates a new RedirectException with the specified detail message.
56 * @param message The exception detail message
58 public RedirectException(String message) {
59 super(message);
63 * Creates a new RedirectException with the specified detail message and cause.
65 * @param message the exception detail message
69 public RedirectException(String message, Throwable cause)
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
MalformedCookieException.java 49 * Creates a new MalformedCookieException with a <tt>null</tt> detail message.
56 * Creates a new MalformedCookieException with a specified message string.
58 * @param message The exception detail message
60 public MalformedCookieException(String message) {
61 super(message);
65 * Creates a new MalformedCookieException with the specified detail message and cause.
67 * @param message the exception detail message
71 public MalformedCookieException(String message, Throwable cause)
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
NTLMEngineException.java 51 * Creates a new NTLMEngineException with the specified message.
53 * @param message the exception detail message
55 public NTLMEngineException(String message) {
56 super(message);
60 * Creates a new NTLMEngineException with the specified detail message and cause.
62 * @param message the exception detail message
66 public NTLMEngineException(String message, Throwable cause) {
67 super(message, cause)
    [all...]
UnsupportedDigestAlgorithmException.java 46 * Creates a new UnsupportedAuthAlgoritmException with a <tt>null</tt> detail message.
53 * Creates a new UnsupportedAuthAlgoritmException with the specified message.
55 * @param message the exception detail message
57 public UnsupportedDigestAlgorithmException(String message) {
58 super(message);
62 * Creates a new UnsupportedAuthAlgoritmException with the specified detail message and cause.
64 * @param message the exception detail message
68 public UnsupportedDigestAlgorithmException(String message, Throwable cause)
    [all...]
  /external/guava/src/com/google/common/util/concurrent/
UncheckedTimeoutException.java 28 public UncheckedTimeoutException(String message) {
29 super(message);
36 public UncheckedTimeoutException(String message, Throwable cause) {
37 super(message, cause);
  /external/icu4c/samples/layout/
GUISupport.h 23 virtual void postErrorMessage(const char *message, const char *title) = 0;
gsupport.h 12 void gs_postErrorMessage(gs_guiSupport *guiSupport, const char *message, const char *title);
  /external/webkit/WebCore/dom/
MessagePortChannel.cpp 36 PassOwnPtr<MessagePortChannel::EventData> MessagePortChannel::EventData::create(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels)
38 return new EventData(message, channels);
41 MessagePortChannel::EventData::EventData(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels)
42 : m_message(message->release())
  /frameworks/base/awt/javax/imageio/
IIOException.java 41 * @param message
42 * the detailed message.
44 public IIOException(String message) {
45 super(message);
51 * @param message
52 * the detailed message.
56 public IIOException(String message, Throwable cause) {
57 super(message);
  /frameworks/base/core/java/com/google/android/mms/
MmsException.java 34 * Creates a new MmsException with the specified detail message.
36 * @param message the detail message.
38 public MmsException(String message) {
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) {
58 super(message, cause)
    [all...]
  /packages/apps/Email/src/com/android/email/mail/
AuthenticationFailedException.java 22 public AuthenticationFailedException(String message) {
23 super(MessagingException.AUTHENTICATION_FAILED, message);
26 public AuthenticationFailedException(String message, Throwable throwable) {
27 super(message, throwable);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
InvalidTypeException.java 32 * Constructs a new exception with the default detail message.
40 * Constructs a new exception with the specified detail message.
41 * @param message the detail message. The detail message is saved for later retrieval
45 public InvalidTypeException(String message) {
46 super(message);
50 * Constructs a new exception with the specified cause and a detail message of
52 * the class and detail message of cause).
63 * Constructs a new exception with the specified detail message and cause
    [all...]
  /dalvik/libcore/xml/src/main/java/org/xml/sax/
SAXException.java 53 * @param message The error or warning message.
55 public SAXException (String message) {
56 super(message);
65 * one, and its message will become the default message for
81 * one, but the new exception will have its own message.</p>
83 * @param message The detail message.
86 public SAXException (String message, Exception e
104 String message = super.getMessage(); local
    [all...]

Completed in 1836 milliseconds

1 2 34 5 6 7 8 91011>>