Searched refs:tp (Results 1 - 25 of 68) sorted by relevance

123

/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dzero_tcs_helper.c32 ATF_TP_ADD_TCS(tp)
34 if (tp != NULL) {} /* Use tp. */
H A Dexpect_helpers.c172 ATF_TP_ADD_TCS(tp)
174 ATF_TP_ADD_TC(tp, pass_and_pass);
175 ATF_TP_ADD_TC(tp, pass_but_fail_requirement);
176 ATF_TP_ADD_TC(tp, pass_but_fail_check);
177 ATF_TP_ADD_TC(tp, fail_and_fail_requirement);
178 ATF_TP_ADD_TC(tp, fail_and_fail_check);
179 ATF_TP_ADD_TC(tp, fail_but_pass);
180 ATF_TP_ADD_TC(tp, exit_any_and_exit);
181 ATF_TP_ADD_TC(tp, exit_code_and_exit);
182 ATF_TP_ADD_TC(tp, exit_but_pas
[all...]
H A Dseveral_tcs_helper.c60 ATF_TP_ADD_TCS(tp)
62 ATF_TP_ADD_TC(tp, first);
63 ATF_TP_ADD_TC(tp, second);
64 ATF_TP_ADD_TC(tp, third);
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Datf_c_test.c44 ATF_TP_ADD_TCS(tp)
47 ATF_TP_ADD_TC(tp, include);
H A Dtp.c37 #include "atf-c/tp.h"
54 find_tc(const atf_tp_t *tp, const char *ident) argument
60 atf_list_for_each_c(iter, &tp->pimpl->m_tcs) {
80 atf_tp_init(atf_tp_t *tp, const char *const *config) argument
86 tp->pimpl = malloc(sizeof(struct atf_tp_impl));
87 if (tp->pimpl == NULL)
90 err = atf_list_init(&tp->pimpl->m_tcs);
94 err = atf_map_init_charpp(&tp->pimpl->m_config, config);
96 atf_list_fini(&tp->pimpl->m_tcs);
106 atf_tp_fini(atf_tp_t *tp) argument
126 atf_tp_get_config(const atf_tp_t *tp) argument
132 atf_tp_has_tc(const atf_tp_t *tp, const char *id) argument
139 atf_tp_get_tc(const atf_tp_t *tp, const char *id) argument
147 atf_tp_get_tcs(const atf_tp_t *tp) argument
180 atf_tp_add_tc(atf_tp_t *tp, atf_tc_t *tc) argument
198 atf_tp_run(const atf_tp_t *tp, const char *tcname, const char *resfile) argument
209 atf_tp_cleanup(const atf_tp_t *tp, const char *tcname) argument
[all...]
H A Dunused_test.c50 ATF_TP_ADD_TCS(tp)
52 ATF_TP_ADD_TC(tp, this_is_used);
53 /* ATF_TP_ADD_TC(tp, this_is_unused); */
H A Dtp_test.c87 HEADER_TC(include, "atf-c/tp.h");
93 ATF_TP_ADD_TCS(tp)
95 ATF_TP_ADD_TC(tp, getopt);
98 ATF_TP_ADD_TC(tp, include);
H A Dpkg_config_test.sh87 cat >tp.c <<EOF
100 ATF_TP_ADD_TCS(tp) {
101 ATF_TP_ADD_TC(tp, tc);
119 atf_check -s eq:0 -o empty -e empty ${cc} ${cflags} -o tp.o -c tp.c
120 atf_check -s eq:0 -o empty -e empty ${cc} ${ldflags} -o tp tp.o ${libs}
138 atf_check -s eq:0 -o empty -e empty test -x tp
140 "LD_LIBRARY_PATH=${libpath} ./tp tc"
H A Dutils_test.c492 ATF_TP_ADD_TCS(tp)
494 ATF_TP_ADD_TC(tp, cat_file__empty);
495 ATF_TP_ADD_TC(tp, cat_file__one_line);
496 ATF_TP_ADD_TC(tp, cat_file__several_lines);
497 ATF_TP_ADD_TC(tp, cat_file__no_newline_eof);
499 ATF_TP_ADD_TC(tp, compare_file__empty__match);
500 ATF_TP_ADD_TC(tp, compare_file__empty__not_match);
501 ATF_TP_ADD_TC(tp, compare_file__short__match);
502 ATF_TP_ADD_TC(tp, compare_file__short__not_match);
503 ATF_TP_ADD_TC(tp, compare_file__long__matc
[all...]
H A Derror_test.c290 ATF_TP_ADD_TCS(tp)
293 ATF_TP_ADD_TC(tp, error_new);
294 ATF_TP_ADD_TC(tp, error_new_wo_memory);
295 ATF_TP_ADD_TC(tp, no_error);
296 ATF_TP_ADD_TC(tp, is_error);
297 ATF_TP_ADD_TC(tp, format);
300 ATF_TP_ADD_TC(tp, libc_new);
301 ATF_TP_ADD_TC(tp, libc_format);
304 ATF_TP_ADD_TC(tp, no_memory_new);
305 ATF_TP_ADD_TC(tp, no_memory_forma
[all...]
/bind-9.6-ESV-R11/lib/isc/
H A Dinet_pton.c85 unsigned char tmp[NS_INADDRSZ], *tp; local
89 *(tp = tmp) = 0;
94 unsigned int new = *tp * 10 + (pch - digits);
96 if (saw_digit && *tp == 0)
100 *tp = new;
109 *++tp = 0;
137 unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
142 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
143 endp = tp + NS_IN6ADDRSZ;
169 colonp = tp;
[all...]
H A Dinet_ntop.c120 char tmp[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")], *tp; local
159 tp = tmp;
165 *tp++ = ':';
170 *tp++ = ':';
175 if (!inet_ntop4(src+12, tp,
176 sizeof(tmp) - (tp - tmp)))
178 tp += strlen(tp);
181 tp += sprintf(tp, "
[all...]
/bind-9.6-ESV-R11/lib/lwres/
H A Dlwinetpton.c84 unsigned char tmp[NS_INADDRSZ], *tp; local
88 *(tp = tmp) = 0;
93 unsigned int new = *tp * 10 + (pch - digits);
97 *tp = new;
108 * *++tp = 0;
110 tp++;
111 *tp = 0;
139 unsigned char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local
144 memset((tp = tmp), '\0', NS_IN6ADDRSZ);
145 endp = tp
[all...]
H A Dlwinetntop.c117 char tmp[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")], *tp; local
158 tp = tmp;
164 *tp++ = ':';
169 *tp++ = ':';
173 if (!inet_ntop4(src+12, tp,
174 sizeof(tmp) - (tp - tmp)))
176 tp += strlen(tp);
179 tp += sprintf(tp, "
[all...]
/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Drefcount.h109 #define isc_refcount_increment0(rp, tp) \
111 unsigned int *_tmp = (unsigned int *)(tp); \
118 #define isc_refcount_increment(rp, tp) \
120 unsigned int *_tmp = (unsigned int *)(tp); \
128 #define isc_refcount_decrement(rp, tp) \
130 unsigned int *_tmp = (unsigned int *)(tp); \
155 #define isc_refcount_increment0(rp, tp) \
157 unsigned int *_tmp = (unsigned int *)(tp); \
165 #define isc_refcount_increment(rp, tp) \
167 unsigned int *_tmp = (unsigned int *)(tp); \
[all...]
/bind-9.6-ESV-R11/unit/atf-src/bootstrap/
H A Dh_tp_basic_c.c75 ATF_TP_ADD_TCS(tp)
77 ATF_TP_ADD_TC(tp, pass);
78 ATF_TP_ADD_TC(tp, fail);
79 ATF_TP_ADD_TC(tp, skip);
80 ATF_TP_ADD_TC(tp, default);
/bind-9.6-ESV-R11/unit/atf-src/test-programs/
H A Dc_helpers.c459 ATF_TP_ADD_TCS(tp)
462 ATF_TP_ADD_TC(tp, cleanup_pass);
463 ATF_TP_ADD_TC(tp, cleanup_fail);
464 ATF_TP_ADD_TC(tp, cleanup_skip);
465 ATF_TP_ADD_TC(tp, cleanup_curdir);
466 ATF_TP_ADD_TC(tp, cleanup_sigterm);
469 ATF_TP_ADD_TC(tp, config_unset);
470 ATF_TP_ADD_TC(tp, config_empty);
471 ATF_TP_ADD_TC(tp, config_value);
472 ATF_TP_ADD_TC(tp, config_multi_valu
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Denv_test.c108 ATF_TP_ADD_TCS(tp)
110 ATF_TP_ADD_TC(tp, has);
111 ATF_TP_ADD_TC(tp, get);
112 ATF_TP_ADD_TC(tp, set);
113 ATF_TP_ADD_TC(tp, unset);
H A Duser_test.c141 ATF_TP_ADD_TCS(tp)
143 ATF_TP_ADD_TC(tp, euid);
144 ATF_TP_ADD_TC(tp, is_member_of_group);
145 ATF_TP_ADD_TC(tp, is_root);
146 ATF_TP_ADD_TC(tp, is_unprivileged);
H A Dprocess_test.c1101 ATF_TP_ADD_TCS(tp)
1104 ATF_TP_ADD_TC(tp, stream_init_capture);
1105 ATF_TP_ADD_TC(tp, stream_init_connect);
1106 ATF_TP_ADD_TC(tp, stream_init_inherit);
1107 ATF_TP_ADD_TC(tp, stream_init_redirect_fd);
1108 ATF_TP_ADD_TC(tp, stream_init_redirect_path);
1111 ATF_TP_ADD_TC(tp, status_exited);
1112 ATF_TP_ADD_TC(tp, status_signaled);
1113 ATF_TP_ADD_TC(tp, status_coredump);
1116 ATF_TP_ADD_TC(tp, child_pi
[all...]
/bind-9.6-ESV-R11/lib/isc/nothreads/include/isc/
H A Dcondition.h47 #define isc_condition_waituntil(cp, mp, tp) \
48 ((void)(cp), (void)(mp), (void)(tp), ISC_R_NOTIMPLEMENTED)
/bind-9.6-ESV-R11/lib/isc/tests/
H A Dsafe_test.c48 ATF_TP_ADD_TCS(tp) {
49 ATF_TP_ADD_TC(tp, isc_safe_memcmp);
/bind-9.6-ESV-R11/unit/atf-src/atf-report/
H A Dintegration_test.sh49 tp: dir1
50 tp: tp3
51 tp: tp4
52 tp: tp5
60 tp: tp1
61 tp: tp2
114 tp: expect_helpers
137 tp, #.#, expect_helpers, failed
261 tp, #.#, dir1/tp1, passed
263 tp, #
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dpkg_config_test.sh88 cat >tp.cpp <<EOF
119 atf_check -s eq:0 -o empty -e empty ${cxx} ${cxxflags} -o tp.o -c tp.cpp
120 atf_check -s eq:0 -o empty -e empty ${cxx} ${ldflags} -o tp tp.o ${libs}
138 atf_check -s eq:0 -o empty -e empty test -x tp
140 "LD_LIBRARY_PATH=${libpath} ./tp tc"
/bind-9.6-ESV-R11/lib/dns/tests/
H A Dnsec3_test.c81 ATF_TP_ADD_TCS(tp) {
82 ATF_TP_ADD_TC(tp, max_iterations);

Completed in 1714 milliseconds

123