Searched refs:t1 (Results 1 - 23 of 23) sorted by relevance

/bind-9.6-ESV-R11/bin/tests/
H A Dtask_test.c64 isc_task_t *t1 = NULL, *t2 = NULL; local
87 RUNTIME_CHECK(isc_task_create(manager, 0, &t1) == ISC_R_SUCCESS);
92 RUNTIME_CHECK(isc_task_onshutdown(t1, my_shutdown, "1") ==
107 &interval, t1, my_tick, "foo", &ti1) ==
116 printf("task 1 = %p\n", t1);
130 isc_task_send(t1, &event);
133 isc_task_send(t1, &event);
136 isc_task_send(t1, &event);
139 isc_task_send(t1, &event);
142 isc_task_send(t1,
[all...]
H A Dtimer_test.c33 isc_task_t *t1, *t2, *t3; variable
120 RUNTIME_CHECK(isc_task_create(manager, 0, &t1) ==
126 RUNTIME_CHECK(isc_task_onshutdown(t1, shutdown_task, "1") ==
133 printf("task 1: %p\n", t1);
146 &interval, t1, tick, "1", &ti1) ==
157 isc_task_detach(&t1);
H A Dsock_test.c252 isc_task_t *t1, *t2; local
300 t1 = NULL;
301 RUNTIME_CHECK(isc_task_create(manager, 0, &t1) == ISC_R_SUCCESS);
304 RUNTIME_CHECK(isc_task_onshutdown(t1, my_shutdown, "1") ==
309 printf("task 1 = %p\n", t1);
336 RUNTIME_CHECK(isc_socket_accept(so1, t1, my_listen, "so1")
342 &interval, t1, timeout, so1, &ti1) ==
366 isc_task_detach(&t1);
H A Dshutdown_test.c171 t_info *t1, *t2; local
196 t1 = new_task(mctx, NULL);
198 isc_task_attach(t2->task, &t1->peer);
199 isc_task_attach(t1->task, &t2->peer);
H A Dadb_test.c62 static isc_task_t *t1, *t2; variable
346 t1 = NULL;
347 result = isc_task_create(taskmgr, 0, &t1);
348 check_result(result, "isc_task_create t1");
353 printf("task 1 = %p\n", t1);
404 isc_task_detach(&t1);
H A Ddb_test.c361 char t1[256]; local
766 isc_buffer_init(&tb1, t1, sizeof(t1));
843 isc_buffer_init(&tb1, t1, sizeof(t1));
/bind-9.6-ESV-R11/lib/isc/unix/
H A Dtime.c239 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2) { argument
240 REQUIRE(t1 != NULL && t2 != NULL);
241 INSIST(t1->nanoseconds < NS_PER_S && t2->nanoseconds < NS_PER_S);
243 if (t1->seconds < t2->seconds)
245 if (t1->seconds > t2->seconds)
247 if (t1->nanoseconds < t2->nanoseconds)
249 if (t1->nanoseconds > t2->nanoseconds)
305 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2) { argument
308 REQUIRE(t1 != NULL && t2 != NULL);
309 INSIST(t1
[all...]
/bind-9.6-ESV-R11/lib/isc/unix/include/isc/
H A Dtime.h179 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2);
181 * Compare the times referenced by 't1' and 't2'
185 *\li 't1' and 't2' are valid pointers.
189 *\li -1 t1 < t2 (comparing times, not pointers)
190 *\li 0 t1 = t2
191 *\li 1 t1 > t2
227 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2);
229 * Find the difference in microseconds between time t1 and time t2.
230 * t2 is the subtrahend of t1; ie, difference = t1
[all...]
/bind-9.6-ESV-R11/lib/isc/win32/include/isc/
H A Dtime.h166 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2);
168 * Compare the times referenced by 't1' and 't2'
172 * 't1' and 't2' are valid pointers.
176 * -1 t1 < t2 (comparing times, not pointers)
177 * 0 t1 = t2
178 * 1 t1 > t2
214 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2);
216 * Find the difference in milliseconds between time t1 and time t2.
217 * t2 is the subtrahend of t1; ie, difference = t1
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dauto_array_test.cpp120 auto_array< test_array > t1(new test_array[10]);
124 auto_array< test_array > t2(t1);
144 auto_array< test_array > t1(new test_array[10]);
148 auto_array< test_array > t2 = test_array::do_copy(t1);
230 auto_array< test_array > t1(new test_array[10]);
235 t2 = t1;
256 auto_array< test_array > t1(new test_array[10]);
261 t2 = test_array::do_copy(t1);
H A Dparser.hpp457 parser< TKZ >::expect(const token_type& t1, argument
462 if (t.type() != t1)
472 parser< TKZ >::expect(const token_type& t1, argument
478 if (t.type() != t1 && t.type() != t2)
488 parser< TKZ >::expect(const token_type& t1, argument
495 if (t.type() != t1 && t.type() != t2 && t.type() != t3)
505 parser< TKZ >::expect(const token_type& t1, argument
513 if (t.type() != t1 && t.type() != t2 && t.type() != t3 &&
524 parser< TKZ >::expect(const token_type& t1, argument
535 if (t.type() != t1
547 expect(const token_type& t1, const token_type& t2, const token_type& t3, const token_type& t4, const token_type& t5, const token_type& t6, const token_type& t7, const token_type& t8, const std::string& textual) argument
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dfs_test.cpp71 atf::fs::path t1("non-existent");
78 t1 = td1.get_path();
80 ATF_REQUIRE(t1.str().find("XXXXXX") == std::string::npos);
82 ATF_REQUIRE(t1 != t2);
84 ATF_REQUIRE( atf::fs::exists(t1));
87 atf::fs::file_info fi1(t1);
110 ATF_REQUIRE(t1.str() != "non-existent");
111 ATF_REQUIRE(!atf::fs::exists(t1));
/bind-9.6-ESV-R11/lib/isc/win32/
H A Dtime.c156 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2) { argument
157 REQUIRE(t1 != NULL && t2 != NULL);
159 return ((int)CompareFileTime(&t1->absolute, &t2->absolute));
205 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2) { argument
209 REQUIRE(t1 != NULL && t2 != NULL);
211 i1.LowPart = t1->absolute.dwLowDateTime;
212 i1.HighPart = t1->absolute.dwHighDateTime;
/bind-9.6-ESV-R11/bin/tests/mem/
H A Dt_mem.c189 t1(void) { function
205 { t1, "basic memory subsystem" },
/bind-9.6-ESV-R11/bin/tests/sockaddr/
H A Dt_sockaddr.c64 t1(void) { function
133 { t1, "isc_sockaddr_eqaddrprefix" },
/bind-9.6-ESV-R11/bin/tests/master/
H A Dt_master.c185 t1(void) { function
322 { t1, "ISC_R_SUCCESS" },
/bind-9.6-ESV-R11/bin/tests/hashes/
H A Dt_hashes.c430 t1(void) function
465 { t1, "hashes" },
/bind-9.6-ESV-R11/lib/isc/
H A Dtimer.c744 isc_timer_t *t1, *t2; local
746 t1 = v1;
748 REQUIRE(VALID_TIMER(t1));
751 if (isc_time_compare(&t1->due, &t2->due) < 0)
/bind-9.6-ESV-R11/bin/tests/dst/
H A Dt_dst.c360 t1(void) { function
836 * The astute observer will note that t1() signs then verifies data
948 { t1, "basic dst module verification" },
/bind-9.6-ESV-R11/bin/tests/timers/
H A Dt_timers.c365 t1(void) { function
1122 { t1, "timer_create" },
/bind-9.6-ESV-R11/bin/tests/rbt/
H A Dt_rbt.c516 t1() { function
1853 { t1, "dns_rbt_create" },
/bind-9.6-ESV-R11/bin/tests/tasks/
H A Dt_tasks.c380 t1(void) { function
2350 { t1, "basic task subsystem" },
/bind-9.6-ESV-R11/bin/tests/db/
H A Dt_db.c264 t1(void) { function
3121 { t1, "dns_db_load" },

Completed in 3827 milliseconds