Home
last modified time | relevance | path

Searched refs:memmem (Results 1 – 25 of 33) sorted by relevance

12

/openbsd/src/gnu/llvm/compiler-rt/lib/fuzzer/
DFuzzerInterceptors.cpp149 DEFINE_REAL(void *, memmem, const void *, size_t, const void *, size_t) in DEFINE_REAL()
213 void *memmem(const void *s1, size_t len1, const void *s2, size_t len2) { in memmem() function
215 void *result = REAL(memmem)(s1, len1, s2, len2); in memmem()
247 REAL(memmem) = reinterpret_cast<memmem_type>( in fuzzerInit()
248 getFuncAddr("memmem", reinterpret_cast<uintptr_t>(&memmem))); in fuzzerInit()
DFuzzerUtilPosix.cpp175 return memmem(Data, DataLen, Patt, PattLen); in SearchMemory()
DFuzzerUtilFuchsia.cpp539 return memmem(Data, DataLen, Patt, PattLen); in SearchMemory()
DFuzzerFlags.def107 "Use hints from intercepting memmem, strstr, etc")
/openbsd/src/lib/libc/string/
DMakefile.inc6 SRCS+= explicit_bzero.c memccpy.c memmem.c memrchr.c stpcpy.c stpncpy.c \
27 memcmp.3 memcpy.3 memmem.3 memmove.3 memset.3 stpcpy.3 strcasecmp.3 \
Dmemmem.c163 memmem(const void *h0, size_t k, const void *n0, size_t l) in memmem() function
184 DEF_WEAK(memmem);
/openbsd/src/regress/lib/libc/explicit_bzero/
Dexplicit_bzero.c158 char *res = memmem(altstack, ALTSTACK_SIZE, buf, sizeof(buf)); in test_without_bzero()
169 char *res = memmem(altstack, ALTSTACK_SIZE, buf, sizeof(buf)); in test_with_bzero()
/openbsd/src/lib/libc/hidden/
Dstring.h37 PROTO_NORMAL(memmem);
/openbsd/src/include/
Dstring.h122 void *memmem(const void *, size_t, const void *, size_t);
/openbsd/src/gnu/usr.bin/perl/
Dutil.h252 (char *) memmem((big), (bigend) - (big), \
Dconfig_h.SH3048 * This symbol, if defined, indicates that the memmem routine is
3051 * In glibc, memmem is a GNU extension. The function is visible in
/openbsd/src/gnu/gcc/libmudflap/
Dmf-runtime.h124 #pragma redefine_extname memmem __mfwrap_memmem
Dconfig.h.in126 /* Define to 1 if you have the `memmem' function. */
Dconfigure.ac70 AC_CHECK_FUNCS(strnlen memrchr strncpy memmem sethostname)
Dmf-hooks2.c396 WRAPPER2(void *, memmem, in WRAPPER2() argument
403 return memmem (haystack, haystacklen, needle, needlelen); in WRAPPER2()
/openbsd/src/usr.bin/ssh/
Dsshbuf-misc.c262 if ((p = memmem(sshbuf_ptr(b) + start_offset, in sshbuf_find()
/openbsd/src/usr.bin/tmux/
Dwindow-buffer.c275 return (memmem(bufdata, bufsize, ss, strlen(ss)) != NULL); in window_buffer_search()
/openbsd/src/usr.sbin/acme-client/
Dhttp.c630 ep = memmem(trans->hbuf, trans->hbufsz, "\r\n\r\n", 4); in http_head_read()
/openbsd/src/usr.sbin/ocspcheck/
Dhttp.c623 ep = memmem(trans->hbuf, trans->hbufsz, "\r\n\r\n", 4); in http_head_read()
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/
Dsanitizer_flags.inc235 "If set, uses a wrapper for memmem() to find more errors.")
Dsanitizer_common_interceptors.inc728 INTERCEPTOR(void*, memmem, const void *s1, SIZE_T len1, const void *s2,
731 COMMON_INTERCEPTOR_ENTER(ctx, memmem, s1, len1, s2, len2);
732 void *r = REAL(memmem)(s1, len1, s2, len2);
742 #define INIT_MEMMEM COMMON_INTERCEPT_FUNCTION(memmem);
/openbsd/src/lib/libc/
DSymbols.list1615 memmem
/openbsd/src/gnu/usr.bin/perl/pod/
Dperlclib.pod178 memmem(big, blen, little, len) ninstr(big, bigend, little, little_end)
Dperl5300delta.pod893 Improve Configure detection of memmem().
/openbsd/src/gnu/llvm/clang/docs/analyzer/
Dcheckers.rst2409 …locked``, ``getdelim``, ``getline``, ``getw``, ``memcmp``, ``memcpy``, ``memmem``, ``memmove``, ``…

12