HomeSort by relevance Sort by last modified time
    Searched defs:msg (Results 151 - 175 of 4261) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpamsg.h 18 : msg(_msg), priority(_priority)
23 QString getMsg() const { return msg; }
28 QString msg; member in class:WpaMsg
  /external/xz-embedded/userspace/
bytetest.c 24 const char *msg; local
42 msg = "Memory allocation failed\n";
63 msg = "Write error\n";
87 msg = "Uncompressed size doesn't match\n";
93 msg = "Write error\n";
103 msg = "Memory allocation failed\n";
107 msg = "Memory usage limit reached\n";
111 msg = "Not a .xz file\n";
115 msg = "Unsupported options in the .xz headers\n";
120 msg = "File is corrupt\n"
    [all...]
  /frameworks/av/media/libmedia/
IMediaRecorderClient.cpp 38 virtual void notify(int msg, int ext1, int ext2)
42 data.writeInt32(msg);
59 int msg = data.readInt32(); local
62 notify(msg, ext1, ext2);
  /frameworks/base/tools/incident_report/
formatter.cpp 77 ProtoMessageFormat const* msg = get_message(mid); local
79 int cmp = compare_name(name, get_string(msg->package_name), get_string(msg->package_name));
  /hardware/qcom/display/msm8960/libqservice/
IQClient.cpp 44 virtual status_t notifyCallback(uint32_t msg, uint32_t value) {
47 data.writeInt32(msg);
65 uint32_t msg = data.readInt32(); local
67 notifyCallback(msg, value);
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestIncompatibleException.java 25 private final String msg; field in class:DOMTestIncompatibleException
27 private DOMTestIncompatibleException(String msg) {
28 this.msg = msg;
38 msg = ex.toString();
42 msg = setting.toString();
45 msg = super.toString();
73 return msg;
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest-message_test.cc 46 const Message msg; local
47 EXPECT_EQ("", msg.GetString());
59 Message msg("Hello");
60 EXPECT_EQ("Hello", msg.GetString());
141 Message msg; local
142 msg << 1 << " lamb";
143 EXPECT_EQ("1 lamb", msg.GetString());
148 Message msg("Hello");
150 ss << msg; local
  /system/chre/apps/message_world/
message_world.cc 61 auto *msg = static_cast<const chreMessageFromHostData *>(eventData); local
64 msg->messageType, msg->messageSize, msg->message, msg->hostEndpoint);
  /system/core/base/
errors_windows.cpp 49 std::string msg; local
50 if (!android::base::WideToUTF8(msgbuf, &msg)) {
57 msg = android::base::Trim(msg);
63 android::base::StringAppendF(&msg, " (%lu)", error_code);
64 return msg;
  /system/core/trusty/gatekeeper/
trusty_gatekeeper_ipc.c 53 struct gatekeeper_message *msg = malloc(msg_size); local
54 msg->cmd = cmd;
55 memcpy(msg->payload, in, in_size);
57 ssize_t rc = write(handle_, msg, msg_size);
58 free(msg);
78 msg = (struct gatekeeper_message *) out;
80 if ((cmd | GK_RESP_BIT) != msg->cmd) {
81 ALOGE("invalid command (%d)\n", msg->cmd);
  /test/vti/dashboard/src/main/java/com/android/vts/util/
EmailHelper.java 129 Message msg = new MimeMessage(session); local
132 msg.addRecipient(Message.RecipientType.TO, new InternetAddress(email, email));
138 msg.setFrom(new InternetAddress(SENDER_EMAIL, VTS_EMAIL_NAME));
139 msg.setSubject(subject);
140 msg.setContent(body, "text/html; charset=utf-8");
141 return msg;
147 * @param msg Message object to send.
150 public static boolean send(Message msg) {
152 Transport.send(msg);
166 for (Message msg : messages)
181 Message msg = composeEmail(recipients, subject, body); local
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/hostmetric/
EmailHostHealthAgent.java 81 Message msg = new Message(); local
82 msg.setSender(mSender);
83 msg.setSubject(generateEmailSubject());
84 msg.setBody(generateEmailBody());
85 msg.setHtml(false);
88 msg.addTo(toAddress.next());
92 CLog.d(msg.getSubject());
93 CLog.d(msg.getBody());
94 mMailer.send(msg);
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/commons/
AdviceAdapterTest2.class 
  /external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/
MethodReference.java 79 StringBuilder msg = new StringBuilder(); local
80 appendAll(msg);
81 throw new IOException(msg.toString());
  /external/testng/src/main/java/org/testng/remote/strprotocol/
StringMessageSender.java 43 String msg = ((IStringMessage) message).getMessageAsString(); local
46 p(" String version:" + msg);
49 for(int i = 0; i < msg.length(); i++) {
50 if('\u0001' == msg.charAt(i)) {
55 buf.append(msg.charAt(i));
62 writer.println(msg);
68 private static void p(String msg) {
70 System.out.println("[StringMessageSender] " + msg); //$NON-NLS-1$
  /frameworks/base/core/java/com/android/internal/util/
WakeupMessage.java 127 Message msg; local
129 msg = mHandler.obtainMessage(mCmd, mArg1, mArg2, mObj);
131 msg = Message.obtain(mHandler, mRunnable);
133 mHandler.dispatchMessage(msg);
134 msg.recycle();
  /libcore/ojluni/src/test/java/time/test/java/time/format/
TestDateTimeFormatter.java 151 String msg = ex.getMessage(); local
152 assertTrue(msg.contains(expectedText), msg); local
153 assertTrue(msg.contains("Year"), msg);
154 assertTrue(msg.contains("MinuteOfHour"), msg);
155 assertTrue(msg.contains("DayOfMonth"), msg);
166 String msg = ex.getMessage() local
167 assertTrue(msg.contains(expectedText), msg); local
178 String msg = temporal.toString(); local
186 String msg = temporal.toString(); local
194 String msg = temporal.toString(); local
    [all...]
  /external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
NanoTest.java 70 SimpleMessageNano msg = new SimpleMessageNano(); local
71 assertEquals(123, msg.d);
72 assertEquals(null, msg.nestedMsg);
73 assertEquals(SimpleMessageNano.BAZ, msg.defaultNestedEnum);
75 msg.d = 456;
76 assertEquals(456, msg.d);
81 msg.nestedMsg = nestedMsg;
82 assertEquals(2, msg.nestedMsg.bb);
84 msg.defaultNestedEnum = SimpleMessageNano.BAR;
85 assertEquals(SimpleMessageNano.BAR, msg.defaultNestedEnum)
106 RecursiveMessageNano msg = new RecursiveMessageNano(); local
142 SingleMessageNano msg = new SingleMessageNano(); local
148 TestAllTypesNano msg = new TestAllTypesNano(); local
167 TestAllTypesNano msg = new TestAllTypesNano(); local
187 TestAllTypesNano msg = new TestAllTypesNano(); local
208 TestAllTypesNano msg = new TestAllTypesNano(); local
229 TestAllTypesNano msg = new TestAllTypesNano(); local
250 TestAllTypesNano msg = new TestAllTypesNano(); local
271 TestAllTypesNano msg = new TestAllTypesNano(); local
292 TestAllTypesNano msg = new TestAllTypesNano(); local
313 TestAllTypesNano msg = new TestAllTypesNano(); local
334 TestAllTypesNano msg = new TestAllTypesNano(); local
355 TestAllTypesNano msg = new TestAllTypesNano(); local
376 TestAllTypesNano msg = new TestAllTypesNano(); local
397 TestAllTypesNano msg = new TestAllTypesNano(); local
418 TestAllTypesNano msg = new TestAllTypesNano(); local
439 TestAllTypesNano msg = new TestAllTypesNano(); local
463 TestAllTypesNano msg = new TestAllTypesNano(); local
489 TestAllTypesNano msg = new TestAllTypesNano(); local
518 MessageWithGroup msg = new MessageWithGroup(); local
534 TestAllTypesNano msg = new TestAllTypesNano(); local
563 TestAllTypesNano msg = new TestAllTypesNano(); local
592 TestAllTypesNano msg = new TestAllTypesNano(); local
621 TestAllTypesNano msg = new TestAllTypesNano(); local
642 TestAllTypesNano msg = new TestAllTypesNano(); local
663 TestAllTypesNano msg = new TestAllTypesNano(); local
684 TestAllTypesNano msg = new TestAllTypesNano(); local
708 TestAllTypesNano msg = new TestAllTypesNano(); local
732 TestAllTypesNano msg = new TestAllTypesNano(); local
776 TestAllTypesNano msg = new TestAllTypesNano(); local
820 TestAllTypesNano msg = new TestAllTypesNano(); local
864 TestAllTypesNano msg = new TestAllTypesNano(); local
908 TestAllTypesNano msg = new TestAllTypesNano(); local
952 TestAllTypesNano msg = new TestAllTypesNano(); local
996 TestAllTypesNano msg = new TestAllTypesNano(); local
1040 TestAllTypesNano msg = new TestAllTypesNano(); local
1084 TestAllTypesNano msg = new TestAllTypesNano(); local
1128 TestAllTypesNano msg = new TestAllTypesNano(); local
1172 TestAllTypesNano msg = new TestAllTypesNano(); local
1216 TestAllTypesNano msg = new TestAllTypesNano(); local
1260 TestAllTypesNano msg = new TestAllTypesNano(); local
1304 TestAllTypesNano msg = new TestAllTypesNano(); local
1348 TestAllTypesNano msg = new TestAllTypesNano(); local
1399 TestAllTypesNano msg = new TestAllTypesNano(); local
1454 TestAllTypesNano msg = new TestAllTypesNano(); local
1510 TestAllTypesNano msg = new TestAllTypesNano(); local
1566 TestAllTypesNano msg = new TestAllTypesNano(); local
1622 TestAllTypesNano msg = new TestAllTypesNano(); local
1670 TestAllTypesNano msg = new TestAllTypesNano(); local
1721 TestAllTypesNano msg = new TestAllTypesNano(); local
1772 TestAllTypesNano msg = new TestAllTypesNano(); local
1816 TestAllTypesNano msg = new TestAllTypesNano(); local
1860 TestAllTypesNano msg = new TestAllTypesNano(); local
1904 TestAllTypesNano msg = new TestAllTypesNano(); local
1948 TestAllTypesNano msg = new TestAllTypesNano(); local
1996 TestAllTypesNano msg = new TestAllTypesNano(); local
2014 TestAllTypesNano msg = new TestAllTypesNano(); local
2039 TestAllTypesNano msg = new TestAllTypesNano(); local
2064 TestAllTypesNano msg = new TestAllTypesNano(); local
2226 SingleMessageNano msg = new SingleMessageNano(); local
2239 MultipleNameClashNano msg = new MultipleNameClashNano(); local
2270 TestAllTypesNano msg = new TestAllTypesNano(); local
2363 TestAllTypesNanoHas msg = null; local
2407 TestAllTypesNanoHas msg = new TestAllTypesNanoHas(); local
2455 TestNanoAccessors msg = new TestNanoAccessors(); local
2516 TestNanoAccessors msg = null; local
2560 TestNanoAccessors msg = new TestNanoAccessors(); local
2592 TestNanoAccessors msg = new TestNanoAccessors(); local
2636 EnumClassNanos.EnumClassNano msg = new EnumClassNanos.EnumClassNano(); local
2651 TestAllTypesNano msg = new TestAllTypesNano(); local
2703 TestAllTypesNano msg = new TestAllTypesNano(); local
2760 TestNanoAccessors msg = new TestNanoAccessors(); local
2796 TestMap msg = new TestMap(); local
3240 TestAllTypesNano msg = new TestAllTypesNano(); local
4452 BytesOffsetLengthTestNano msg = new BytesOffsetLengthTestNano(); local
    [all...]
  /art/runtime/
indirect_reference_table-inl.h 50 std::string msg = android::base::StringPrintf( local
56 AbortIfNoCheckJNI(msg);
77 std::string msg = android::base::StringPrintf( local
83 AbortIfNoCheckJNI(msg);
  /art/test/406-fields/src/
TestCase.java 72 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\""; local
73 throw new AssertionError(msg);
85 String msg = "Objects are the same: " + String.valueOf(expected); local
86 throw new AssertionError(msg);
196 public static void fail(String msg) {
197 throw new AssertionError(msg);
  /art/test/407-arrays/src/
TestCase.java 72 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\""; local
73 throw new AssertionError(msg);
85 String msg = "Objects are the same: " + String.valueOf(expected); local
86 throw new AssertionError(msg);
196 public static void fail(String msg) {
197 throw new AssertionError(msg);
  /art/test/412-new-array/src/
TestCase.java 72 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\""; local
73 throw new AssertionError(msg);
85 String msg = "Objects are the same: " + String.valueOf(expected); local
86 throw new AssertionError(msg);
196 public static void fail(String msg) {
197 throw new AssertionError(msg);
  /art/test/414-static-fields/src/
TestCase.java 72 String msg = "Expected \"" + expected + "\" but got \"" + actual + "\""; local
73 throw new AssertionError(msg);
85 String msg = "Objects are the same: " + String.valueOf(expected); local
86 throw new AssertionError(msg);
196 public static void fail(String msg) {
197 throw new AssertionError(msg);
  /bionic/libc/bionic/
bionic_netlink.cpp 70 rtgenmsg msg; member in struct:NetlinkMessage
76 request.msg.rtgen_family = AF_UNSPEC; // All families.
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensoroperations/
FakeSensorOperation.java 85 String msg = "FakeSensorOperation failed"; local
86 getStats().addValue(SensorStats.ERROR, msg);
87 Assert.fail(msg);

Completed in 829 milliseconds

1 2 3 4 5 67 8 91011>>