Home | History | Annotate | Download | only in debug

Lines Matching refs:record

48 // The key used to record process information.
624 // record has a |time_internal| value that can be converted to a "wall time"
971 // Stack copied. Record it's full depth.
1143 ModuleInfoRecord* record = allocator->New<ModuleInfoRecord>(required_size);
1144 if (!record)
1147 // These fields never changes and are done before the record is made
1149 record->size = info.size;
1150 record->timestamp = info.timestamp;
1151 record->age = info.age;
1152 memcpy(record->identifier, info.identifier, sizeof(identifier));
1153 memcpy(record->pickle, pickler.data(), pickler.size());
1154 record->pickle_size = pickler.size();
1155 record->changes.store(0, std::memory_order_relaxed);
1158 record->owner.Release_Initialize();
1161 bool success = record->UpdateFrom(info);
1163 return record;
1168 // Updates can occur after the record is made visible so make changes atomic.
1530 // Find the processes user-data record so the process phase can be passed
1552 // Record the process's phase at exit so callback doesn't need to go
1615 ModuleInfoRecord* record = found->second;
1616 DCHECK(record);
1621 // to create a new record to accommodate a possibly longer length.
1622 record->UpdateFrom(info);
1626 ModuleInfoRecord* record =
1628 if (!record)
1630 allocator_->MakeIterable(record);
1631 modules_.emplace(info.file, record);
1693 // Fetch and record all activated field trials.