HomeSort by relevance Sort by last modified time
    Searched defs:msg (Results 26 - 50 of 1968) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/s390x/
fold_And16.c 6 register unsigned long *msg = &p; local
14 printf("%s", (char *)msg);
  /external/protobuf/java/src/test/java/com/google/protobuf/
MicroTest.java 66 SimpleMessageMicro msg = new SimpleMessageMicro(); local
67 assertFalse(msg.hasD());
68 assertEquals(123, msg.getD());
69 assertFalse(msg.hasNestedMsg());
70 assertEquals(null, msg.getNestedMsg());
71 assertFalse(msg.hasDefaultNestedEnum());
72 assertEquals(SimpleMessageMicro.BAZ, msg.getDefaultNestedEnum());
74 msg.setD(456);
75 assertTrue(msg.hasD());
76 assertEquals(456, msg.getD())
109 RecursiveMessageMicro msg = new RecursiveMessageMicro(); local
151 TestAllTypesMicro msg = new TestAllTypesMicro(); local
182 TestAllTypesMicro msg = new TestAllTypesMicro(); local
208 TestAllTypesMicro msg = new TestAllTypesMicro(); local
234 TestAllTypesMicro msg = new TestAllTypesMicro(); local
260 TestAllTypesMicro msg = new TestAllTypesMicro(); local
286 TestAllTypesMicro msg = new TestAllTypesMicro(); local
312 TestAllTypesMicro msg = new TestAllTypesMicro(); local
338 TestAllTypesMicro msg = new TestAllTypesMicro(); local
364 TestAllTypesMicro msg = new TestAllTypesMicro(); local
389 TestAllTypesMicro msg = new TestAllTypesMicro(); local
415 TestAllTypesMicro msg = new TestAllTypesMicro(); local
441 TestAllTypesMicro msg = new TestAllTypesMicro(); local
467 TestAllTypesMicro msg = new TestAllTypesMicro(); local
493 TestAllTypesMicro msg = new TestAllTypesMicro(); local
519 TestAllTypesMicro msg = new TestAllTypesMicro(); local
545 TestAllTypesMicro msg = new TestAllTypesMicro(); local
571 TestAllTypesMicro msg = new TestAllTypesMicro(); local
599 TestAllTypesMicro msg = new TestAllTypesMicro(); local
627 TestAllTypesMicro msg = new TestAllTypesMicro(); local
658 TestAllTypesMicro msg = new TestAllTypesMicro(); local
689 TestAllTypesMicro msg = new TestAllTypesMicro(); local
714 TestAllTypesMicro msg = new TestAllTypesMicro(); local
741 TestAllTypesMicro msg = new TestAllTypesMicro(); local
768 TestAllTypesMicro msg = new TestAllTypesMicro(); local
794 TestAllTypesMicro msg = new TestAllTypesMicro(); local
820 TestAllTypesMicro msg = new TestAllTypesMicro(); local
873 TestAllTypesMicro msg = new TestAllTypesMicro(); local
926 TestAllTypesMicro msg = new TestAllTypesMicro(); local
979 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1032 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1085 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1138 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1191 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1244 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1297 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1350 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1403 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1456 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1509 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1562 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1616 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1676 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1735 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1794 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1853 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1904 TestAllTypesMicro msg = new TestAllTypesMicro(); local
1955 TestAllTypesMicro msg = new TestAllTypesMicro(); local
2006 TestAllTypesMicro msg = new TestAllTypesMicro(); local
2059 TestAllTypesMicro msg = new TestAllTypesMicro(); local
2118 SingleMessageMicro msg = new SingleMessageMicro(); local
2130 MultipleNameClashMicro msg = new MultipleNameClashMicro(); local
2162 TestAllTypesMicro msg = new TestAllTypesMicro(); local
    [all...]
  /external/chromium_org/chrome/browser/resources/gaia_auth/
inline_injected.js 33 var msg = {method: 'attemptLogin',
39 extWindow.postMessage(msg, 'chrome://chrome-signin');
  /external/dropbear/libtommath/
bn_error.c 20 char *msg; member in struct:__anon20125
35 return msgs[x].msg;
  /external/libnfc-nxp/src/
phDal4Nfc_messageQueueLib.h 35 #include <sys/msg.h>
41 phLibNfc_Message_t msg; member in struct:phDal4Nfc_Message_Wrapper
  /hardware/akm/AK8975_FS/akmdfs/
AKFS_Disp.c 64 char msg[20]; local
65 memset(msg, 0, sizeof(msg));
75 fgets(msg, 10, stdin);
80 if (!strncmp(msg, "1", 1)) {
82 } else if (!strncmp(msg, "2", 1)) {
84 } else if (strncmp(msg, "Q", 1) == 0 || strncmp(msg, "q", 1) == 0) {
  /cts/tests/tests/jni/src/android/jni/cts/
JniCTest.java 37 String msg = runAllTests(); local
39 if (msg != null) {
40 fail(msg);
JniCppTest.java 37 String msg = runAllTests(); local
39 if (msg != null) {
40 fail(msg);
  /external/android-clat/
setif.c 24 #include <netlink/msg.h>
40 struct nl_msg *msg = NULL; local
57 msg = nlmsg_alloc_ifaddr(RTM_NEWADDR, NLM_F_ACK | NLM_F_REQUEST | NLM_F_CREATE | NLM_F_REPLACE, &ifa);
58 if(!msg) {
63 if(nla_put(msg, IFA_LOCAL, addr_size, address) < 0) {
69 if(nla_put(msg, IFA_ADDRESS, addr_size, address) < 0) {
75 if(nla_put(msg, IFA_BROADCAST, addr_size, broadcast) < 0) {
84 retval = netlink_sendrecv(msg);
87 if(msg)
88 nlmsg_free(msg);
101 struct nl_msg *msg = NULL; local
    [all...]
setroute.c 25 #include <netlink/msg.h>
46 struct nl_msg *msg = NULL; local
96 msg = nlmsg_alloc_rtmsg(type, flags, &rt);
97 if(!msg) {
102 if(nla_put(msg, RTA_DST, addr_size, destination) < 0) {
107 if(nla_put(msg, RTA_GATEWAY, addr_size, gateway) < 0) {
111 if(nla_put(msg, RTA_OIF, 4, &ifindex) < 0) {
115 if(nla_put(msg, RTA_PRIORITY, 4, &metric) < 0) {
121 struct nlattr *metrics = nla_nest_start(msg, RTA_METRICS);
127 if(nla_put(msg, RTAX_MTU, 4, &mtu) < 0)
    [all...]
  /external/bison/lib/
strerror.c 44 const char *msg = strerror_override (n); local
45 if (msg)
46 return (char *) msg;
48 msg = strerror (n);
55 if (!msg || !*msg)
65 len = strlen (msg);
69 return memcpy (buf, msg, len + 1);
  /external/blktrace/btt/
trace.c 60 char msg[iop->t.pdu_len + 1]; local
65 memcpy(msg, iop->pdu, iop->t.pdu_len);
66 msg[iop->t.pdu_len] = '\0';
71 (unsigned long)NANO_SECONDS(iop->t.time), msg);
  /external/chromium_org/chrome/browser/ui/views/
dropdown_bar_host_win.cc 25 MSG msg = { hwnd, key_event.native_event().message, key, 0 }; local
26 return NativeWebKeyboardEvent(msg);
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main.cc 52 MSG msg; local
54 while ((gm = ::GetMessage(&msg, NULL, 0, 0)) != 0 && gm != -1) {
55 if (!wnd.PreTranslateMessage(&msg)) {
56 ::TranslateMessage(&msg);
57 ::DispatchMessage(&msg);
63 (gm = ::GetMessage(&msg, NULL, 0, 0)) != 0 && gm != -1) {
64 if (!wnd.PreTranslateMessage(&msg)) {
65 ::TranslateMessage(&msg);
66 ::DispatchMessage(&msg);
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
default_logger.cc 27 void StdoutLogger::WriteMessage(const string& msg) {
28 cout << " " << msg; local
  /external/chromium_org/third_party/skia/src/ports/
SkDebug_nacl.cpp 35 pp::Var msg = pp::Var(buffer); local
36 gPluginInstance->PostMessage(msg);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
multisect2.asm 7 msg db "this is a message", 0 define
9 mov ax, msg
  /external/skia/src/ports/
SkDebug_nacl.cpp 35 pp::Var msg = pp::Var(buffer); local
36 gPluginInstance->PostMessage(msg);
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/
message_layer.c 49 long msg; local
50 msg = mh.message;
54 return msg;
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
message_layer.c 49 long msg; local
50 msg = mh.message;
54 return msg;
  /libcore/luni/src/main/java/java/io/
InvalidClassException.java 80 String msg = super.getMessage(); local
82 msg = classname + "; " + msg;
84 return msg;
  /ndk/sources/host-tools/sed-4.2.1/lib/
strerror.c 43 char const *msg = NULL; local
49 msg = "Text file busy";
56 msg = "Operation now in progress";
59 msg = "Operation already in progress";
62 msg = "Socket operation on non-socket";
65 msg = "Destination address required";
68 msg = "Message too long";
71 msg = "Protocol wrong type for socket";
74 msg = "Protocol not available";
77 msg = "Protocol not supported"
    [all...]
  /system/extras/tests/uevents/
uevents.c 25 char msg[UEVENT_MSG_LEN+2]; local
33 while ((n = uevent_kernel_multicast_recv(device_fd, msg, UEVENT_MSG_LEN)) > 0) {
34 msg[n] = '\0';
35 msg[n+1] = '\0';
38 if (msg[i] == '\0')
39 msg[i] = ' ';
41 printf("%s\n", msg);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AppUpdateSspReceiver.java 30 String msg = "Ssp update received: " + intent.getData(); local
31 Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();
  /external/chromium/testing/gtest/test/
gtest-message_test.cc 43 const char* ToCString(const Message& msg) {
45 result = msg.GetString();
53 const Message msg; local
54 EXPECT_STREQ("", ToCString(msg));
66 Message msg("Hello");
67 EXPECT_STREQ("Hello", ToCString(msg));
148 Message msg; local
149 msg << 1 << " lamb";
150 EXPECT_STREQ("1 lamb", msg.GetString().c_str());
155 Message msg("Hello")
157 ss << msg; local
    [all...]

Completed in 392 milliseconds

12 3 4 5 6 7 8 91011>>