/bind-9.11.3/bin/tests/ |
H A D | task_test.c | 63 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 D | timer_test.c | 25 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 D | shutdown_test.c | 164 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 D | adb_test.c | 54 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 D | sock_test.c | 260 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 D | db_test.c | 353 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 D | t_mem.c | 180 t1(void) { function 196 { (PFV) t1, "basic memory subsystem" },
|
/bind-9.11.3/bin/tests/sockaddr/ |
H A D | t_sockaddr.c | 55 t1(void) { function 124 { (PFV) t1, "isc_sockaddr_eqaddrprefix" },
|
/bind-9.11.3/lib/isc/unix/ |
H A D | time.c | 234 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 D | time.c | 149 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 D | t_master.c | 177 t1(void) { function 314 { (PFV) t1, "ISC_R_SUCCESS" },
|
/bind-9.11.3/bin/tests/timers/ |
H A D | t_timers.c | 355 t1(void) { function 1110 { (PFV) t1, "timer_create" },
|
/bind-9.11.3/bin/tests/dst/ |
H A D | t_dst.c | 417 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 D | parser.hpp | 457 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 D | timer.c | 825 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 D | t_hashes.c | 440 t1(void) function 482 { (PFV) t1, "hashes" },
|
/bind-9.11.3/bin/tests/db/ |
H A D | t_db.c | 255 t1(void) { function 3106 { (PFV) t1, "dns_db_load" },
|
/bind-9.11.3/bin/tests/rbt/ |
H A D | t_rbt.c | 508 t1() { function 1843 { (PFV) t1, "dns_rbt_create" },
|
/bind-9.11.3/bin/tests/tasks/ |
H A D | t_tasks.c | 386 t1(void) { function 2365 { (PFV) t1, "basic task subsystem" },
|
/bind-9.11.3/bin/named/ |
H A D | statschannel.c | 2990 time_t t1, t2; local 2996 result = isc_time_secondsastimet(&when, &t1); 3005 if (t1 < t2)
|