Home
last modified time | relevance | path

Searched refs:MethodIdentifier (Results 1 – 11 of 11) sorted by relevance

/external/angle/third_party/abseil-cpp/absl/strings/internal/
Dcordz_info.h49 using MethodIdentifier = CordzUpdateTracker::MethodIdentifier;
63 static void TrackCord(InlineData& cord, MethodIdentifier method);
72 MethodIdentifier method);
77 static void MaybeTrackCord(InlineData& cord, MethodIdentifier method);
106 MethodIdentifier method);
132 void Lock(MethodIdentifier method) ABSL_EXCLUSIVE_LOCK_FUNCTION(mutex_);
202 MethodIdentifier method);
213 static MethodIdentifier GetParentMethod(const CordzInfo* src);
231 MethodIdentifier method);
249 const MethodIdentifier method_;
[all …]
Dcordz_statistics.h29 using MethodIdentifier = CordzUpdateTracker::MethodIdentifier; member
71 MethodIdentifier method = MethodIdentifier::kUnknown;
74 MethodIdentifier parent_method = MethodIdentifier::kUnknown;
Dcordz_update_tracker.h40 enum MethodIdentifier { enum
83 int64_t Value(MethodIdentifier method) const { in Value()
88 void LossyAdd(MethodIdentifier method, int64_t n = 1) {
97 MethodIdentifier method = static_cast<MethodIdentifier>(i); in LossyAdd()
Dcordz_info.cc272 void CordzInfo::TrackCord(InlineData& cord, MethodIdentifier method) { in TrackCord()
281 MethodIdentifier method) { in TrackCord()
297 MethodIdentifier method) { in MaybeTrackCordImpl()
306 CordzInfo::MethodIdentifier CordzInfo::GetParentMethod(const CordzInfo* src) { in GetParentMethod()
307 if (src == nullptr) return MethodIdentifier::kUnknown; in GetParentMethod()
308 return src->parent_method_ != MethodIdentifier::kUnknown ? src->parent_method_ in GetParentMethod()
324 MethodIdentifier method) in CordzInfo()
397 void CordzInfo::Lock(MethodIdentifier method) in Lock()
Dcordz_update_scope.h35 CordzUpdateScope(CordzInfo* info, CordzUpdateTracker::MethodIdentifier method) in CordzUpdateScope()
Dcordz_update_tracker_test.cc34 using Method = CordzUpdateTracker::MethodIdentifier;
/external/guava/guava/src/com/google/common/eventbus/
DSubscriberRegistry.java185 Map<MethodIdentifier, Method> identifiers = Maps.newHashMap(); in getAnnotatedMethodsNotCached()
207 MethodIdentifier ident = new MethodIdentifier(method); in getAnnotatedMethodsNotCached()
245 private static final class MethodIdentifier { class in SubscriberRegistry
250 MethodIdentifier(Method method) { in MethodIdentifier() method in SubscriberRegistry.MethodIdentifier
262 if (o instanceof MethodIdentifier) { in equals()
263 MethodIdentifier ident = (MethodIdentifier) o; in equals()
/external/guava/android/guava/src/com/google/common/eventbus/
DSubscriberRegistry.java185 Map<MethodIdentifier, Method> identifiers = Maps.newHashMap(); in getAnnotatedMethodsNotCached()
207 MethodIdentifier ident = new MethodIdentifier(method); in getAnnotatedMethodsNotCached()
245 private static final class MethodIdentifier { class in SubscriberRegistry
250 MethodIdentifier(Method method) { in MethodIdentifier() method in SubscriberRegistry.MethodIdentifier
262 if (o instanceof MethodIdentifier) { in equals()
263 MethodIdentifier ident = (MethodIdentifier) o; in equals()
/external/angle/third_party/abseil-cpp/absl/strings/
Dcord.h679 using MethodIdentifier = CordzUpdateTracker::MethodIdentifier; variable
683 explicit Cord(absl::string_view src, MethodIdentifier method);
733 void AppendArray(absl::string_view src, MethodIdentifier method);
755 void EmplaceTree(CordRep* rep, MethodIdentifier method);
760 MethodIdentifier method);
766 const CordzUpdateScope& scope, MethodIdentifier method);
768 void AppendTreeToInlined(CordRep* tree, MethodIdentifier method);
769 void AppendTreeToTree(CordRep* tree, MethodIdentifier method);
770 void AppendTree(CordRep* tree, MethodIdentifier method);
771 void PrependTreeToInlined(CordRep* tree, MethodIdentifier method);
[all …]
Dcord.cc356 MethodIdentifier method) { in AppendTreeToInlined()
369 void Cord::InlineRep::AppendTreeToTree(CordRep* tree, MethodIdentifier method) { in AppendTreeToTree()
380 void Cord::InlineRep::AppendTree(CordRep* tree, MethodIdentifier method) { in AppendTree()
390 MethodIdentifier method) { in PrependTreeToInlined()
404 MethodIdentifier method) { in PrependTreeToTree()
415 void Cord::InlineRep::PrependTree(CordRep* tree, MethodIdentifier method) { in PrependTree()
562 Cord::Cord(absl::string_view src, MethodIdentifier method) in Cord()
652 MethodIdentifier method) { in AppendArray()
Dcordz_test.cc46 using Method = CordzUpdateTracker::MethodIdentifier;