Searched refs:strtok_r (Results 1 - 25 of 46) sorted by relevance

12

/macosx-10.10/curl-83.1.2/curl/lib/
H A Dstrtok.h29 #define strtok_r Curl_strtok_r macro
H A Dnetrc.c125 tok=strtok_r(netrcbuffer, " \t\n", &tok_buf);
192 tok = strtok_r(NULL, " \t\n", &tok_buf);
H A Dhttp_digest.c187 clone of the buffer since strtok_r() ruins it */
191 token = strtok_r(tmp, ",", &tok_buf);
199 token = strtok_r(NULL, ",", &tok_buf);
H A Dcurl_sasl.c100 strtok_r() ruins it. */
105 token = strtok_r(tmp, ",", &tok_buf);
114 token = strtok_r(NULL, ",", &tok_buf);
/macosx-10.10/Libc-1044.1.2/string/FreeBSD/
H A Dstrtok.c4 * strtok_r, from Berkeley strtok
49 __weak_reference(__strtok_r, strtok_r);
124 for (word = strtok_r(test, sep, &brkt); word;
125 word = strtok_r(NULL, sep, &brkt)) {
128 for (phrase = strtok_r(blah, sep, &brkb); phrase;
129 phrase = strtok_r(NULL, sep, &brkb))
/macosx-10.10/Heimdal-398.1.2/lib/wind/
H A Dtest-normalize.c55 for(n = strtok_r(buf, " ", &last);
57 n = strtok_r(NULL, " ", &last)) {
95 c = strtok_r(buf, ";", &last);
100 if (strtok_r(NULL, ";", &last) == NULL)
102 if (strtok_r(NULL, ";", &last) == NULL)
104 c = strtok_r(NULL, ";", &last);
108 if (strtok_r(NULL, ";", &last) == NULL)
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dstrtok_r.c43 strtok_r(char *s1, const char *s2, char **lasts) function
H A Droken_gethostby.c185 p = strtok_r(p, " \t\r\n", &foo);
201 while((p = strtok_r(NULL, " \t\r\n", &foo)) && num_addrs < MAX_ADDRS) {
/macosx-10.10/Heimdal-398.1.2/appl/login/
H A Dlogin_access.c100 if (!(perm = strtok_r(line, fs, &foo))
101 || !(users = strtok_r(NULL, fs, &foo))
102 || !(froms = strtok_r(NULL, fs, &foo))
103 || strtok_r(NULL, fs, &foo)) {
143 for (tok = strtok_r(list, sep, &foo);
145 tok = strtok_r(NULL, sep, &foo)) {
154 while ((tok = strtok_r(NULL, sep, &foo)) && strcasecmp(tok, "EXCEPT"))
H A Dlimits_conf.c143 if((args[0] = strtok_r(buf, " \t", &last)) == NULL ||
144 (args[1] = strtok_r(NULL, " \t", &last)) == NULL ||
145 (args[2] = strtok_r(NULL, " \t", &last)) == NULL ||
146 (args[3] = strtok_r(NULL, " \t", &last)) == NULL) {
/macosx-10.10/Heimdal-398.1.2/lib/asn1/
H A Dasn1_gen.c88 class = strtok_r(ptr, " \t\n", &foo);
90 type = strtok_r(NULL, " \t\n", &foo);
92 tag = strtok_r(NULL, " \t\n", &foo);
94 length = strtok_r(NULL, " \t\n", &foo);
96 data = strtok_r(NULL, " \t\n", &foo);
H A Dder_format.c147 for (w = strtok_r(s, sep, &brkt);
149 w = strtok_r(NULL, sep, &brkt)) {
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dstring_.h298 See also strtok_r(). */
356 x = strtok_r(s, "-", &sp); // x = "abc", sp = "=-def"
357 x = strtok_r(NULL, "-=", &sp); // x = "def", sp = NULL
358 x = strtok_r(NULL, "=", &sp); // x = NULL
375 extern char *strtok_r (char *restrict s, char const *restrict delim,
379 # undef strtok_r macro
380 # define strtok_r(s,d,p) \ macro
381 (GL_LINK_WARNING ("strtok_r cannot work correctly on character strings " \
384 strtok_r (s, d, p))
387 # undef strtok_r macro
388 # define strtok_r macro
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/kadm5/
H A Dacl.c99 p = strtok_r(buf, " \t\n", &foo);
113 p = strtok_r(NULL, " \t\n", &foo);
119 p = strtok_r(NULL, " \t\n", &foo);
/macosx-10.10/OpenSSH-189/osslshim/heimdal-asn1/
H A Dasn1-der_format.c173 for (w = strtok_r(s, sep, &brkt);
175 w = strtok_r(NULL, sep, &brkt)) {
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Dfmtmsg.c226 retval = strtok_r(lmsgverb, ":", &state);
228 retval = strtok_r(NULL, ":", &state);
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c/detail/
H A Dtext.c56 str2 = strtok_r(str, sep, &last);
59 str2 = strtok_r(NULL, sep, &last);
/macosx-10.10/Heimdal-398.1.2/lib/kafs/
H A Dafssys.c488 for (p = strtok_r (s, ",", &end);
490 p = strtok_r (NULL, ",", &end)) {
541 pioctl_name = strtok_r (env, ", \t", &pos);
543 setpag_name = strtok_r (NULL, ", \t", &pos);
/macosx-10.10/bind9-45.101/bind9/contrib/dlz/example/
H A Ddlz_example.c427 full_name = strtok_r(buf, "\t", &saveptr);
429 ttlstr = strtok_r(NULL, "\t", &saveptr);
431 dclass = strtok_r(NULL, "\t", &saveptr);
433 type = strtok_r(NULL, "\t", &saveptr);
435 data = strtok_r(NULL, "\t", &saveptr);
/macosx-10.10/Libc-1044.1.2/include/
H A Dstring.h112 char *strtok_r(char *, const char *, char **);
/macosx-10.10/Security-57031.1.35/Security/sec/SOSCircle/Tool/
H A Dkeychain_sync.c240 char *token0 = strtok_r(labelAndPassword, ":", &last);
241 char *token1 = strtok_r(NULL, "", &last);
255 char *token0 = strtok_r(labelAndPassword, ":", &last);
256 char *token1 = strtok_r(NULL, "", &last);
/macosx-10.10/libutil-38/
H A Dgetmntopts.c153 for (opt = mp->optbuf; (opt = strtok_r(opt, ",", &ctx)) != NULL; opt = NULL) {
/macosx-10.10/Heimdal-398.1.2/appl/ftp/ftpd/
H A Dpopen.c130 if (!(argv[argc++] = strtok_r(cp, " \t\n", &foo)))
/macosx-10.10/Libc-1044.1.2/fbsdcompat/
H A D_fbsd_compat_.h166 #define __strtok_r strtok_r
/macosx-10.10/Heimdal-398.1.2/kdc/
H A Dconnect.c181 p = strtok_r(str_copy, " \t", &pos);
206 p = strtok_r(NULL, " \t", &pos);

Completed in 184 milliseconds

12