HomeSort by relevance Sort by last modified time
    Searched defs:Prune (Results 1 - 7 of 7) sorted by null

  /prebuilts/go/darwin-x86/src/internal/pprof/profile/
prune.go 14 // Prune removes all nodes beneath a node matching dropRx, and not
17 func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
18 prune := make(map[uint64]bool)
39 // Found matching entry to prune.
44 // Matched the top entry: prune the whole location.
45 prune[loc.ID] = true
52 // Prune locs from each Sample
54 // Scan from the root to the leaves to find the prune location.
55 // Do not prune frames before the first user frame, to avoid
60 if !prune[id] && !pruneBeneath[id]
    [all...]
  /prebuilts/go/linux-x86/src/internal/pprof/profile/
prune.go 14 // Prune removes all nodes beneath a node matching dropRx, and not
17 func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
18 prune := make(map[uint64]bool)
39 // Found matching entry to prune.
44 // Matched the top entry: prune the whole location.
45 prune[loc.ID] = true
52 // Prune locs from each Sample
54 // Scan from the root to the leaves to find the prune location.
55 // Do not prune frames before the first user frame, to avoid
60 if !prune[id] && !pruneBeneath[id]
    [all...]
  /system/core/logd/
LogWhiteBlackList.h 29 class Prune {
40 Prune(uid_t uid, pid_t pid);
56 typedef std::list<Prune> PruneCollection;
LogWhiteBlackList.cpp 26 Prune::Prune(uid_t uid, pid_t pid) : mUid(uid), mPid(pid) {
29 int Prune::cmp(uid_t uid, pid_t pid) const {
39 std::string Prune::format() {
157 uid_t uid = Prune::uid_all;
165 pid_t pid = Prune::pid_all;
176 if ((uid == Prune::uid_all) && (pid == Prune::pid_all)) {
187 Prune& p = *it;
201 list->insert(it, Prune(uid, pid))
    [all...]
  /frameworks/base/tools/aapt2/
StringPool.cpp 271 void StringPool::Prune() {
  /external/webrtc/webrtc/p2p/base/
port.cc     [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 195 bool Prune : 1; ///< Is this a pure forward declaration we can strip?
396 I.Keep = !I.Prune;
    [all...]

Completed in 698 milliseconds