Home
last modified time | relevance | path

Searched refs:locations_ (Results 1 – 8 of 8) sorted by relevance

/external/bcc/src/cc/usdt/
Dusdt.cc150 for (Location &location : locations_) { in largest_arg_type()
169 const size_t arg_count = locations_[0].arguments_.size(); in usdt_getarg()
184 if (locations_.size() == 1) { in usdt_getarg()
185 Location &location = locations_.front(); in usdt_getarg()
193 for (Location &location : locations_) { in usdt_getarg()
215 locations_.emplace_back(addr, bin_path, fmt); in add_location()
219 std::sort(locations_.begin(), locations_.end(), in finalize_locations()
223 auto last = std::unique(locations_.begin(), locations_.end(), in finalize_locations()
227 locations_.erase(last, locations_.end()); in finalize_locations()
338 for (Location &loc : p->locations_) { in each_uprobe()
/external/bcc/src/cc/
Dusdt.h189 std::vector<Location> locations_; variable
210 size_t num_locations() const { return locations_.size(); } in num_locations()
211 size_t num_arguments() const { return locations_.front().arguments_.size(); } in num_arguments()
214 uint64_t address(size_t n = 0) const { return locations_[n].address_; }
215 const char *location_bin_path(size_t n = 0) const { return locations_[n].bin_path_.c_str(); }
216 const Location &location(size_t n) const { return locations_[n]; } in location()
/external/bcc/src/cc/includes/
Dusdt.h189 std::vector<Location> locations_; variable
210 size_t num_locations() const { return locations_.size(); } in num_locations()
211 size_t num_arguments() const { return locations_.front().arguments_.size(); } in num_arguments()
214 uint64_t address(size_t n = 0) const { return locations_[n].address_; }
215 const char *location_bin_path(size_t n = 0) const { return locations_[n].bin_path_.c_str(); }
216 const Location &location(size_t n) const { return locations_[n]; } in location()
/external/bcc/src/cc/api/
DBPF.cc237 for (const auto& loc : probe.locations_) { in attach_usdt()
252 detach_uprobe(probe.locations_[i].bin_path_, std::string(), in attach_usdt()
253 probe.locations_[i].address_, BPF_PROBE_ENTRY, pid); in attach_usdt()
419 for (const auto& loc : probe.locations_) { in detach_usdt()
/external/v8/src/profiler/
Dheap-snapshot-generator.h186 const std::vector<SourceLocation>& locations() const { return locations_; } in locations()
218 std::vector<SourceLocation> locations_; variable
Dheap-snapshot-generator.cc253 locations_.emplace_back(entry, scriptId, line, col); in AddLocation()
/external/protobuf/src/google/protobuf/
Dtext_format.h400 LocationMap locations_; variable
Dtext_format.cc150 locations_[field].push_back(location); in RecordLocation()
181 FindOrNull(locations_, field); in GetLocation()