MCPcopy Create free account
hub / github.com/dobin/RedEdr / containsObject

Method containsObject

RedEdrShared/process_resolver.cpp:52–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50
51
52BOOL ProcessResolver::containsObject(DWORD pid) {
53 std::lock_guard<std::mutex> lock(cache_mutex);
54 auto it = cache.find(pid);
55 if (it != cache.end()) {
56 return TRUE;
57 }
58 else {
59 return FALSE;
60 }
61}
62
63
64void ProcessResolver::SetTargetNames(const std::vector<std::string>& names) {

Callers 1

TEST_CLASSFunction · 0.80

Calls 1

endMethod · 0.45

Tested by 1

TEST_CLASSFunction · 0.64