Searched defs:tp (Results 1 - 25 of 27) sorted by relevance

12

/bind-9.11.3/lib/isc/
H A Dinet_ntop.c115 char tmp[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")], *tp; local
156 tp = tmp;
162 *tp++ = ':';
167 *tp++ = ':';
172 if (!inet_ntop4(src+12, tp,
173 sizeof(tmp) - (tp - tmp)))
175 tp += strlen(tp);
178 INSIST((size_t)(tp - tmp) < sizeof(tmp));
179 tp
[all...]
H A Dinet_pton.c76 unsigned char tmp[NS_INADDRSZ], *tp; local
80 *(tp = tmp) = 0;
85 unsigned int byte = *tp * 10;
88 if (saw_digit && *tp == 0)
92 *tp = byte;
101 *++tp = 0;
129 unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
134 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
135 endp = tp + NS_IN6ADDRSZ;
161 colonp = tp;
[all...]
H A Dprint.c532 const char *tp; local
538 tp = cp;
539 while (n != 0U && *tp != '\0')
540 n--, tp++;
/bind-9.11.3/lib/lwres/
H A Dlwinetntop.c108 char tmp[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")], *tp; local
149 tp = tmp;
155 *tp++ = ':';
160 *tp++ = ':';
164 if (!inet_ntop4(src+12, tp,
165 sizeof(tmp) - (tp - tmp)))
167 tp += strlen(tp);
170 tp += sprintf(tp, "
[all...]
H A Dlwinetpton.c75 unsigned char tmp[NS_INADDRSZ], *tp; local
79 *(tp = tmp) = 0;
84 unsigned int byte = *tp * 10;
89 *tp = byte;
100 * *++tp = 0;
102 tp++;
103 *tp = 0;
131 unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
136 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
137 endp = tp
[all...]
H A Dprint.c372 const char *tp; local
376 tp = cp;
377 while (n != 0U && *tp != '\0')
378 n--, tp++;
/bind-9.11.3/bin/tests/pkcs11/benchmarks/
H A Dsession.c64 static int clock_gettime(int32_t id, struct timespec *tp);
67 clock_gettime(int32_t id, struct timespec *tp) argument
77 tp->tv_sec = tv.tv_sec;
78 tp->tv_nsec = (long) tv.tv_usec * 1000;
H A Dfind.c66 static int clock_gettime(int32_t id, struct timespec *tp);
69 clock_gettime(int32_t id, struct timespec *tp) argument
79 tp->tv_sec = tv.tv_sec;
80 tp->tv_nsec = (long) tv.tv_usec * 1000;
H A Dlogin.c68 static int clock_gettime(int32_t id, struct timespec *tp);
71 clock_gettime(int32_t id, struct timespec *tp) argument
81 tp->tv_sec = tv.tv_sec;
82 tp->tv_nsec = (long) tv.tv_usec * 1000;
H A Drandom.c64 static int clock_gettime(int32_t id, struct timespec *tp);
67 clock_gettime(int32_t id, struct timespec *tp) argument
77 tp->tv_sec = tv.tv_sec;
78 tp->tv_nsec = (long) tv.tv_usec * 1000;
H A Dsha1.c64 static int clock_gettime(int32_t id, struct timespec *tp);
67 clock_gettime(int32_t id, struct timespec *tp) argument
77 tp->tv_sec = tv.tv_sec;
78 tp->tv_nsec = (long) tv.tv_usec * 1000;
H A Dcreate.c68 static int clock_gettime(int32_t id, struct timespec *tp);
71 clock_gettime(int32_t id, struct timespec *tp) argument
81 tp->tv_sec = tv.tv_sec;
82 tp->tv_nsec = (long) tv.tv_usec * 1000;
H A Dgenrsa.c68 static int clock_gettime(int32_t id, struct timespec *tp);
71 clock_gettime(int32_t id, struct timespec *tp) argument
81 tp->tv_sec = tv.tv_sec;
82 tp->tv_nsec = (long) tv.tv_usec * 1000;
H A Dprivrsa.c68 static int clock_gettime(int32_t id, struct timespec *tp);
71 clock_gettime(int32_t id, struct timespec *tp) argument
81 tp->tv_sec = tv.tv_sec;
82 tp->tv_nsec = (long) tv.tv_usec * 1000;
H A Dpubrsa.c68 static int clock_gettime(int32_t id, struct timespec *tp);
71 clock_gettime(int32_t id, struct timespec *tp) argument
81 tp->tv_sec = tv.tv_sec;
82 tp->tv_nsec = (long) tv.tv_usec * 1000;
H A Dverify.c68 static int clock_gettime(int32_t id, struct timespec *tp);
71 clock_gettime(int32_t id, struct timespec *tp) argument
81 tp->tv_sec = tv.tv_sec;
82 tp->tv_nsec = (long) tv.tv_usec * 1000;
H A Dsign.c68 static int clock_gettime(int32_t id, struct timespec *tp);
71 clock_gettime(int32_t id, struct timespec *tp) argument
81 tp->tv_sec = tv.tv_sec;
82 tp->tv_nsec = (long) tv.tv_usec * 1000;
/bind-9.11.3/unit/atf-src/atf-c/
H A Dtp.c26 #include "atf-c/tp.h"
50 find_tc(const atf_tp_t *tp, const char *ident) argument
56 atf_list_for_each_c(iter, &tp->pimpl->m_tcs) {
76 atf_tp_init(atf_tp_t *tp, const char *const *config) argument
82 tp->pimpl = malloc(sizeof(struct atf_tp_impl));
83 if (tp->pimpl == NULL)
86 err = atf_list_init(&tp->pimpl->m_tcs);
90 err = atf_map_init_charpp(&tp->pimpl->m_config, config);
92 atf_list_fini(&tp->pimpl->m_tcs);
102 atf_tp_fini(atf_tp_t *tp) argument
122 atf_tp_get_config(const atf_tp_t *tp) argument
128 atf_tp_has_tc(const atf_tp_t *tp, const char *id) argument
135 atf_tp_get_tc(const atf_tp_t *tp, const char *id) argument
143 atf_tp_get_tcs(const atf_tp_t *tp) argument
176 atf_tp_add_tc(atf_tp_t *tp, atf_tc_t *tc) argument
194 atf_tp_run(const atf_tp_t *tp, const char *tcname, const char *resfile) argument
205 atf_tp_cleanup(const atf_tp_t *tp, const char *tcname) argument
[all...]
/bind-9.11.3/bin/tests/system/dyndb/driver/
H A Dsyncptr.c173 dns_difftuple_t *tp = NULL; local
215 ttl, &ptr_rdata, &tp));
216 dns_diff_append(&pevent->diff, &tp);
228 if (tp != NULL)
229 dns_difftuple_free(&tp);
/bind-9.11.3/unit/atf-src/tools/
H A Datf-run.cpp125 dump_stacktrace(const tools::fs::path& tp, const tools::process::status& s, argument
134 (tp.leaf_name().substr(0, max_core_name_length) + ".core");
143 "-q", "-ex", "bt", tp.c_str(),
226 atf_run::run_test(const tools::fs::path& tp, argument
230 tools::fs::file_info fi(tp);
234 errcode = run_test_directory(tp, w);
239 errcode = run_test_program(tp, w, effective_config);
245 atf_run::run_test_directory(const tools::fs::path& tp, argument
248 tools::atffile af = tools::read_atffile(tp / "Atffile");
260 const bool result = run_test(tp / *ite
374 run_test_program(const tools::fs::path& tp, tools::test_program::atf_tps_writer& w, const vars_map& config) argument
[all...]
H A Datf-report.cpp149 (*m_os) << "tp, " << timestamp << ", " << m_tpname << ", bogus, "
152 (*m_os) << "tp, " << timestamp << ", "<< m_tpname << ", failed\n";
154 (*m_os) << "tp, " << timestamp << ", "<< m_tpname << ", passed\n";
221 write_tp_start(const std::string& tp, size_t ntcs) argument
226 m_tpname = tp;
228 (*m_os) << format_text(tp + " (" + to_string(m_curtp) +
422 write_tp_start(const std::string& tp, argument
425 (*m_os) << "<tp id=\"" << attrval(tp) << "\">\n";
433 (*m_os) << "<tp
528 got_tp_start(const std::string& tp, size_t ntcs) argument
[all...]
H A Dtest-program.cpp311 // The input 'tp' parameter may be relative and become invalid once
494 "application/X-atf-tp", 1);
592 impl::atf_tps_writer::start_tp(const std::string& tp, size_t ntcs) argument
594 m_tpname = tp;
595 m_os << "tp-start: " << generate_timestamp() << ", " << tp << ", "
605 m_os << "tp-end: " << generate_timestamp() << ", " << m_tpname << "\n";
607 m_os << "tp-end: " << generate_timestamp() << ", " << m_tpname
/bind-9.11.3/unit/atf-src/atf-c/detail/
H A Dtp_main.c44 #include "atf-c/tp.h"
249 list_tcs(const atf_tp_t *tp) argument
254 printf("Content-Type: application/X-atf-tp; version=\"1\"\n\n");
256 tcs = atf_tp_get_tcs(tp);
486 run_tc(const atf_tp_t *tp, struct params *p, int *exitcode) argument
492 if (!atf_tp_has_tc(tp, p->m_tcname)) {
507 err = atf_tp_run(tp, p->m_tcname, atf_fs_path_cstring(&p->m_resfile));
519 err = atf_tp_cleanup(tp, p->m_tcname);
547 atf_tp_t tp; local
563 err = atf_tp_init(&tp, (cons
[all...]
/bind-9.11.3/lib/dns/
H A Ddiff.c52 dns_rdata_t *rdata, dns_difftuple_t **tp)
58 REQUIRE(tp != NULL && *tp == NULL);
100 *tp = t;
105 dns_difftuple_free(dns_difftuple_t **tp) { argument
106 dns_difftuple_t *t = *tp;
116 *tp = NULL;
50 dns_difftuple_create(isc_mem_t *mctx, dns_diffop_t op, dns_name_t *name, dns_ttl_t ttl, dns_rdata_t *rdata, dns_difftuple_t **tp) argument
H A Djournal.c128 dns_diffop_t op, dns_difftuple_t **tp)
160 &rdata, tp);
127 dns_db_createsoatuple(dns_db_t *db, dns_dbversion_t *ver, isc_mem_t *mctx, dns_diffop_t op, dns_difftuple_t **tp) argument

Completed in 57 milliseconds

12