Searched defs:msg (Results 1 - 25 of 62) sorted by relevance

123

/bind-9.11.3/lib/isc/unix/
H A Dstrerror.c40 char *msg; local
49 msg = strerror(num);
50 if (msg != NULL)
51 snprintf(buf, size, "%s", msg);
/bind-9.11.3/bin/tests/
H A Dkeyboard_test.c22 CHECK(const char *msg, isc_result_t result) { argument
24 printf("FAILURE: %s: %s\n", msg, isc_result_totext(result));
H A Dlwresconf_test.c24 CHECK(int val, const char *msg) { argument
26 fprintf(stderr, "%s returned %d\n", msg, val);
H A Dentropy_test.c25 hex_dump(const char *msg, void *data, unsigned int length) { argument
32 printf("DUMP of %d bytes: %s\n\t", length, msg);
43 CHECK(const char *msg, isc_result_t result) { argument
45 printf("FAILURE: %s: %s\n", msg, isc_result_totext(result));
H A Dentropy2_test.c27 hex_dump(const char *msg, void *data, unsigned int length) { argument
34 printf("DUMP of %d bytes: %s\n\t", length, msg);
45 CHECK(const char *msg, isc_result_t result) { argument
47 printf("FAILURE: %s: %s\n", msg, isc_result_totext(result));
H A Dwire_test.c33 printmessage(dns_message_t *msg);
36 CHECKRESULT(isc_result_t result, const char *msg) { argument
38 printf("%s: %s\n", msg, dns_result_totext(result));
72 printmessage(dns_message_t *msg) { argument
86 result = dns_message_totext(msg, &dns_master_style_debug,
H A Dlwres_test.c27 CHECK(int val, const char *msg) { argument
29 fprintf(stderr, "%s returned %d\n", msg, val);
35 hexdump(const char *msg, void *base, size_t len) { argument
42 printf("*** %s (%lu bytes @ %p)\n", msg, (unsigned long)len, base);
/bind-9.11.3/unit/atf-src/atf-c/detail/
H A Dprocess_helpers.c37 h_echo(const char *msg) argument
39 printf("%s\n", msg);
/bind-9.11.3/contrib/idn/idnkit-1.0-src/wsock/common/
H A Dprintf.c68 char msg[512]; local
74 vsprintf(msg, fmt, arg_ptr);
79 fputs(msg, fp);
88 char msg[512]; local
94 vsprintf(msg, fmt, arg_ptr);
99 fputs(msg, fp);
105 log_proc(int level, const char *msg) { argument
112 fputs(msg, fp);
/bind-9.11.3/unit/atf-src/atf-c++/detail/
H A Dexceptions_test.cpp64 test_error(const char* msg) argument
69 data.m_msg = msg;
128 const std::string msg = e.what();
129 ATF_REQUIRE(msg.find("The message") != std::string::npos);
H A Dexceptions.cpp96 const std::string msg = atf_libc_error_msg(err); local
98 throw atf::system_error("XXX", msg, ecode);
/bind-9.11.3/unit/atf-src/tools/
H A Dprocess_helpers.c41 h_echo(const char *msg) argument
43 printf("%s\n", msg);
H A Dui.cpp129 impl::format_info(const std::string& prog_name, const std::string& msg) argument
131 return format_text_with_tag(msg, prog_name + ": ", true);
H A Dparser.cpp43 impl::parse_error::parse_error(size_t line, std::string msg) : argument
44 std::runtime_error(msg),
45 std::pair< size_t, std::string >(line, msg)
/bind-9.11.3/unit/atf-src/atf-c/
H A Dh_build.h37 const char *msg; member in struct:c_o_test
176 const char *msg; member in struct:cpp_test
274 const char *msg; member in struct:cxx_o_test
/bind-9.11.3/lib/isc/win32/
H A Dstrerror.c52 char *msg; local
63 msg = NTstrerror(num, &freebuf);
64 if (msg != NULL)
65 snprintf(buf, size, "%s", msg);
68 if(freebuf && msg != NULL) {
69 LocalFree(msg);
138 char *msg; local
140 msg = NTstrerror(errval, &bfreebuf);
141 fprintf(stderr, "%s: %s\n", errmsg, msg);
143 LocalFree(msg);
155 char *msg; local
369 char *msg; local
[all...]
/bind-9.11.3/lib/dns/include/dns/
H A Ddnstap.h107 dns_message_t *msg; member in struct:dns_dtdata
/bind-9.11.3/bin/tests/system/chain/ans4/
H A Dans.py69 def ctl_channel(msg):
72 msg = msg.splitlines().pop(0)
73 print ('received control message: %s' % msg)
75 msg = msg.split(b'|')
76 if len(msg) == 0:
79 actions = [x.strip() for x in msg[0].split(b',')]
82 if len(msg) == 1:
89 rlist = [x.strip() for x in msg[
325 msg = conn.recv(65535) variable
334 msg = s.recvfrom(65535) variable
[all...]
/bind-9.11.3/lib/dns/tests/
H A Dtsig_test.c134 printmessage(dns_message_t *msg) { argument
149 result = dns_message_totext(msg, &dns_master_style_debug,
167 dns_message_t *msg = NULL; local
171 result = dns_message_create(mctx, DNS_MESSAGE_INTENTRENDER, &msg);
175 ATF_REQUIRE(msg != NULL);
177 msg->id = 50;
178 msg->rcode = dns_rcode_noerror;
179 msg->flags = flags;
186 msg->verified_sig = 1;
189 msg
252 dns_message_t *msg = NULL; local
[all...]
/bind-9.11.3/bin/win32/BINDInstall/
H A DVersionInfo.cpp167 CString msg; local
168 msg.Format(IDS_EXISTING_NEWER, m_filename);
169 DWORD query = AfxMessageBox(msg, MB_YESNO);
/bind-9.11.3/unit/atf-src/atf-c++/
H A Dmacros_test.cpp567 const char *msg; member in struct:test
593 std::cout << "Checking that message contains '" << t->msg
595 std::string exp_result = std::string("^failed: .*") + t->msg;
616 const char *msg; member in struct:test
645 std::cout << "Checking that message contains '" << t->msg
647 std::string exp_result = std::string("^failed: .*") + t->msg;
668 const char *msg; member in struct:test
697 std::string(t->msg) + "$";
716 const char *msg; member in struct:test
742 std::string(t->msg)
[all...]
/bind-9.11.3/contrib/dlz/drivers/
H A Ddlz_ldap_driver.c124 dlz_ldap_checkURL(char *URL, int attrCnt, const char *msg) { argument
132 "%s query is not a valid LDAP URL", msg);
141 "parsing %s query failed", msg);
151 msg, attrCnt);
159 "%s query must not specify a host", msg);
167 "%s query must not specify a port", msg);
175 "%s query must specify a search base", msg);
185 msg);
321 ldap_process_results(LDAP *dbc, LDAPMessage *msg, char ** attrs, argument
341 entry = ldap_first_entry(dbc, msg);
[all...]
/bind-9.11.3/contrib/dlz/modules/ldap/
H A Ddlz_ldap_dynamic.c128 ldap_checkURL(ldap_instance_t *db, char *URL, int attrCnt, const char *msg) { argument
135 "%s query is not a valid LDAP URL", msg);
142 db->log(ISC_LOG_ERROR, "parsing %s query failed", msg);
150 "%d attributes to return", msg, attrCnt);
157 "%s query must not specify a host", msg);
164 "%s query must not specify a port", msg);
171 "%s query must specify a search base", msg);
179 "The driver does not support LDAP extensions.", msg);
312 ldap_process_results(ldap_instance_t *db, LDAP *dbc, LDAPMessage *msg, argument
329 entry = ldap_first_entry(dbc, msg);
[all...]
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/tests/
H A Dtestsuite.c87 static void put_failure_message(idn_testsuite_t ctx, const char *msg,
89 static void idn_testsuite_msgtostderr(const char *msg);
323 idn_testsuite_assert(idn_testsuite_t ctx, const char *msg, argument
325 assert(ctx != NULL && msg != NULL && file != NULL);
330 put_failure_message(ctx, msg, file, lineno);
336 char msg[256]; /* large enough */ local
346 sprintf(msg, "`%d' expected, but got `%d'", expected, gotten);
347 put_failure_message(ctx, msg, file, lineno);
356 char *msg; local
367 msg
387 char *msg; local
410 char *msg; local
433 char msg[256]; /* large enough */ local
455 char *msg; local
554 put_failure_message(idn_testsuite_t ctx, const char *msg, const char *file, int lineno) argument
575 idn_testsuite_msgtostderr(const char *msg) argument
[all...]
/bind-9.11.3/bin/tests/system/lwresd/
H A Dlwtest.c39 CHECK(lwres_result_t val, const char *msg) { argument
41 printf("I:%s returned %d\n", msg, val);

Completed in 64 milliseconds

123