Lines Matching full:c
2 * Copyright (c) 2021-2022 Huawei Device Co., Ltd.
28 template <class C, class Friend1 = C, class Friend2 = C>
43 const C *operator->() const
46 return &obj->c;
69 C *operator->()
72 return &obj->c;
82 C c; variable
84 …// GetObj() should be ideally annotated with REQUIRES/REQUIRES_SHARED and c with GUARDED_BY, but t…
86 C &GetObj() in GetObj()
88 return c; in GetObj()
91 const C &GetObj() const in GetObj()
93 return c; in GetObj()
116 Synchronized(Args &&... args) : c(std::forward<Args>(args)...) in Synchronized()
134 return handler(c); in Apply()
141 return handler(c); in Apply()