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

1 2 3 45 6 7 8 91011>>

  /external/deqp/framework/opengl/
gluDefs.cpp 65 void checkError (const RenderContext& context, const char* msg, const char* file, int line)
67 checkError(context.getFunctions().getError(), msg, file, line);
70 void checkError (deUint32 err, const char* msg, const char* file, int line)
75 if (msg)
76 msgStr << msg << ": "; local
  /external/deqp/framework/platform/win32/
tcuWin32Platform.cpp 77 MSG msg; local
78 while (PeekMessage(&msg, (HWND)-1, 0, 0, PM_REMOVE))
80 DispatchMessage(&msg);
81 if (msg.message == WM_QUIT)
  /external/google-breakpad/src/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...]
  /external/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
  /external/libnl/tests/
check-attr.c 14 #include <netlink/msg.h>
53 struct nl_msg *msg; local
58 msg = nlmsg_alloc();
59 fail_if(!msg, "Unable to allocate netlink message");
62 fail_if(nla_put_u32(msg, i, i+1) != 0,
66 nlh = nlmsg_hdr(msg);
74 nlmsg_free(msg);
  /external/llvm/tools/llvm-c-test/
diagnostic.c 64 char *msg = NULL; local
65 if (LLVMCreateMemoryBufferWithSTDIN(&MB, &msg)) {
66 fprintf(stderr, "Error reading file: %s\n", msg);
67 LLVMDisposeMessage(msg);
77 fprintf(stderr, "Error parsing bitcode: %s\n", msg);
  /external/nanopb-c/examples/using_union_messages/
encode.c 52 MsgType1 msg = {42}; local
53 status = encode_unionmessage(&stream, MsgType1_fields, &msg);
58 MsgType2 msg = {true}; local
59 status = encode_unionmessage(&stream, MsgType2_fields, &msg);
64 MsgType3 msg = {3, 1415}; local
65 status = encode_unionmessage(&stream, MsgType3_fields, &msg);
  /external/nos/host/android/hals/authsecret/test/
test.cpp 57 const nugget_app_change_update_password* const msg local
59 return memcmp(msg->old_password.password, pwd, NUGGET_UPDATE_PASSWORD_LEN) == 0
60 && msg->old_password.digest == checksum;
64 const nugget_app_change_update_password* const msg local
66 return memcmp(msg->new_password.password, pwd, NUGGET_UPDATE_PASSWORD_LEN) == 0
67 && msg->new_password.digest == checksum;
120 const nugget_app_enable_update* const msg local
122 return memcmp(msg->password.password, pwd, NUGGET_UPDATE_PASSWORD_LEN) == 0
123 && msg->password.digest == checksum;
127 const nugget_app_enable_update* const msg local
    [all...]
  /external/protobuf/gtest/test/
gtest-message_test.cc 44 const char* ToCString(const Message& msg) {
46 result = msg.GetString();
54 const Message msg; local
55 EXPECT_STREQ("", ToCString(msg));
67 Message msg("Hello");
68 EXPECT_STREQ("Hello", ToCString(msg));
149 Message msg; local
150 msg << 1 << " lamb";
151 EXPECT_STREQ("1 lamb", msg.GetString().c_str());
156 Message msg("Hello")
158 ss << msg; local
    [all...]
  /external/protobuf/src/google/protobuf/
proto3_lite_unittest.cc 126 TestAllTypes msg; local
127 msg.ParseFromString(original.SerializeAsString());
128 ExpectAllFieldsSet(msg);
  /external/python/cpython2/Demo/turtle/
tdemo_lindenmayer_indian.py 117 msg = main() variable
118 print msg
tdemo_minimal_hanoi.py 77 msg = main() variable
78 print msg
  /external/python/cpython3/Doc/includes/
email-read-alternative.py 15 with open('outgoing.msg', 'rb') as fp:
16 msg = BytesParser(policy=policy.default).parse(fp) variable
20 print('To:', msg['to'])
21 print('From:', msg['from'])
22 print('Subject:', msg['subject'])
28 simplest = msg.get_body(preferencelist=('plain', 'html'))
37 richest = msg.get_body()
  /external/python/cpython3/Lib/turtledemo/
lindenmayer.py 117 msg = main() variable
118 print(msg)
minimal_hanoi.py 77 msg = main() variable
78 print(msg)
  /external/strace/
error_prints.c 47 char *msg; local
55 msg = NULL;
56 if (vasprintf(&msg, fmt, p) >= 0) {
59 program_invocation_name, msg, strerror(err_no));
62 program_invocation_name, msg);
63 free(msg);
rtnl_rule.c 108 struct rtmsg msg = { .rtm_family = family }; local
109 size_t offset = sizeof(msg.rtm_family);
113 printxval(addrfams, msg.rtm_family, "AF_???");
116 if (len >= sizeof(msg)) {
118 sizeof(msg) - offset,
119 (char *) &msg + offset)) {
121 msg.rtm_dst_len, msg.rtm_src_len);
123 printflags(ip_type_of_services, msg.rtm_tos,
126 printxval(routing_table_ids, msg.rtm_table, NULL)
    [all...]
  /external/strace/tests/
ipc_msgbuf.c 33 #include <sys/msg.h>
60 } msg = { local
69 if (msgsnd(msqid, &msg, msgsz, 0) == -1)
71 if (msgrcv(msqid, &msg, msgsz, mtype, 0) != msgsz)
netlink_selinux.c 70 static const struct selnl_msg_setenforce msg = { local
74 SELNL_MSG_SETENFORCE, NLM_F_REQUEST, msg,
75 PRINT_FIELD_D("{", msg, val);
84 static const struct selnl_msg_policyload msg = { local
88 SELNL_MSG_POLICYLOAD, NLM_F_REQUEST, msg,
89 PRINT_FIELD_U("{", msg, seqno);
nlattr_br_port_msg.c 48 struct br_port_msg *const msg = NLMSG_DATA(nlh); local
49 SET_STRUCT(struct br_port_msg, msg,
nlattr_dcbmsg.c 47 struct dcbmsg *const msg = NLMSG_DATA(nlh); local
48 SET_STRUCT(struct dcbmsg, msg,
nlattr_ifaddrlblmsg.c 47 struct ifaddrlblmsg *const msg = NLMSG_DATA(nlh); local
48 SET_STRUCT(struct ifaddrlblmsg, msg,
nlattr_netconfmsg.c 47 struct netconfmsg *const msg = NLMSG_DATA(nlh); local
48 SET_STRUCT(struct netconfmsg, msg,
nlattr_rtgenmsg.c 48 struct rtgenmsg *const msg = NLMSG_DATA(nlh); local
49 SET_STRUCT(struct rtgenmsg, msg,
nlattr_tcamsg.c 44 struct tcamsg *const msg = NLMSG_DATA(nlh); local
45 SET_STRUCT(struct tcamsg, msg,

Completed in 1158 milliseconds

1 2 3 45 6 7 8 91011>>