Home | History | Annotate | Download | only in tsan

Lines Matching refs:rtn

457 void ReplaceFunc3(void *img, void *rtn, string filter, void *fun_ptr) {
486 void *img = NULL, *rtn = NULL;
488 ReplaceFunc3(img, rtn, "memchr", (AFUNPTR)Replace_memchr);
489 ReplaceFunc3(img, rtn, "strchr", (AFUNPTR)Replace_strchr);
490 ReplaceFunc3(img, rtn, "index", (AFUNPTR)Replace_strchr);
491 ReplaceFunc3(img, rtn, "strchrnul", (AFUNPTR)Replace_strchrnul);
492 ReplaceFunc3(img, rtn, "strrchr", (AFUNPTR)Replace_strrchr);
493 ReplaceFunc3(img, rtn, "rindex", (AFUNPTR)Replace_strrchr);
494 ReplaceFunc3(img, rtn, "strlen", (AFUNPTR)Replace_strlen);
495 ReplaceFunc3(img, rtn, "memcpy", (AFUNPTR)Replace_memcpy);
496 ReplaceFunc3(img, rtn, "memmove", (AFUNPTR)Replace_memmove);
497 ReplaceFunc3(img, rtn, "memcmp", (AFUNPTR)Replace_memcmp);
498 ReplaceFunc3(img, rtn, "strcpy", (AFUNPTR)Replace_strcpy);
499 ReplaceFunc3(img, rtn, "stpcpy", (AFUNPTR)Replace_stpcpy);
500 ReplaceFunc3(img, rtn, "strncpy", (AFUNPTR)Replace_strncpy);
501 ReplaceFunc3(img, rtn, "strcmp", (AFUNPTR)Replace_strcmp);
502 ReplaceFunc3(img, rtn, "strncmp", (AFUNPTR)Replace_strncmp);
503 ReplaceFunc3(img, rtn, "strcat", (AFUNPTR)Replace_strcat);
504 ReplaceFunc3(img, rtn, "*foo_to_replace*", (AFUNPTR)replace_foo);