MCPcopy Create free account
hub / github.com/apache/impala / set_bytes_tracked

Method set_bytes_tracked

be/src/codegen/mcjit-mem-mgr.h:62–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60 int64_t bytes_allocated() const { return bytes_allocated_; }
61 int64_t bytes_tracked() const { return bytes_tracked_; }
62 void set_bytes_tracked(int64_t bytes_tracked) {
63 DCHECK_LE(bytes_tracked, bytes_allocated_);
64 bytes_tracked_ = bytes_tracked;
65 }
66
67 private:
68 /// Total bytes allocated for the compiled code.

Callers 1

FinalizeModuleMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected