Home
last modified time | relevance | path

Searched refs:tok_begin (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/heimdal/lib/krb5/
H A Dexpand_path.c406 char *tok_begin, *tok_end, *append; in _krb5_expand_path_tokens() local
419 tok_begin = strstr(path_left, "%{"); in _krb5_expand_path_tokens()
421 if (tok_begin && tok_begin != path_left) { in _krb5_expand_path_tokens()
423 append = malloc((tok_begin - path_left) + 1); in _krb5_expand_path_tokens()
425 memcpy(append, path_left, tok_begin - path_left); in _krb5_expand_path_tokens()
426 append[tok_begin - path_left] = '\0'; in _krb5_expand_path_tokens()
428 path_left = tok_begin; in _krb5_expand_path_tokens()
430 } else if (tok_begin) { in _krb5_expand_path_tokens()
432 tok_end = strchr(tok_begin, '}'); in _krb5_expand_path_tokens()
442 if (_expand_token(context, tok_begin, tok_end, &append)) { in _krb5_expand_path_tokens()
/freebsd/crypto/openssl/crypto/
H A Ds390xcap.c33 (sscanf(tok_begin, \
52 (sscanf(tok_begin, \
673 char *tok_begin, *tok_end, *buff, tok[S390X_STFLE_MAX][LEN + 1]; in parse_env() local
684 tok_begin = buff + strspn(buff, ";"); in parse_env()
685 strtok(tok_begin, ";"); in parse_env()
688 while (tok_begin != NULL) { in parse_env()
690 if ((n = sscanf(tok_begin, in parse_env()
730 while (*tok_begin != '\0') { in parse_env()
731 if (!ossl_isspace(*tok_begin)) in parse_env()
733 tok_begin++; in parse_env()
[all …]