Home
last modified time | relevance | path

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

/freebsd/crypto/heimdal/lib/krb5/
H A Dexpand_path.c407 const char *path_left; in _krb5_expand_path_tokens() local
417 for (path_left = path_in; path_left && *path_left; ) { in _krb5_expand_path_tokens()
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()
449 path_left = tok_end + 1; in _krb5_expand_path_tokens()
452 append = strdup(path_left); in _krb5_expand_path_tokens()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp1932 std::set<clang::DeclContext *> path_left; in FindLCABetweenDecls() local
1934 path_left.insert(d); in FindLCABetweenDecls()
1937 if (path_left.find(d) != path_left.end()) in FindLCABetweenDecls()