OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AllocRecord
(Results
1 - 16
of
16
) sorted by null
/external/tensorflow/tensorflow/core/framework/
tracking_allocator.h
46
struct
AllocRecord
{
47
AllocRecord
(int64 a_btyes, int64 a_micros)
49
AllocRecord
() :
AllocRecord
(0, 0) {}
87
gtl::InlinedVector<
AllocRecord
, 4> GetRecordsAndUnRef();
89
gtl::InlinedVector<
AllocRecord
, 4> GetCurrentRecords();
117
gtl::InlinedVector<
AllocRecord
, 4> allocations_ GUARDED_BY(mu_);
tracking_allocator.cc
174
gtl::InlinedVector<
AllocRecord
, 4> TrackingAllocator::GetRecordsAndUnRef() {
176
gtl::InlinedVector<
AllocRecord
, 4> allocations;
188
gtl::InlinedVector<
AllocRecord
, 4> TrackingAllocator::GetCurrentRecords() {
189
gtl::InlinedVector<
AllocRecord
, 4> allocations;
192
for (const
AllocRecord
& alloc : allocations_) {
/external/perfetto/src/profiling/memory/
unwinding_fuzzer.cc
31
void PostAllocRecord(
AllocRecord
) override {}
unwound_messages.h
38
struct
AllocRecord
{
unwinding.h
133
bool DoUnwind(WireMessage*, UnwindingMetadata* metadata,
AllocRecord
* out);
139
virtual void PostAllocRecord(
AllocRecord
) = 0;
heapprofd_producer.h
126
void PostAllocRecord(
AllocRecord
) override;
132
void HandleAllocRecord(
AllocRecord
);
unwinding_unittest.cc
135
AllocRecord
out;
unwinding.cc
179
bool DoUnwind(WireMessage* msg, UnwindingMetadata* metadata,
AllocRecord
* out) {
351
AllocRecord
rec;
heapprofd_producer.cc
754
void HeapprofdProducer::PostAllocRecord(
AllocRecord
alloc_rec) {
756
AllocRecord
* raw_alloc_rec = new
AllocRecord
(std::move(alloc_rec));
786
void HeapprofdProducer::HandleAllocRecord(
AllocRecord
alloc_rec) {
/art/runtime/gc/
allocation_record.cc
37
const char*
AllocRecord
::GetClassDescriptor(std::string* storage) const {
60
AllocRecord
& record = it->second;
75
static inline void SweepClassObject(
AllocRecord
* record, IsMarkedVisitor* visitor)
101
AllocRecord
& record = it->second;
162
sizeof(
AllocRecord
) + sizeof(AllocRecordStackTrace);
251
Put(obj->Ptr(),
AllocRecord
(byte_count, (*obj)->GetClass(), std::move(trace)));
allocation_record.h
156
class
AllocRecord
{
158
// All instances of
AllocRecord
should be managed by an instance of AllocRecordObjectMap.
159
AllocRecord
(size_t count, mirror::Class* klass, AllocRecordStackTrace&& trace)
209
// number of
AllocRecord
::klass_ pointers are strong roots (and the rest of klass_ pointers are
213
using EntryPair = std::pair<GcRoot<mirror::Object>,
AllocRecord
>;
229
void Put(mirror::Object* obj,
AllocRecord
&& record)
/external/tensorflow/tensorflow/stream_executor/
stream_executor_pimpl.h
44
struct
AllocRecord
{
210
void GetMemAllocs(std::map<void *,
AllocRecord
> *records_out);
620
// Adds an
AllocRecord
for 'opaque' of size 'bytes' to the record map, for
625
// Removes the
AllocRecord
keyed by 'opaque' from the record map. NULL
654
std::map<void *,
AllocRecord
> mem_allocs_ GUARDED_BY(mu_);
[
all
...]
stream_executor_pimpl.cc
263
void StreamExecutor::GetMemAllocs(std::map<void *,
AllocRecord
> *records_out) {
827
mem_allocs_[opaque] =
AllocRecord
{
/art/runtime/
reference_table.cc
223
gc::
AllocRecord
& record = it->second;
debugger.cc
[
all
...]
/external/tensorflow/tensorflow/core/common_runtime/
step_stats_collector.cc
465
gtl::InlinedVector<
AllocRecord
, 4> cur_records =
Completed in 218 milliseconds