Home
last modified time | relevance | path

Searched refs:haystack (Results 1 – 7 of 7) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/
H A D0008-Define-glibc-compatible-basename-for-non-glibc-syste.patch29 static inline char* strstr_ptr(const char *haystack, const char *needle) {
30 if (!haystack || !needle)
/openbmc/openbmc/poky/meta/recipes-core/systemd/systemd/
H A D0008-Define-glibc-compatible-basename-for-non-glibc-syste.patch29 static inline char* strstr_ptr(const char *haystack, const char *needle) {
30 if (!haystack || !needle)
/openbmc/u-boot/lib/libavb/
H A Davb_util.c209 const char* avb_strstr(const char* haystack, const char* needle) { in avb_strstr() argument
215 for (n = 0; haystack[n] != '\0'; n++) { in avb_strstr()
216 if (haystack[n] != needle[0]) { in avb_strstr()
222 return haystack + n; in avb_strstr()
225 if (haystack[n + m] != needle[m]) { in avb_strstr()
H A Davb_util.h222 const char* avb_strstr(const char* haystack,
/openbmc/qemu/tests/qtest/libqos/
H A Dvirtio-9p.c215 static void regex_replace(GString *haystack, const char *pattern, in regex_replace() argument
227 s = g_regex_replace(regex, haystack->str, -1, 0, replace, 0, NULL); in regex_replace()
228 g_string_assign(haystack, s); in regex_replace()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ncp/libowfat/
H A D0001-replace-__pure__-with-compiler-attribute-pure.patch47 -size_t byte_chr(const void* haystack, size_t len, char needle) __pure__;
48 +size_t byte_chr(const void* haystack, size_t len, char needle) __PURE;
52 -size_t byte_rchr(const void* haystack,size_t len,char needle) __pure__;
53 +size_t byte_rchr(const void* haystack,size_t len,char needle) __PURE;
371 /* str_chr returns the index of the first occurance of needle or \0 in haystack */
372 -size_t str_chr(const char *haystack,char needle) __pure__;
373 +size_t str_chr(const char *haystack,char needle) __PURE;
375 /* str_rchr returns the index of the last occurance of needle or \0 in haystack */
376 -size_t str_rchr(const char *haystack,char needle) __pure__;
377 +size_t str_rchr(const char *haystack,char needle) __PURE;
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/procmail/procmail/
H A Dgcc14.patch115 { char*haystack;