reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
46199   lldb::InstrumentationRuntimeType arg2 ;
60300   lldb::InstrumentationRuntimeType arg2 ;
tools/lldb/include/lldb/API/SBProcess.h
  361   bool IsInstrumentationRuntimePresent(InstrumentationRuntimeType type);
tools/lldb/include/lldb/API/SBThread.h
   75   GetStopReasonExtendedBacktraces(InstrumentationRuntimeType type);
tools/lldb/include/lldb/Target/InstrumentationRuntime.h
   23 typedef std::map<lldb::InstrumentationRuntimeType,
tools/lldb/include/lldb/Target/Process.h
 2286   GetInstrumentationRuntime(lldb::InstrumentationRuntimeType type);
tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h
   31 inline void stringify_append(llvm::raw_string_ostream &ss, const T &t) {
   47 inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head) {
   52 inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head,
   53                              const Tail &... tail) {
   59 template <typename... Ts> inline std::string stringify_args(const Ts &... ts) {
  245   typedef typename std::conditional<std::is_trivially_copyable<T>::value, ValueTag, NotImplementedTag>::type type;
  277   template <typename T> T Deserialize() {
  281     return Read<T>(typename serializer_tag<T>::type());
  310   template <typename T> T Read(NotImplementedTag) {
  315   template <typename T> T Read(ValueTag) {
  317     T t;
  318     std::memcpy(reinterpret_cast<char *>(&t), m_buffer.data(), sizeof(T));
  319     m_buffer = m_buffer.drop_front(sizeof(T));
  323   template <typename T> T Read(PointerTag) {
  329   template <typename T> T Read(ReferenceTag) {
  340   template <typename T> T Read(FundamentalPointerTag) {
  349   template <typename T> T Read(FundamentalReferenceTag) {
  376                        Result (*f)(Deserialized..., Head, Tail...),
  376                        Result (*f)(Deserialized..., Head, Tail...),
  378       return DeserializationHelper<Tail...>::
  379           template deserialized<Result, Deserialized..., Head>::doit(
  380               deserializer, f, d..., deserializer.Deserialize<Head>());
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  388                        Deserialized... d) {
  404   DefaultReplayer(Result (*f)(Args...)) : Replayer(), f(f) {}
  408         DeserializationHelper<Args...>::template deserialized<Result>::doit(
  412   Result (*f)(Args...);
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  636   void Record(Serializer &serializer, Registry &registry, Result (*f)(FArgs...),
  637               const RArgs &... args) {
tools/lldb/include/lldb/lldb-private-interfaces.h
   96 typedef lldb::InstrumentationRuntimeType (*InstrumentationRuntimeGetType)();
tools/lldb/source/API/SBProcess.cpp
 1186     InstrumentationRuntimeType type) {
tools/lldb/source/API/SBThread.cpp
  290 SBThread::GetStopReasonExtendedBacktraces(InstrumentationRuntimeType type) {
tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
   52 lldb::InstrumentationRuntimeType AddressSanitizerRuntime::GetTypeStatic() {
tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.h
   32   static lldb::InstrumentationRuntimeType GetTypeStatic();
   38   virtual lldb::InstrumentationRuntimeType GetType() { return GetTypeStatic(); }
tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
   55 lldb::InstrumentationRuntimeType MainThreadCheckerRuntime::GetTypeStatic() {
tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.h
   32     static lldb::InstrumentationRuntimeType GetTypeStatic();
   38     virtual lldb::InstrumentationRuntimeType GetType() { return GetTypeStatic(); }
tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
   57 lldb::InstrumentationRuntimeType ThreadSanitizerRuntime::GetTypeStatic() {
tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.h
   32   static lldb::InstrumentationRuntimeType GetTypeStatic();
   38   virtual lldb::InstrumentationRuntimeType GetType() { return GetTypeStatic(); }
tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
   66 lldb::InstrumentationRuntimeType
tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.h
   33   static lldb::InstrumentationRuntimeType GetTypeStatic();
   39   virtual lldb::InstrumentationRuntimeType GetType() { return GetTypeStatic(); }
tools/lldb/source/Target/InstrumentationRuntime.cpp
   32     InstrumentationRuntimeType type = get_type_callback();
tools/lldb/source/Target/Process.cpp
 5738 Process::GetInstrumentationRuntime(lldb::InstrumentationRuntimeType type) {
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   83     constexpr _Tp&&
usr/include/c++/7.4.0/bits/stl_function.h
  121       typedef _Arg1 	first_argument_type; 
  124       typedef _Arg2 	second_argument_type;
  381     struct less : public binary_function<_Tp, _Tp, bool>
  381     struct less : public binary_function<_Tp, _Tp, bool>
  385       operator()(const _Tp& __x, const _Tp& __y) const
  385       operator()(const _Tp& __x, const _Tp& __y) const
usr/include/c++/7.4.0/bits/stl_map.h
  102       typedef _Key					key_type;
  104       typedef std::pair<const _Key, _Tp>		value_type;
usr/include/c++/7.4.0/bits/stl_tree.h
  563       typedef _Key 				key_type;
  758       static const _Key&
  782       static const _Key&
  894 		     const _Key& __k);
  898 		     const _Key& __k) const;
  902 		     const _Key& __k);
  906 		     const _Key& __k) const;
usr/include/c++/7.4.0/tuple
  125       constexpr _Head_base(const _Head& __h)
  132         constexpr _Head_base(_UHead&& __h)
  159       static constexpr _Head&
  162       static constexpr const _Head&
  350       static constexpr _Head&
  353       static constexpr const _Head&
  360       constexpr _Tuple_impl(const _Head& __head)
  365         constexpr _Tuple_impl(_UHead&& __head)
  390 		    const _Head& __head)
  473       return __and_<is_constructible<_Elements, const _UElements&>...>::value;
  479       return __and_<is_convertible<const _UElements&, _Elements>...>::value;
  485       return __and_<is_constructible<_Elements, _UElements&&>...>::value;
  491       return __and_<is_convertible<_UElements&&, _Elements>...>::value;
  608         constexpr tuple(const _Elements&... __elements)
  619       explicit constexpr tuple(const _Elements&... __elements)
  646         constexpr tuple(_UElements&&... __elements)
  730 	      const _Elements&... __elements)
  741                        const _Elements&... __elements)
 1302     constexpr _Head&
 1307     constexpr const _Head&
 1313     constexpr __tuple_element_t<__i, tuple<_Elements...>>&
 1319     constexpr const __tuple_element_t<__i, tuple<_Elements...>>&
 1325     constexpr __tuple_element_t<__i, tuple<_Elements...>>&&
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  595 		   is_null_pointer<_Tp>>::type
 1246     : public is_nothrow_constructible<_Tp, _Tp&&>
 1554     { typedef _Tp     type; };
 1558     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1659     { typedef _Tp&&   type; };