Home
last modified time | relevance | path

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

/netbsd-src/usr.sbin/inetd/
H A Dparse.c1233 char *full_pattern; in read_glob_configs() local
1235 full_pattern = gen_file_pattern(CONFIG, pattern); in read_glob_configs()
1237 DPRINTCONF("Found include directive '%s'", full_pattern); in read_glob_configs()
1239 glob_result = glob(full_pattern, GLOB_NOSORT, glob_error, &results); in read_glob_configs()
1249 DPRINTCONF("No files matched pattern '%s'", full_pattern); in read_glob_configs()
1259 free(full_pattern); in read_glob_configs()
1360 char *full_pattern = malloc(last + 1 + strlen(pattern) + 1); in gen_file_pattern() local
1361 if (full_pattern == NULL) { in gen_file_pattern()
1365 memcpy(full_pattern, cur_config, last); in gen_file_pattern()
1366 full_pattern[last] = '/'; in gen_file_pattern()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest-port.cc742 char* const full_pattern = new char[full_regex_len]; in Init() local
744 snprintf(full_pattern, full_regex_len, "^(%s)$", regex); in Init()
745 is_valid_ = regcomp(&full_regex_, full_pattern, REG_EXTENDED) == 0; in Init()
762 delete[] full_pattern; in Init()