Home
last modified time | relevance | path

Searched refs:dllName (Results 1 – 4 of 4) sorted by relevance

/oneTBB/src/tbbmalloc_proxy/
H A Dfunction_replacement.cpp44 const char* dllName; member
67 __TBB_ASSERT(functionInfo.dllName, "Empty DLL name value"); in record()
485 if (!dllName || !*dllName) in ReplaceFunctionA()
488 if (!cachedHM || strncmp(dllName, cachedName, MAX_PATH) != 0) in ReplaceFunctionA()
491 HMODULE hModule = GetModuleHandleA(dllName); in ReplaceFunctionA()
500 strncpy(cachedName, dllName, MAX_PATH); in ReplaceFunctionA()
525 if (!dllName || !*dllName) in ReplaceFunctionW()
528 if (!cachedHM || wcsncmp(dllName, cachedName, MAX_PATH) != 0) in ReplaceFunctionW()
531 HMODULE hModule = GetModuleHandleW(dllName); in ReplaceFunctionW()
540 wcsncpy(cachedName, dllName, MAX_PATH); in ReplaceFunctionW()
[all …]
H A Dfunction_replacement.h41 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 Dproxy.cpp657 bool BytecodesAreKnown(const unicode_char_t *dllName) in BytecodesAreKnown() argument
660 HMODULE module = GetModuleHandle(dllName); 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()
673 void SkipReplacement(const unicode_char_t *dllName) in SkipReplacement() argument
676 const char *dllStr = dllName; in SkipReplacement()
684 errno_t ret = wcstombs_s(&real_sz, dllStr, sz, dllName, sz-1); in SkipReplacement()
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 Dtest_malloc_whitebox.cpp1434 std::string(funcInfo.dllName) + "), byte pattern: <opcode string>"; in TestFalseSearchCase()