Searched refs:substrs (Results 1 - 1 of 1) sorted by relevance

/openjdk9/hotspot/test/native/logging/
H A DlogTestUtils.inline.hpp106 static bool file_contains_substrings_in_order(const char* filename, const char* substrs[]) { argument
111 while (substrs[idx] != NULL) {
117 for (char* match = strstr(line, substrs[idx]); match != NULL;) {
118 size_t match_len = strlen(substrs[idx]);
120 if (substrs[idx] == NULL) {
123 match = strstr(match + match_len, substrs[idx]);
128 return substrs[idx] == NULL;

Completed in 85 milliseconds