Home
last modified time | relevance | path

Searched refs:func_replacement_log (Results 1 – 3 of 3) sorted by relevance

/oneTBB/doc/main/reference/scalable_memory_pools/
H A Dmalloc_replacement_log.rst64 char **func_replacement_log;
65 int func_replacement_status = TBB_malloc_replacement_log(&func_replacement_log);
69 for (char** log_string = func_replacement_log; *log_string != 0; log_string++) {
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_whitebox.cpp1389 char **func_replacement_log; variable
1405 status = TBB_malloc_replacement_log(&func_replacement_log); in TestEmptyLog()
1408 REQUIRE_MESSAGE(*func_replacement_log == nullptr, "Log must be empty"); in TestEmptyLog()
1415 status = TBB_malloc_replacement_log(&func_replacement_log); in TestLogOverload()
1417 for (; *(func_replacement_log + 1) != 0; func_replacement_log++) {} in TestLogOverload()
1419 std::string last_line(*func_replacement_log); in TestLogOverload()
1436 status = TBB_malloc_replacement_log(&func_replacement_log); in TestFalseSearchCase()
1438 … REQUIRE_MESSAGE(expected_line.compare(*func_replacement_log) == 0, "Wrong last string contnent"); in TestFalseSearchCase()
1449 status = TBB_malloc_replacement_log(&func_replacement_log); in TestWrongFunctionInDll()
1451 … REQUIRE_MESSAGE(expected_line.compare(*func_replacement_log) == 0, "Wrong last string contnent"); in TestWrongFunctionInDll()
H A Dtest_malloc_overload.cpp361 char **func_replacement_log; in FuncReplacementInfoCheck() local
362 int func_replacement_status = TBB_malloc_replacement_log(&func_replacement_log); in FuncReplacementInfoCheck()
371 for (char** log_string = func_replacement_log; *log_string != 0; log_string++) { in FuncReplacementInfoCheck()