HomeSort by relevance Sort by last modified time
    Searched refs:message (Results 301 - 325 of 10204) sorted by null

<<11121314151617181920>>

  /packages/services/Mms/src/com/android/mms/service/exception/
MmsNetworkException.java 28 public MmsNetworkException(String message) {
29 super(message);
36 public MmsNetworkException(String message, Throwable cause) {
37 super(message, cause);
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/
ApiFailureException.java 27 public ApiFailureException(String message, Throwable cause) {
28 super(message, cause);
31 public ApiFailureException(String message) {
32 super(message);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
DexException.java 26 DexException(String message) {
27 super(message);
30 DexException(String message, Throwable cause) {
31 super(message, cause);
  /tools/apksig/src/main/java/com/android/apksig/internal/asn1/ber/
BerDataValueFormatException.java 27 public BerDataValueFormatException(String message) {
28 super(message);
31 public BerDataValueFormatException(String message, Throwable cause) {
32 super(message, cause);
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
generated_message_reflection.h 47 #include <google/protobuf/message.h>
85 // - Singular Message fields are stored as a pointer to a Message. These
99 // descriptor: The descriptor for the message type being implemented.
100 // default_instance: The default instance of the message. This is only
103 // sub-message has not been initialized yet. (Thus, all
104 // embedded message fields *must* have non-NULL pointers
107 // the start of the message object, of each field. These can
111 // has_bits_offset: Offset in the message of an array of uint32s of size
114 // corresponding field of the message has been initialized
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
generated_message_reflection.h 47 #include <google/protobuf/message.h>
85 // - Singular Message fields are stored as a pointer to a Message. These
99 // descriptor: The descriptor for the message type being implemented.
100 // default_instance: The default instance of the message. This is only
103 // sub-message has not been initialized yet. (Thus, all
104 // embedded message fields *must* have non-NULL pointers
107 // the start of the message object, of each field. These can
111 // has_bits_offset: Offset in the message of an array of uint32s of size
114 // corresponding field of the message has been initialized
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
generated_message_reflection.h 47 #include <google/protobuf/message.h>
85 // - Singular Message fields are stored as a pointer to a Message. These
99 // descriptor: The descriptor for the message type being implemented.
100 // default_instance: The default instance of the message. This is only
103 // sub-message has not been initialized yet. (Thus, all
104 // embedded message fields *must* have non-NULL pointers
107 // the start of the message object, of each field. These can
111 // has_bits_offset: Offset in the message of an array of uint32s of size
114 // corresponding field of the message has been initialized
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
generated_message_reflection.h 47 #include <google/protobuf/message.h>
85 // - Singular Message fields are stored as a pointer to a Message. These
99 // descriptor: The descriptor for the message type being implemented.
100 // default_instance: The default instance of the message. This is only
103 // sub-message has not been initialized yet. (Thus, all
104 // embedded message fields *must* have non-NULL pointers
107 // the start of the message object, of each field. These can
111 // has_bits_offset: Offset in the message of an array of uint32s of size
114 // corresponding field of the message has been initialized
    [all...]
  /external/proguard/src/proguard/gui/
MessageDialogRunnable.java 28 * This <code>Runnable</code> can show a message dialog.
35 private final Object message; field in class:MessageDialogRunnable
45 Object message,
52 message,
68 Object message,
73 this.message = message;
85 message,
  /libcore/luni/src/main/java/org/xml/sax/
SAXException.java 52 * @param message The error or warning message.
54 public SAXException (String message) {
55 super(message);
64 * one, and its message will become the default message for
79 * one, but the new exception will have its own message.</p>
81 * @param message The detail message.
84 public SAXException (String message, Exception e
102 String message = super.getMessage(); local
    [all...]
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbSocket.java 39 AdbMessage message = new AdbMessage(); local
40 message.set(AdbMessage.A_OPEN, mId, 0, destination);
41 if (! message.write(mDevice)) {
55 public void handleMessage(AdbMessage message) {
56 switch (message.getCommand()) {
58 mPeerId = message.getArg0();
64 mDevice.log(message.getDataString());
71 AdbMessage message = new AdbMessage(); local
72 message.set(AdbMessage.A_OKAY, mId, mPeerId);
73 message.write(mDevice)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverAutoEscapingException.java 26 public JSilverAutoEscapingException(String message, String templateName, int line, int column) {
27 super(createMessage(message, templateName, line, column));
30 public JSilverAutoEscapingException(String message, String templateName) {
31 this(message, templateName, UNKNOWN_POSITION, UNKNOWN_POSITION);
37 private static String createMessage(String message, String resourceName, int line, int column) {
38 StringBuilder result = new StringBuilder(message);
51 public JSilverAutoEscapingException(String message) {
52 super(message);
55 public JSilverAutoEscapingException(String message, Throwable cause) {
56 super(message, cause)
    [all...]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
MockTask.java 58 public void assertRunCount(String message, int count) {
59 assertEquals(message + ": " + toString() + " bad run count", count, getRunCount());
62 public void assertRanNever(String message) {
63 assertRunCount(message, 0);
66 public void assertRanOnce(String message) {
67 assertRunCount(message, 1);
70 public static void assertRanNever(String message, MockTask... tasks) {
72 task.assertRanNever(message);
76 public static void assertRanOnce(String message, MockTask... tasks) {
78 task.assertRanOnce(message);
    [all...]
  /external/deqp/execserver/
xsDefs.cpp 31 static std::string formatError (const char* message, const char* expr, const char* file, int line)
34 msg << (message ? message : "Runtime check failed") << ": ";
41 Error::Error (const char* message, const char* expr, const char* file, int line)
42 : std::runtime_error(formatError(message, expr, file, line))
  /external/deqp/executor/
xeDefs.cpp 31 static std::string formatError (const char* message, const char* expr, const char* file, int line)
34 msg << (message ? message : "Runtime check failed") << ": ";
41 Error::Error (const char* message, const char* expr, const char* file, int line)
42 : std::runtime_error(formatError(message, expr, file, line))
  /external/libmojo/mojo/public/cpp/bindings/lib/
control_message_handler.h 12 #include "mojo/public/cpp/bindings/message.h"
20 static bool IsControlMessage(const Message* message);
26 bool Accept(Message* message) override;
28 bool AcceptWithResponder(Message* message,
32 bool Run(Message* message, MessageReceiverWithStatus* responder);
33 bool RunOrClosePipe(Message* message)
    [all...]
pipe_control_message_handler.cc 28 bool PipeControlMessageHandler::IsPipeControlMessage(const Message* message) {
29 return !IsValidInterfaceId(message->interface_id());
32 bool PipeControlMessageHandler::Accept(Message* message) {
33 if (!Validate(message))
36 if (message->name() == pipe_control::kRunOrClosePipeMessageId)
37 return RunOrClosePipe(message);
43 bool PipeControlMessageHandler::Validate(Message* message) {
    [all...]
  /test/vts/compilation_tools/vtsc/code_gen/driver/
DriverCodeGenBase.cpp 41 const ComponentSpecificationMessage& message) {
42 GenerateHeaderFile(header_out, message);
43 GenerateSourceFile(source_out, message);
47 Formatter& out, const ComponentSpecificationMessage& message) {
48 string component_name = GetComponentName(message);
54 FQName component_fq_name = GetFQName(message);
57 if (message.component_class() == HAL_HIDL) {
60 fuzzer_extended_class_name = "FuzzerExtended_" + GetComponentName(message);
64 if (message.component_class() == HAL_HIDL) {
70 if (message.component_class() == HAL_HIDL)
    [all...]
  /external/conscrypt/common/src/jni/main/include/
Errors.h 39 * Throw an exception with the specified class and an optional message.
44 * If an exception is currently pending, we log a warning message and
72 * Throw a java.lang.RuntimeException, with an optional message.
79 * Throw a java.lang.NullPointerException, with an optional message.
86 * Throws a OutOfMemoryError with the given string as a message.
88 static int jniThrowOutOfMemory(JNIEnv* env, const char* message) {
89 return jniThrowException(env, "java/lang/OutOfMemoryError", message);
93 * Throws a BadPaddingException with the given string as a message.
95 static int throwBadPaddingException(JNIEnv* env, const char* message) {
96 JNI_TRACE("throwBadPaddingException %s", message);
285 char message[256]; local
    [all...]
  /external/bison/src/
complain.c 38 /** Report an error message.
42 * \param prefix put before the message (e.g., "warning").
43 * \param message the error message, a printf format string. Iff it
46 * newline-terminated message to stderr.
53 const char *message, va_list args)
75 vfprintf (stderr, message, args);
77 size_t l = strlen (message);
78 if (l < 2 || message[l - 2] != ':' || message[l - 1] != ' '
    [all...]
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/
clientpairingsession.cc 41 message::PairingRequestMessage message(service_name_, client_name_);
42 wire()->SendPairingRequestMessage(message);
44 message::PairingRequestMessage message(service_name_);
45 wire()->SendPairingRequestMessage(message);
53 const message::ConfigurationMessage* config = configuration();
67 const message::PairingRequestAckMessage& message) {
68 LOG(INFO) << "Handle PairingRequestAckMessage " << message.ToString()
    [all...]
  /external/sl4a/Utils/src/com/googlecode/android_scripting/
Log.java 40 private static void toast(Context context, String message) {
41 Toast.makeText(context, message, Toast.LENGTH_SHORT).show();
44 public static void notify(Context context, String title, String contentTitle, String message) {
45 android.util.Log.v(getTag(), String.format("%s %s", contentTitle, message));
56 .setContentText(message)
63 public static void showDialog(final Context context, final String title, final String message) {
64 android.util.Log.v(getTag(), String.format("%s %s", title, message));
71 builder.setMessage(message);
85 public static void v(String message) {
86 android.util.Log.v(getTag(), message); local
90 android.util.Log.v(getTag(), message, e); local
95 android.util.Log.v(getTag(), message); local
100 android.util.Log.v(getTag(), message, e); local
108 android.util.Log.e(getTag(), message); local
112 android.util.Log.e(getTag(), message, e); local
117 android.util.Log.e(getTag(), message); local
122 android.util.Log.e(getTag(), message, e); local
130 android.util.Log.w(getTag(), message); local
134 android.util.Log.w(getTag(), message, e); local
139 android.util.Log.w(getTag(), message); local
144 android.util.Log.w(getTag(), message, e); local
148 android.util.Log.d(getTag(), message); local
152 android.util.Log.d(getTag(), message, e); local
157 android.util.Log.d(getTag(), message); local
162 android.util.Log.d(getTag(), message, e); local
166 android.util.Log.i(getTag(), message); local
170 android.util.Log.i(getTag(), message, e); local
175 android.util.Log.i(getTag(), message); local
180 android.util.Log.i(getTag(), message, e); local
    [all...]
  /external/protobuf/src/google/protobuf/
map_test_util.h 43 // Set every field in the TestMap message to a unique value.
44 static void SetMapFields(unittest::TestMap* message);
46 // Set every field in the TestArenaMap message to a unique value.
47 static void SetArenaMapFields(unittest::TestArenaMap* message);
49 // Set every field in the message to a default value.
50 static void SetMapFieldsInitialized(unittest::TestMap* message);
52 // Modify all the map fields of the message (which should already have been
54 static void ModifyMapFields(unittest::TestMap* message);
58 static void ExpectMapFieldsSet(const unittest::TestMap& message);
62 static void ExpectArenaMapFieldsSet(const unittest::TestArenaMap& message);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers_p2p.h 22 DBusMessage *message, struct wpa_supplicant *wpa_s);
25 DBusMessage *message, struct wpa_supplicant *wpa_s);
28 DBusMessage *message, struct wpa_supplicant *wpa_s);
31 DBusMessage *message, struct wpa_supplicant *wpa_s);
34 DBusMessage *message, struct wpa_supplicant *wpa_s);
37 DBusMessage *message, struct wpa_supplicant *wpa_s);
40 DBusMessage *message, struct wpa_supplicant *wpa_s);
43 DBusMessage *message, struct wpa_supplicant *wpa_s);
46 DBusMessage *message,
49 DBusMessage * wpas_dbus_handler_p2p_cancel(DBusMessage *message,
    [all...]
  /cts/tests/tests/accounts/src/android/accounts/cts/
ExceptionTest.java 12 private String message = "Message"; field in class:ExceptionTest
20 new AccountsException(message);
28 new AccountsException(message, cause);
36 new NetworkErrorException(message);
44 new NetworkErrorException(message, cause);
52 new AuthenticatorException(message);
60 new AuthenticatorException(message, cause);
68 new OperationCanceledException(message);
76 new OperationCanceledException(message, cause)
    [all...]

Completed in 2993 milliseconds

<<11121314151617181920>>