Searched refs:funcName (Results 1 – 4 of 4) sorted by relevance
| /oneTBB/src/tbbmalloc_proxy/ |
| H A D | function_replacement.h | 41 FRR_TYPE ReplaceFunctionA(const char *dllName, const char *funcName, FUNCPTR newFunc, const char **… 42 FRR_TYPE ReplaceFunctionW(const wchar_t *dllName, const char *funcName, FUNCPTR newFunc, const char… 44 bool IsPrologueKnown(const char* dllName, const char *funcName, const char **opcodes, HMODULE modul…
|
| H A D | function_replacement.cpp | 43 const char* funcName; member 68 __TBB_ASSERT(functionInfo.funcName, "Empty function name value"); in record() 86 status ? "Success" : "Fail", functionInfo.funcName, functionInfo.dllName, opcodeString); in record() 478 FRR_TYPE ReplaceFunctionA(const char *dllName, const char *funcName, FUNCPTR newFunc, const char **… in ReplaceFunctionA() argument 503 FARPROC inpFunc = GetProcAddress(cachedHM, funcName); in ReplaceFunctionA() 518 FRR_TYPE ReplaceFunctionW(const wchar_t *dllName, const char *funcName, FUNCPTR newFunc, const char… in ReplaceFunctionW() argument 543 FARPROC inpFunc = GetProcAddress(cachedHM, funcName); in ReplaceFunctionW() 558 bool IsPrologueKnown(const char* dllName, const char *funcName, const char **opcodes, HMODULE modul… in IsPrologueKnown() argument 560 FARPROC inpFunc = GetProcAddress(module, funcName); in IsPrologueKnown() 561 FunctionInfo functionInfo = { funcName, dllName }; in IsPrologueKnown()
|
| H A D | proxy.cpp | 659 const char *funcName[] = {"free", "_msize", "_aligned_free", "_aligned_msize", 0}; in BytecodesAreKnown() local 664 for (int i=0; funcName[i]; i++) in BytecodesAreKnown() 665 if (! IsPrologueKnown(dllName, funcName[i], known_bytecodes, module)) { in BytecodesAreKnown() 667 ": unknown prologue for function " WCHAR_SPEC "\n", dllName, funcName[i]); in BytecodesAreKnown() 695 void ReplaceFunctionWithStore( const unicode_char_t *dllName, const char *funcName, FUNCPTR newFunc… in ReplaceFunctionWithStore() argument 697 FRR_TYPE res = ReplaceFunction( dllName, funcName, newFunc, opcodes, origFunc ); in ReplaceFunctionWithStore() 703 res==FRR_NOFUNC? "find" : "replace", funcName, dllName); in ReplaceFunctionWithStore()
|
| /oneTBB/test/tbbmalloc/ |
| H A D | test_malloc_whitebox.cpp | 1433 std::string expected_line = "Fail: "+ std::string(funcInfo.funcName) + " (" + in TestFalseSearchCase()
|