HomeSort by relevance Sort by last modified time
    Searched defs:msg (Results 501 - 525 of 1733) sorted by null

<<21222324252627282930>>

  /external/strace/tests-mx32/
nlattr_ifinfomsg.c 68 struct ifinfomsg *const msg = NLMSG_DATA(nlh); local
69 SET_STRUCT(struct ifinfomsg, msg,
nlattr_rtmsg.c 50 struct rtmsg *const msg = NLMSG_DATA(nlh); local
51 SET_STRUCT(struct rtmsg, msg,
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-c-test/
module.c 30 char *msg = NULL; local
32 if (LLVMCreateMemoryBufferWithSTDIN(&MB, &msg)) {
33 fprintf(stderr, "Error reading file: %s\n", msg);
47 Ret = LLVMGetBitcodeModule(MB, &M, &msg);
49 Ret = LLVMParseBitcode(MB, &M, &msg);
53 fprintf(stderr, "Error parsing bitcode: %s\n", msg);
  /external/tensorflow/tensorflow/core/lib/core/
status.h 43 /// \brief Create a status with the specified error code and msg as a
45 Status(tensorflow::error::Code code, tensorflow::StringPiece msg);
61 return ok() ? empty_string() : state_->msg;
91 string msg; member in struct:tensorflow::Status::State
143 const ::tensorflow::Status& v, const char* msg);
146 const char* msg) {
148 return TfCheckOpHelperOutOfLine(v, msg);
  /external/tensorflow/tensorflow/lite/models/smartreply/
predictor_test.cc 136 const string &msg = fields[0]; local
138 GetSegmentPredictions({msg}, *model_, /*config=*/{{}}, &predictions);
  /external/testng/src/main/java/org/testng/reporters/
TextReporter.java 142 StringBuffer msg= new StringBuffer(name); local
145 msg.append("(");
150 msg.append(name + ": Wrong number of arguments were passed by " +
158 msg.append(", ");
160 msg.append(Utils.toString(params[i], paramTypes[i]));
163 msg.append(")");
167 msg.append("\n");
169 msg.append(" ");
171 msg.append(description);
174 msg.append("\n").append(stackTrace)
    [all...]
  /external/toybox/toys/lsb/
dmesg.c 48 static void format_message(char *msg, int new)
56 if (sscanf(msg, "%u,%*u,%llu,%*[^;]; %n", &facpri, &time_us, &pos) != 2)
61 } else if (sscanf(msg, "<%u>[%llu.%llu] %n",
65 if ((p = strchr(text = msg+pos, '\n'))) *p = 0;
128 char msg[8193]; // CONSOLE_EXT_LOG_MAX+1 local
144 if (-1==(len = read(fd, msg, sizeof(msg))) && errno==EPIPE) continue;
149 msg[len] = 0;
150 format_message(msg, 1);
  /external/wayland/tests/
protocol-logger-test.c 90 struct message *msg = &messages[c->message++]; local
92 assert(msg->type == type);
93 assert(strcmp(msg->class, wl_resource_get_class(message->resource)) == 0);
94 assert(msg->opcode == message->message_opcode);
95 assert(strcmp(msg->message_name, message->message->name) == 0);
96 assert(msg->args_count == message->arguments_count);
  /external/webrtc/talk/app/webrtc/
dtlsidentitystore.cc 76 IdentityResultMessageData* msg = new IdentityResultMessageData( local
78 signaling_thread_->Post(this, MSG_GENERATE_IDENTITY_RESULT, msg);
81 void OnMessage(rtc::Message* msg) override {
82 switch (msg->message_id) {
87 // Must delete |this|, owned by msg->pdata, on the signaling thread to
89 signaling_thread_->Post(this, MSG_DESTROY, msg->pdata);
95 static_cast<IdentityResultMessageData*>(msg->pdata));
104 delete msg->pdata;
150 void DtlsIdentityStoreImpl::OnMessage(rtc::Message* msg) {
152 switch (msg->message_id)
183 IdentityResultMessageData* msg = local
204 WorkerTaskMessageData* msg = new WorkerTaskMessageData(task); local
    [all...]
  /external/webrtc/talk/app/webrtc/test/
fakedtlsidentitystore.h 121 MessageData* msg = new MessageData( variable
124 this, should_fail_ ? MSG_FAILURE : MSG_SUCCESS, msg);
160 void OnMessage(rtc::Message* msg) {
161 MessageData* message_data = static_cast<MessageData*>(msg->pdata);
164 switch (msg->message_id) {
  /external/webrtc/webrtc/p2p/base/
stunrequest_unittest.cc 49 StunMessage* msg = new StunMessage(); local
50 msg->SetType(type);
52 msg->SetTransactionID(req->transaction_id());
54 return msg;
78 StunRequestThunker(StunMessage* msg, StunRequestTest* test)
79 : StunRequest(msg), test_(test) {}
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
rtp_rtcp_test.cc 45 char msg[128]; local
46 sprintf(msg, "\n=> OnIncomingSSRCChanged(channel=%d, SSRC=%u)\n", channel,
48 TEST_LOG("%s", msg);
  /external/wpa_supplicant_8/src/eap_server/
eap_server_gtc.c 54 char *msg; local
57 msg = data->prefix ? "CHALLENGE=Password" : "Password";
59 msg_len = os_strlen(msg);
69 wpabuf_put_data(req, msg, msg_len);
  /external/wpa_supplicant_8/src/p2p/
p2p_dev_disc.c 164 struct p2p_message msg; local
170 if (p2p_parse(data, len, &msg))
173 if (msg.dialog_token == 0) {
175 p2p_send_dev_disc_resp(p2p, msg.dialog_token, sa, rx_freq,
177 p2p_parse_free(&msg);
181 if (msg.device_id == NULL) {
183 p2p_send_dev_disc_resp(p2p, msg.dialog_token, sa, rx_freq,
185 p2p_parse_free(&msg);
190 if (p2p_group_go_discover(p2p->groups[g], msg.device_id, sa,
199 p2p->pending_dev_disc_dialog_token = msg.dialog_token
217 struct p2p_message msg; local
    [all...]
  /external/wpa_supplicant_8/tests/
test-tls.c 22 static void write_msg(FILE *f, struct wpabuf *msg)
27 (unsigned int) wpabuf_len(msg));
28 WPA_PUT_BE16(len, wpabuf_len(msg));
30 fwrite(wpabuf_head(msg), wpabuf_len(msg), 1, f);
38 struct wpabuf *msg; local
41 wpa_printf(MSG_ERROR, "TEST-ERROR: Could not read msg len");
46 msg = wpabuf_alloc(msg_len);
47 if (!msg)
50 fread(wpabuf_put(msg, msg_len), msg_len, 1, f) != 1)
    [all...]
  /frameworks/av/media/libmedia/
IStreamSource.cpp 151 Command cmd, bool synchronous, const sp<AMessage> &msg) {
157 if (msg != NULL) {
159 msg->writeToParcel(&data);
190 sp<AMessage> msg; local
193 msg = AMessage::FromParcel(data);
196 issueCommand(cmd, synchronous, msg);
  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2DecoderBase.cpp 53 const sp<AMessage> &msg, sp<AMessage> *response) {
54 status_t err = msg->postAndAwaitResponse(response);
68 sp<AMessage> msg = new AMessage(kWhatConfigure, this); local
69 msg->setMessage("format", format);
70 msg->post();
83 sp<AMessage> msg = new AMessage(kWhatSetParameters, this); local
84 msg->setMessage("params", params);
85 msg->post();
89 sp<AMessage> msg = new AMessage(kWhatSetRenderer, this); local
90 msg->setObject("renderer", renderer)
95 sp<AMessage> msg = new AMessage(kWhatPause, this); local
106 sp<AMessage> msg = new AMessage(kWhatResume, this); local
124 sp<AMessage> msg = new AMessage(kWhatRequestInputBuffers, this); local
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoderBase.cpp 51 const sp<AMessage> &msg, sp<AMessage> *response) {
52 status_t err = msg->postAndAwaitResponse(response);
66 sp<AMessage> msg = new AMessage(kWhatConfigure, this); local
67 msg->setMessage("format", format);
68 msg->post();
81 sp<AMessage> msg = new AMessage(kWhatSetParameters, this); local
82 msg->setMessage("params", params);
83 msg->post();
87 sp<AMessage> msg = new AMessage(kWhatSetRenderer, this); local
88 msg->setObject("renderer", renderer)
93 sp<AMessage> msg = new AMessage(kWhatPause, this); local
104 sp<AMessage> msg = new AMessage(kWhatResume, this); local
122 sp<AMessage> msg = new AMessage(kWhatRequestInputBuffers, this); local
    [all...]
  /frameworks/av/media/libstagefright/
MediaExtractor.cpp 65 sp<AMessage> msg = new AMessage(); local
66 AMediaFormat *format = AMediaFormat_fromMsg(&msg);
69 convertMessageToMetaData(msg, newMeta);
76 sp<AMessage> msg = new AMessage(); local
77 AMediaFormat *format = AMediaFormat_fromMsg(&msg);
80 convertMessageToMetaData(msg, newMeta);
  /frameworks/av/media/libstagefright/rtsp/
AH263Assembler.cpp 196 sp<AMessage> msg = mNotifyMsg->dup(); local
197 msg->setBuffer("access-unit", accessUnit);
198 msg->post();
209 sp<AMessage> msg = mNotifyMsg->dup(); local
210 msg->setInt32("eos", true);
211 msg->post();
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyMotionEvent.java 153 StringBuilder msg = new StringBuilder(":Sending "); local
154 msg.append(getTypeLabel()).append(" (");
157 msg.append("ACTION_DOWN");
160 msg.append("ACTION_MOVE");
163 msg.append("ACTION_UP");
166 msg.append("ACTION_CANCEL");
169 msg.append("ACTION_POINTER_DOWN ").append(me.getPointerId(me.getActionIndex()));
172 msg.append("ACTION_POINTER_UP ").append(me.getPointerId(me.getActionIndex()));
175 msg.append(me.getAction());
178 msg.append("):")
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowMessageTest.java 174 Message msg = Message.obtain(); local
176 ShadowMessage sMsg = shadowOf(msg);
186 Message msg = Message.obtain(h, 123); local
187 ShadowMessage sMsg = shadowOf(msg);
189 msg.sendToTarget();
207 Message msg = Message.obtain(h, 234); local
208 ReflectionHelpers.callInstanceMethod(msg, recycleMethod);
209 assertThat(msg.what).isEqualTo(0);
227 Message msg = Message.obtain(h, 234); local
228 msg.sendToTarget()
    [all...]
  /frameworks/base/cmds/hid/src/com/android/commands/hid/
Device.java 80 Message msg = mHandler.obtainMessage(MSG_SEND_REPORT, report); local
82 mHandler.sendMessageAtTime(msg, mTimeToSend);
90 Message msg = mHandler.obtainMessage(MSG_CLOSE_DEVICE); local
91 mHandler.sendMessageAtTime(msg, Math.max(SystemClock.uptimeMillis(), mTimeToSend) + 1);
108 public void handleMessage(Message msg) {
109 switch (msg.what) {
111 SomeArgs args = (SomeArgs) msg.obj;
118 nativeSendReport(mPtr, (byte[]) msg.obj);
125 nativeSendGetFeatureReportReply(mPtr, msg.arg1, (byte[]) msg.obj)
169 Message msg; local
181 Message msg = mHandler.obtainMessage(MSG_CLOSE_DEVICE); local
    [all...]
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
slf4j-api-1.4.2.jar 
  /external/slf4j/integration/lib/
slf4j-api-1.6.6.jar 

Completed in 1728 milliseconds

<<21222324252627282930>>