Searched refs:next_token (Results 1 – 2 of 2) sorted by relevance
/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
D | realpath.c | 58 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; in realpath() local 113 if (s - left >= sizeof(next_token)) { in realpath() 119 memcpy(next_token, left, s - left); in realpath() 120 next_token[s - left] = '\0'; in realpath() 134 if (next_token[0] == '\0') { in realpath() 138 else if (strcmp(next_token, ".") == 0) in realpath() 140 else if (strcmp(next_token, "..") == 0) { in realpath() 157 resolved_len = strlcat(resolved, next_token, PATH_MAX); in realpath()
|
/bionic/linker/ |
D | linker_config.cpp | 64 int next_token(std::string* name, std::string* value, std::string* error_msg) { in next_token() function in ConfigParser 180 int result = cp.next_token(&name, &value, &error); in parse_config_file() 228 int result = cp.next_token(&name, &value, &error); in parse_config_file() 248 int result = cp.next_token(&name, &value, &error); in parse_config_file()
|