Searched refs:STRTOK_R (Results 1 - 3 of 3) sorted by relevance
/bind-9.11.3/contrib/dlz/example/ |
H A D | dlz_example.c | 31 #define STRTOK_R(a, b, c) strtok_s(a, b, c) macro 33 #define STRTOK_R(a, b, c) strtok_r(a, b, c) macro 35 #define STRTOK_R(a, b, c) strtok(a, b) macro 678 full_name = STRTOK_R(buf, "\t", &saveptr); 682 ttlstr = STRTOK_R(NULL, "\t", &saveptr); 686 dclass = STRTOK_R(NULL, "\t", &saveptr); 690 type = STRTOK_R(NULL, "\t", &saveptr); 694 data = STRTOK_R(NULL, "\t", &saveptr);
|
/bind-9.11.3/bin/tests/system/dlzexternal/ |
H A D | driver.c | 32 #define STRTOK_R(a, b, c) strtok_s(a, b, c) macro 34 #define STRTOK_R(a, b, c) strtok_r(a, b, c) macro 36 #define STRTOK_R(a, b, c) strtok(a, b) macro 726 full_name = STRTOK_R(buf, "\t", &saveptr); 730 ttlstr = STRTOK_R(NULL, "\t", &saveptr); 734 dclass = STRTOK_R(NULL, "\t", &saveptr); 738 type = STRTOK_R(NULL, "\t", &saveptr); 742 data = STRTOK_R(NULL, "\t", &saveptr);
|
/bind-9.11.3/contrib/dlz/modules/mysqldyn/ |
H A D | dlz_mysqldyn_mod.c | 183 #define STRTOK_R(a, b, c) strtok_s(a, b, c) macro 185 #define STRTOK_R(a, b, c) strtok_r(a, b, c) macro 187 #define STRTOK_R(a, b, c) strtok(a, b) macro 840 real_name = STRTOK_R(buf, "\t", &saveptr); 844 ttlstr = STRTOK_R(NULL, "\t", &saveptr); 848 dclass = STRTOK_R(NULL, "\t", &saveptr); 852 type = STRTOK_R(NULL, "\t", &saveptr); 856 data = STRTOK_R(NULL, "\t", &saveptr);
|
Completed in 27 milliseconds