Home
last modified time | relevance | path

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

/hardware/interfaces/confirmationui/support/src/
DConfirmationUITranslations.c1079 static int ConfirmationUITranslations_find_str(const char** haystack, const char* needle) { in ConfirmationUITranslations_find_str() argument
1081 if (strcmp(needle, haystack[n]) == 0) { in ConfirmationUITranslations_find_str()
/hardware/broadcom/wlan/bcmdhd/dhdutil/
Dbcmutils.c809 bcmstrstr(const char *haystack, const char *needle) in bcmstrstr() argument
814 if ((haystack == NULL) || (needle == NULL)) in bcmstrstr()
817 nlen = strlen(needle); in bcmstrstr()
821 if (memcmp(needle, &haystack[i], nlen) == 0) in bcmstrstr()