Searched defs:t1 (Results 1 - 20 of 20) sorted by relevance

/bind-9.11.3/bin/tests/
H A Dtask_test.c63 isc_task_t *t1 = NULL, *t2 = NULL; local
86 RUNTIME_CHECK(isc_task_create(manager, 0, &t1) == ISC_R_SUCCESS);
91 RUNTIME_CHECK(isc_task_onshutdown(t1, my_shutdown, one) ==
106 &interval, t1, my_tick, foo, &ti1) ==
115 printf("task 1 = %p\n", t1);
133 isc_task_send(t1, &event);
136 isc_task_send(t1, &event);
139 isc_task_send(t1, &event);
142 isc_task_send(t1, &event);
145 isc_task_send(t1,
[all...]
H A Dtimer_test.c25 isc_task_t *t1, *t2, *t3; variable
116 RUNTIME_CHECK(isc_task_create(manager, 0, &t1) ==
122 RUNTIME_CHECK(isc_task_onshutdown(t1, shutdown_task, one) ==
129 printf("task 1: %p\n", t1);
142 &interval, t1, tick, one, &ti1) ==
153 isc_task_detach(&t1);
H A Dshutdown_test.c164 t_info *t1, *t2; local
189 t1 = new_task(mctx, NULL);
191 isc_task_attach(t2->task, &t1->peer);
192 isc_task_attach(t1->task, &t2->peer);
H A Dadb_test.c54 static isc_task_t *t1, *t2; variable
339 t1 = NULL;
340 result = isc_task_create(taskmgr, 0, &t1);
341 check_result(result, "isc_task_create t1");
346 printf("task 1 = %p\n", t1);
397 isc_task_detach(&t1);
H A Dsock_test.c260 isc_task_t *t1, *t2; local
308 t1 = NULL;
309 RUNTIME_CHECK(isc_task_create(manager, 0, &t1) == ISC_R_SUCCESS);
312 RUNTIME_CHECK(isc_task_onshutdown(t1, my_shutdown, one) ==
317 printf("task 1 = %p\n", t1);
344 RUNTIME_CHECK(isc_socket_accept(so1, t1, my_listen, xso1)
350 &interval, t1, timeout, so1, &ti1) ==
374 isc_task_detach(&t1);
H A Ddb_test.c353 char t1[256]; local
755 isc_buffer_init(&tb1, t1, sizeof(t1));
832 isc_buffer_init(&tb1, t1, sizeof(t1));
/bind-9.11.3/bin/tests/mem/
H A Dt_mem.c180 t1(void) { function
196 { (PFV) t1, "basic memory subsystem" },
/bind-9.11.3/bin/tests/sockaddr/
H A Dt_sockaddr.c55 t1(void) { function
124 { (PFV) t1, "isc_sockaddr_eqaddrprefix" },
/bind-9.11.3/lib/isc/unix/
H A Dtime.c234 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2) { argument
235 REQUIRE(t1 != NULL && t2 != NULL);
236 INSIST(t1->nanoseconds < NS_PER_S && t2->nanoseconds < NS_PER_S);
238 if (t1->seconds < t2->seconds)
240 if (t1->seconds > t2->seconds)
242 if (t1->nanoseconds < t2->nanoseconds)
244 if (t1->nanoseconds > t2->nanoseconds)
300 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2) { argument
303 REQUIRE(t1 != NULL && t2 != NULL);
304 INSIST(t1
[all...]
/bind-9.11.3/lib/isc/win32/
H A Dtime.c149 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2) { argument
150 REQUIRE(t1 != NULL && t2 != NULL);
152 return ((int)CompareFileTime(&t1->absolute, &t2->absolute));
198 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2) { argument
202 REQUIRE(t1 != NULL && t2 != NULL);
204 i1.LowPart = t1->absolute.dwLowDateTime;
205 i1.HighPart = t1->absolute.dwHighDateTime;
/bind-9.11.3/bin/tests/master/
H A Dt_master.c177 t1(void) { function
314 { (PFV) t1, "ISC_R_SUCCESS" },
/bind-9.11.3/bin/tests/timers/
H A Dt_timers.c355 t1(void) { function
1110 { (PFV) t1, "timer_create" },
/bind-9.11.3/bin/tests/dst/
H A Dt_dst.c417 t1(void) { function
910 * The astute observer will note that t1() signs then verifies data
1031 { (PFV) t1, "basic dst module verification" },
/bind-9.11.3/unit/atf-src/tools/
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.11.3/lib/isc/
H A Dtimer.c825 isc__timer_t *t1, *t2; local
827 t1 = v1;
829 REQUIRE(VALID_TIMER(t1));
832 if (isc_time_compare(&t1->due, &t2->due) < 0)
/bind-9.11.3/bin/tests/hashes/
H A Dt_hashes.c440 t1(void) function
482 { (PFV) t1, "hashes" },
/bind-9.11.3/bin/tests/db/
H A Dt_db.c255 t1(void) { function
3106 { (PFV) t1, "dns_db_load" },
/bind-9.11.3/bin/tests/rbt/
H A Dt_rbt.c508 t1() { function
1843 { (PFV) t1, "dns_rbt_create" },
/bind-9.11.3/bin/tests/tasks/
H A Dt_tasks.c386 t1(void) { function
2365 { (PFV) t1, "basic task subsystem" },
/bind-9.11.3/bin/named/
H A Dstatschannel.c2990 time_t t1, t2; local
2996 result = isc_time_secondsastimet(&when, &t1);
3005 if (t1 < t2)

Completed in 45 milliseconds