Searched refs:supported_methods (Results 1 – 1 of 1) sorted by relevance
195 } supported_methods[] = { in ParseMethodAndPath() local202 for (size_t i = 0; i < ARRAYSIZE(supported_methods); ++i) { in ParseMethodAndPath()203 if (len > supported_methods[i].method_name_len && in ParseMethodAndPath()204 isspace(begin[supported_methods[i].method_name_len]) && in ParseMethodAndPath()205 strncmp(begin, supported_methods[i].method_name, in ParseMethodAndPath()206 supported_methods[i].method_name_len) == 0) { in ParseMethodAndPath()207 method_ = supported_methods[i].id; in ParseMethodAndPath()208 path = begin + supported_methods[i].method_name_len; in ParseMethodAndPath()