/third_party/grpc/third_party/upb/third_party/lunit/ |
D | console.lua | 91 local msgs = {} 98 msgs = {} -- e 118 …msgs[#msgs+1] = "Error! ("..fullname.."):\n"..message.."\n\t"..table.concat(traceback, "\n\t") .. … 131 msgs[#msgs+1] = text 145 for i, msg in ipairs(msgs) do
|
/third_party/python/Lib/distutils/tests/ |
D | test_check.py | 81 msgs = cmd._check_rst_data(broken_rest) 82 self.assertEqual(len(msgs), 1) 86 msgs = cmd._check_rst_data(rest) 87 self.assertEqual(len(msgs), 0) 142 msgs = cmd._check_rst_data(rest_with_code) 144 self.assertEqual(len(msgs), 0) 146 self.assertEqual(len(msgs), 1) 148 str(msgs[0][1]),
|
/third_party/musl/libc-test/src/functionalext/supplement/network/ |
D | __recvmmsg_time64.c | 81 struct mmsghdr msgs[VLEN]; in recvsss() local 100 memset(msgs, 0, sizeof(msgs)); in recvsss() 104 msgs[i].msg_hdr.msg_iov = &iovecs[i]; in recvsss() 105 msgs[i].msg_hdr.msg_iovlen = 1; in recvsss() 111 retval = __recvmmsg_time64(sockfd, msgs, VLEN, 0, &timeout); in recvsss()
|
D | recvmmsg.c | 79 struct mmsghdr msgs[VLEN]; in recvsss() local 98 memset(msgs, 0, sizeof(msgs)); in recvsss() 102 msgs[i].msg_hdr.msg_iov = &iovecs[i]; in recvsss() 103 msgs[i].msg_hdr.msg_iovlen = 1; in recvsss() 109 retval = recvmmsg(sockfd, msgs, VLEN, 0, &timeout); in recvsss()
|
/third_party/ltp/testcases/kernel/syscalls/symlink/ |
D | symlink01.c | 278 const char *msgs[] = { variable 980 msgs[tc_ptr-> in do_syscalltests() 1031 tst_resm(TPASS, "%s", msgs[tc_ptr->pass_msg]); in do_EEXIST() 1041 tst_resm(TEST_RESULT, "%s", msgs[tc_ptr->pass_msg]); in do_EEXIST() 1054 tst_resm(TEST_RESULT, "%s", msgs[tc_ptr->pass_msg]); in do_EEXIST() 1079 tst_resm(TEST_RESULT, "%s", msgs[tc_ptr->pass_msg]); in do_ENOENT() 1088 tst_resm(TEST_RESULT, "%s", msgs[tc_ptr->pass_msg]); in do_ENOENT() 1101 tst_resm(TEST_RESULT, "%s", msgs[tc_ptr->pass_msg]); in do_ENOENT() 1112 tst_resm(TEST_RESULT, "%s", msgs[tc_ptr->pass_msg]); in do_ENOENT() 1122 tst_resm(TEST_RESULT, "%s", msgs[tc_ptr->pass_msg]); in do_ENOENT() [all …]
|
/third_party/e2fsprogs/lib/et/ |
D | init_et.c | 35 int init_error_table(const char * const *msgs, long base, int count) in init_error_table() argument 39 if (!base || !count || !msgs) in init_error_table() 46 new_et->et.msgs = msgs; in init_error_table()
|
D | com_right.c | 54 return p->table->msgs[code - p->table->base]; in com_right() 66 strncpy(str, p->table->msgs[code - p->table->base], len); in com_right_r() 97 if (et->table->msgs == messages) in initialize_error_table_r() 104 tab->msgs = messages; in initialize_error_table_r()
|
/third_party/gettext/gettext-tools/tests/ |
D | msgunfmt-tcl-1 | 39 test -d mu-tcl-1-msgs || mkdir mu-tcl-1-msgs 42 ${MSGFMT} --tcl -d mu-tcl-1-msgs -l fr mu-tcl-1-fr.po || Exit 1 46 ${MSGUNFMT} --tcl -d mu-tcl-1-msgs -l fr -o mu-tcl-1-prog.out || Exit 1
|
D | lang-tcl | 18 ::msgcat::mcload [file join [file dirname [info script]] . msgs] 64 test -d msgs || mkdir msgs 67 ${MSGFMT} --tcl -d msgs -l fr fr.po || Exit 1
|
/third_party/boost/tools/inspect/ |
D | inspect.cpp | 117 error_msg_vector msgs; variable 310 string current_library( msgs.begin()->library ); in display_summary() 312 for ( error_msg_vector::iterator itr ( msgs.begin() ); in display_summary() 313 itr != msgs.end(); ++itr ) in display_summary() 367 for ( error_msg_vector::iterator itr ( msgs.begin() ); in display_details() 368 itr != msgs.end(); ++itr ) in display_details() 419 for ( error_msg_vector::iterator itr ( msgs.begin() ); in display_details() 420 itr != msgs.end(); ++itr ) in display_details() 477 if ( msgs.empty() ) in worst_offenders_count() 481 string current_library( msgs.begin()->library ); in worst_offenders_count() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/radius/ |
D | radius_client.c | 223 struct radius_msg_list *msgs; member 500 entry = radius->msgs; in radius_client_timer() 528 entry = radius->msgs; in radius_client_timer() 539 radius->msgs = entry->next; in radius_client_timer() 551 entry = radius->msgs; in radius_client_timer() 563 if (radius->msgs) { in radius_client_timer() 591 for (entry = radius->msgs; entry; entry = entry->next) { in radius_client_auth_failover() 620 for (entry = radius->msgs; entry; entry = entry->next) { in radius_client_acct_failover() 644 if (radius->msgs == NULL) { in radius_client_update_timeout() 649 for (entry = radius->msgs; entry; entry = entry->next) { in radius_client_update_timeout() [all …]
|
/third_party/boost/libs/poly_collection/example/ |
D | basic_function.cpp | 22 std::vector<std::string> msgs; in main() local 38 msgs.push_back("\"stamina: 10,000\""); in main() 39 msgs.push_back("\"game over\""); in main() 79 for(const auto& m:msgs)c.insert(render_message(m)); in main()
|
/third_party/musl/src/misc/ |
D | fmtmsg.c | 29 char *const msgs[] = { in fmtmsg() local 59 for(i=0; msgs[i]; i++) { in fmtmsg() 60 if (!_strcolcmp(msgs[i], cmsg)) break; in fmtmsg() 62 if (msgs[i] == NULL) { in fmtmsg()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/radius/ |
D | radius_client.c | 224 struct radius_msg_list *msgs; member 501 entry = radius->msgs; in radius_client_timer() 529 entry = radius->msgs; in radius_client_timer() 540 radius->msgs = entry->next; in radius_client_timer() 552 entry = radius->msgs; in radius_client_timer() 564 if (radius->msgs) { in radius_client_timer() 592 for (entry = radius->msgs; entry; entry = entry->next) { in radius_client_auth_failover() 621 for (entry = radius->msgs; entry; entry = entry->next) { in radius_client_acct_failover() 645 if (radius->msgs == NULL) { in radius_client_update_timeout() 650 for (entry = radius->msgs; entry; entry = entry->next) { in radius_client_update_timeout() [all …]
|
/third_party/musl/src/locale/ |
D | catgets.c | 21 const char *msgs = map+20+V(map+12); in catgets() local 31 msgs += 12*V(set+8); in catgets() 32 const char *msg = bsearch(&msg_id_be, msgs, nmsgs, 12, cmp); in catgets()
|
/third_party/flutter/skia/src/gpu/text/ |
D | GrTextBlobCache.cpp | 42 SkTArray<PurgeBlobMessage> msgs; in purgeStaleBlobs() local 43 fPurgeBlobInbox.poll(&msgs); in purgeStaleBlobs() 45 for (const auto& msg : msgs) { in purgeStaleBlobs()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/ |
D | eap_server_eke.c | 32 struct wpabuf *msgs; member 106 wpabuf_free(data->msgs); in eap_eke_reset() 228 wpabuf_free(data->msgs); in eap_eke_build_identity() 229 data->msgs = wpabuf_dup(msg); in eap_eke_build_identity() 230 if (data->msgs == NULL) { in eap_eke_build_identity() 292 if (wpabuf_resize(&data->msgs, wpabuf_len(msg)) < 0) { in eap_eke_build_commit() 297 wpabuf_put_buf(data->msgs, msg); in eap_eke_build_commit() 350 if (eap_eke_auth(&data->sess, "EAP-EKE server", data->msgs, auth) < 0) { in eap_eke_build_confirm() 504 if (wpabuf_resize(&data->msgs, wpabuf_len(respData)) < 0) { in eap_eke_process_identity() 508 wpabuf_put_buf(data->msgs, respData); in eap_eke_process_identity() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/ |
D | eap_server_eke.c | 32 struct wpabuf *msgs; member 106 wpabuf_free(data->msgs); in eap_eke_reset() 228 wpabuf_free(data->msgs); in eap_eke_build_identity() 229 data->msgs = wpabuf_dup(msg); in eap_eke_build_identity() 230 if (data->msgs == NULL) { in eap_eke_build_identity() 292 if (wpabuf_resize(&data->msgs, wpabuf_len(msg)) < 0) { in eap_eke_build_commit() 297 wpabuf_put_buf(data->msgs, msg); in eap_eke_build_commit() 350 if (eap_eke_auth(&data->sess, "EAP-EKE server", data->msgs, auth) < 0) { in eap_eke_build_confirm() 504 if (wpabuf_resize(&data->msgs, wpabuf_len(respData)) < 0) { in eap_eke_process_identity() 508 wpabuf_put_buf(data->msgs, respData); in eap_eke_process_identity() [all …]
|
/third_party/musl/src/network/ |
D | gai_strerror.c | 4 static const char msgs[] = variable 22 for (s=msgs, ecode++; ecode && *s; ecode++, s++) for (; *s; s++); in gai_strerror()
|
D | hstrerror.c | 5 static const char msgs[] = variable 15 for (s=msgs, ecode--; ecode && *s; ecode--, s++) for (; *s; s++); in hstrerror()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/ |
D | eventhistory.cpp | 103 void EventHistory::addEvents(WpaMsgList msgs) in addEvents() argument 106 for (it = msgs.begin(); it != msgs.end(); it++) in addEvents()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/ |
D | eventhistory.cpp | 103 void EventHistory::addEvents(WpaMsgList msgs) in addEvents() argument 106 for (it = msgs.begin(); it != msgs.end(); it++) in addEvents()
|
/third_party/typescript/tests/baselines/reference/ |
D | typeFromPropertyAssignment6.symbols | 22 var msgs = Outer.i.messages() 23 >msgs : Symbol(msgs, Decl(b.js, 0, 3))
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/ |
D | eap_eke.c | 30 struct wpabuf *msgs; member 139 wpabuf_free(data->msgs); in eap_eke_deinit() 336 wpabuf_free(data->msgs); in eap_eke_process_id() 337 data->msgs = wpabuf_alloc(wpabuf_len(reqData) + wpabuf_len(resp)); in eap_eke_process_id() 338 if (data->msgs == NULL) { in eap_eke_process_id() 343 wpabuf_put_buf(data->msgs, reqData); in eap_eke_process_id() 344 wpabuf_put_buf(data->msgs, resp); in eap_eke_process_id() 484 if (wpabuf_resize(&data->msgs, wpabuf_len(reqData) + wpabuf_len(resp)) in eap_eke_process_commit() 490 wpabuf_put_buf(data->msgs, reqData); in eap_eke_process_commit() 491 wpabuf_put_buf(data->msgs, resp); in eap_eke_process_commit() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/ |
D | eap_eke.c | 30 struct wpabuf *msgs; member 139 wpabuf_free(data->msgs); in eap_eke_deinit() 336 wpabuf_free(data->msgs); in eap_eke_process_id() 337 data->msgs = wpabuf_alloc(wpabuf_len(reqData) + wpabuf_len(resp)); in eap_eke_process_id() 338 if (data->msgs == NULL) { in eap_eke_process_id() 343 wpabuf_put_buf(data->msgs, reqData); in eap_eke_process_id() 344 wpabuf_put_buf(data->msgs, resp); in eap_eke_process_id() 484 if (wpabuf_resize(&data->msgs, wpabuf_len(reqData) + wpabuf_len(resp)) in eap_eke_process_commit() 490 wpabuf_put_buf(data->msgs, reqData); in eap_eke_process_commit() 491 wpabuf_put_buf(data->msgs, resp); in eap_eke_process_commit() [all …]
|