next_token        113 lib/util/charset/charset.h bool next_token(const char **ptr,char *buff, const char *sep, size_t bufsize);
next_token        118 lib/util/charset/tests/charset.c 	torture_assert(tctx, !next_token(NULL, buf, " ", 20), "null ptr works");
next_token        126 lib/util/charset/tests/charset.c 	torture_assert(tctx, next_token(&teststr, buf, " ", 20), "finding token works");
next_token        130 lib/util/charset/tests/charset.c 	torture_assert(tctx, next_token(&teststr, buf, " ", 20), "finding token works");
next_token        134 lib/util/charset/tests/charset.c 	torture_assert(tctx, next_token(&teststr, buf, " ", 20), "finding token works");
next_token        138 lib/util/charset/tests/charset.c 	torture_assert(tctx, !next_token(&teststr, buf, " ", 20), "finding token doesn't work");
next_token        146 lib/util/charset/tests/charset.c 	torture_assert(tctx, next_token(&teststr, buf, NULL, 20), "finding token works");
next_token        150 lib/util/charset/tests/charset.c 	torture_assert(tctx, next_token(&teststr, buf, NULL, 20), "finding token works");
next_token        154 lib/util/charset/tests/charset.c 	torture_assert(tctx, next_token(&teststr, buf, NULL, 20), "finding token works");
next_token        158 lib/util/charset/tests/charset.c 	torture_assert(tctx, !next_token(&teststr, buf, NULL, 20), "finding token doesn't work");
next_token        166 lib/util/charset/tests/charset.c 	torture_assert(tctx, next_token(&teststr, buf, ",", 20), "finding token works");
next_token        170 lib/util/charset/tests/charset.c 	torture_assert(tctx, !next_token(&teststr, buf, ",", 20), "finding token doesn't work");
next_token        178 lib/util/charset/tests/charset.c 	torture_assert(tctx, next_token(&teststr, buf, " ", 20), "finding token works");
next_token        182 lib/util/charset/tests/charset.c 	torture_assert(tctx, next_token(&teststr, buf, " ", 20), "finding token works");
next_token        186 lib/util/charset/tests/charset.c 	torture_assert(tctx, !next_token(&teststr, buf, " ", 20), "finding token doesn't work");
next_token        194 lib/util/charset/tests/charset.c 	torture_assert(tctx, next_token(&teststr, buf, " ", 20), "finding token works");
next_token        198 lib/util/charset/tests/charset.c 	torture_assert(tctx, !next_token(&teststr, buf, " ", 20), "finding token doesn't work");
next_token        408 nsswitch/wbinfo4.c 		while(next_token(&extra_data, name, "\n", sizeof(fstring))) {
next_token        959 nsswitch/wbinfo4.c 	while(next_token(&extra_data, name, ",", sizeof(fstring)))
next_token        997 nsswitch/wbinfo4.c 	while(next_token(&extra_data, name, ",", sizeof(fstring)))
next_token       1431 source3/include/proto.h bool next_token(const char **ptr, char *buff, const char *sep, size_t bufsize);
next_token        292 source4/torture/winbind/struct_based.c 	while (next_token(&extra_data, line, "\n", sizeof(line))) {
next_token        597 source4/torture/winbind/struct_based.c 	    next_token(&extra_data, name, ",", sizeof(name));
next_token        647 source4/torture/winbind/struct_based.c 	    next_token(&extra_data, name, ",", sizeof(name));
next_token        702 source4/torture/winbind/struct_based.c 	while (next_token(&extra_data, line, "\n", sizeof(line))) {
next_token        355 source4/utils/ntlm_auth.c 	while (next_token(&p, tok, LIST_SEP, tok_len)) {