Home | History | Annotate | Download | only in HttpDxe

Lines Matching full:searchstring

23   and returns the first occurrence of SearchString and ignore case during the search process.
24 If SearchString is not found in String, then NULL is returned. If the length of SearchString
28 If SearchString is NULL, then ASSERT().
31 @param[in] SearchString A pointer to a Null-terminated ASCII string to search for.
33 @retval NULL If the SearchString does not appear in String.
35 If the length of SearchString is zero,return String.
41 IN CONST CHAR8 *SearchString
54 ASSERT (AsciiStrSize (SearchString) != 0);
56 if (*SearchString == '\0') {
61 SearchStringTmp = SearchString;