Coverage Report

Created: 2026-06-07 06:38

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/uWebSockets/src/MoveOnlyFunction.h
Line
Count
Source
1
/*
2
MIT License
3
4
Copyright (c) 2020 Oleg Fatkhiev
5
6
Permission is hereby granted, free of charge, to any person obtaining a copy
7
of this software and associated documentation files (the "Software"), to deal
8
in the Software without restriction, including without limitation the rights
9
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
copies of the Software, and to permit persons to whom the Software is
11
furnished to do so, subject to the following conditions:
12
13
The above copyright notice and this permission notice shall be included in all
14
copies or substantial portions of the Software.
15
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
SOFTWARE.
23
*/
24
25
/* Sources fetched from https://github.com/ofats/any_invocable on 2021-02-19. */
26
27
#ifndef _ANY_INVOKABLE_H_
28
#define _ANY_INVOKABLE_H_
29
30
#include <functional>
31
32
#if !defined(__cpp_lib_move_only_function) || __cpp_lib_move_only_function < 202110L
33
34
#include <memory>
35
#include <type_traits>
36
37
// clang-format off
38
/*
39
namespace std {
40
  template<class Sig> class any_invocable; // never defined
41
42
  template<class R, class... ArgTypes>
43
  class any_invocable<R(ArgTypes...) cv ref noexcept(noex)> {
44
  public:
45
    using result_type = R;
46
47
    // SECTION.3, construct/copy/destroy
48
    any_invocable() noexcept;
49
    any_invocable(nullptr_t) noexcept;
50
    any_invocable(any_invocable&&) noexcept;
51
    template<class F> any_invocable(F&&);
52
53
    template<class T, class... Args>
54
      explicit any_invocable(in_place_type_t<T>, Args&&...);
55
    template<class T, class U, class... Args>
56
      explicit any_invocable(in_place_type_t<T>, initializer_list<U>, Args&&...);
57
58
    any_invocable& operator=(any_invocable&&) noexcept;
59
    any_invocable& operator=(nullptr_t) noexcept;
60
    template<class F> any_invocable& operator=(F&&);
61
    template<class F> any_invocable& operator=(reference_wrapper<F>) noexcept;
62
63
    ~any_invocable();
64
65
    // SECTION.4, any_invocable modifiers
66
    void swap(any_invocable&) noexcept;
67
68
    // SECTION.5, any_invocable capacity
69
    explicit operator bool() const noexcept;
70
71
    // SECTION.6, any_invocable invocation
72
    R operator()(ArgTypes...) cv ref noexcept(noex);
73
74
    // SECTION.7, null pointer comparisons
75
    friend bool operator==(const any_invocable&, nullptr_t) noexcept;
76
77
    // SECTION.8, specialized algorithms
78
    friend void swap(any_invocable&, any_invocable&) noexcept;
79
  };
80
}
81
*/
82
// clang-format on
83
84
namespace ofats {
85
86
namespace any_detail {
87
88
using buffer = std::aligned_storage_t<sizeof(void*) * 2, alignof(void*)>;
89
90
template <class T>
91
inline constexpr bool is_small_object_v =
92
    sizeof(T) <= sizeof(buffer) && alignof(buffer) % alignof(T) == 0 &&
93
    std::is_nothrow_move_constructible_v<T>;
94
95
union storage {
96
  void* ptr_ = nullptr;
97
  buffer buf_;
98
};
99
100
enum class action { destroy, move };
101
102
template <class R, class... ArgTypes>
103
struct handler_traits {
104
  template <class Derived>
105
  struct handler_base {
106
7.10M
    static void handle(action act, storage* current, storage* other = nullptr) {
107
7.10M
      switch (act) {
108
6.25M
        case (action::destroy):
109
6.25M
          Derived::destroy(*current);
110
6.25M
          break;
111
854k
        case (action::move):
112
854k
          Derived::move(*current, *other);
113
854k
          break;
114
7.10M
      }
115
7.10M
    }
ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
576k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
576k
      switch (act) {
108
576k
        case (action::destroy):
109
576k
          Derived::destroy(*current);
110
576k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
576k
      }
115
576k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::handler_base<ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
576k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
576k
      switch (act) {
108
576k
        case (action::destroy):
109
576k
          Derived::destroy(*current);
110
576k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
576k
      }
115
576k
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::handler_base<ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::handler_base<ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::large_handler<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
28.7k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
28.7k
      switch (act) {
108
11.4k
        case (action::destroy):
109
11.4k
          Derived::destroy(*current);
110
11.4k
          break;
111
17.2k
        case (action::move):
112
17.2k
          Derived::move(*current, *other);
113
17.2k
          break;
114
28.7k
      }
115
28.7k
    }
ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
17.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.2k
      switch (act) {
108
5.74k
        case (action::destroy):
109
5.74k
          Derived::destroy(*current);
110
5.74k
          break;
111
11.4k
        case (action::move):
112
11.4k
          Derived::move(*current, *other);
113
11.4k
          break;
114
17.2k
      }
115
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::handler_base<ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
11.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
11.4k
      switch (act) {
108
5.74k
        case (action::destroy):
109
5.74k
          Derived::destroy(*current);
110
5.74k
          break;
111
5.74k
        case (action::move):
112
5.74k
          Derived::move(*current, *other);
113
5.74k
          break;
114
11.4k
      }
115
11.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::handler_base<ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
11.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
11.4k
      switch (act) {
108
5.74k
        case (action::destroy):
109
5.74k
          Derived::destroy(*current);
110
5.74k
          break;
111
5.74k
        case (action::move):
112
5.74k
          Derived::move(*current, *other);
113
5.74k
          break;
114
11.4k
      }
115
11.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
11.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
11.4k
      switch (act) {
108
5.74k
        case (action::destroy):
109
5.74k
          Derived::destroy(*current);
110
5.74k
          break;
111
5.74k
        case (action::move):
112
5.74k
          Derived::move(*current, *other);
113
5.74k
          break;
114
11.4k
      }
115
11.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
17.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.2k
      switch (act) {
108
5.74k
        case (action::destroy):
109
5.74k
          Derived::destroy(*current);
110
5.74k
          break;
111
11.4k
        case (action::move):
112
11.4k
          Derived::move(*current, *other);
113
11.4k
          break;
114
17.2k
      }
115
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_0> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
17.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.2k
      switch (act) {
108
5.74k
        case (action::destroy):
109
5.74k
          Derived::destroy(*current);
110
5.74k
          break;
111
11.4k
        case (action::move):
112
11.4k
          Derived::move(*current, *other);
113
11.4k
          break;
114
17.2k
      }
115
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
17.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.2k
      switch (act) {
108
5.74k
        case (action::destroy):
109
5.74k
          Derived::destroy(*current);
110
5.74k
          break;
111
11.4k
        case (action::move):
112
11.4k
          Derived::move(*current, *other);
113
11.4k
          break;
114
17.2k
      }
115
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_2> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
17.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.2k
      switch (act) {
108
5.74k
        case (action::destroy):
109
5.74k
          Derived::destroy(*current);
110
5.74k
          break;
111
11.4k
        case (action::move):
112
11.4k
          Derived::move(*current, *other);
113
11.4k
          break;
114
17.2k
      }
115
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
17.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.2k
      switch (act) {
108
5.74k
        case (action::destroy):
109
5.74k
          Derived::destroy(*current);
110
5.74k
          break;
111
11.4k
        case (action::move):
112
11.4k
          Derived::move(*current, *other);
113
11.4k
          break;
114
17.2k
      }
115
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
17.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.2k
      switch (act) {
108
5.74k
        case (action::destroy):
109
5.74k
          Derived::destroy(*current);
110
5.74k
          break;
111
11.4k
        case (action::move):
112
11.4k
          Derived::move(*current, *other);
113
11.4k
          break;
114
17.2k
      }
115
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
17.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.2k
      switch (act) {
108
5.74k
        case (action::destroy):
109
5.74k
          Derived::destroy(*current);
110
5.74k
          break;
111
11.4k
        case (action::move):
112
11.4k
          Derived::move(*current, *other);
113
11.4k
          break;
114
17.2k
      }
115
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::handler_base<ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_6> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
5.74k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
5.74k
      switch (act) {
108
5.74k
        case (action::destroy):
109
5.74k
          Derived::destroy(*current);
110
5.74k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
5.74k
      }
115
5.74k
    }
ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
2.10M
    static void handle(action act, storage* current, storage* other = nullptr) {
107
2.10M
      switch (act) {
108
2.10M
        case (action::destroy):
109
2.10M
          Derived::destroy(*current);
110
2.10M
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
2.10M
      }
115
2.10M
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::handler_base<ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
2.10M
    static void handle(action act, storage* current, storage* other = nullptr) {
107
2.10M
      switch (act) {
108
2.10M
        case (action::destroy):
109
2.10M
          Derived::destroy(*current);
110
2.10M
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
2.10M
      }
115
2.10M
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::handler_base<ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
48.9k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
48.9k
      switch (act) {
108
16.3k
        case (action::destroy):
109
16.3k
          Derived::destroy(*current);
110
16.3k
          break;
111
32.6k
        case (action::move):
112
32.6k
          Derived::move(*current, *other);
113
32.6k
          break;
114
48.9k
      }
115
48.9k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::handler_base<ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
12.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
12.8k
      switch (act) {
108
6.40k
        case (action::destroy):
109
6.40k
          Derived::destroy(*current);
110
6.40k
          break;
111
6.40k
        case (action::move):
112
6.40k
          Derived::move(*current, *other);
113
6.40k
          break;
114
12.8k
      }
115
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::handler_base<ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
12.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
12.8k
      switch (act) {
108
6.40k
        case (action::destroy):
109
6.40k
          Derived::destroy(*current);
110
6.40k
          break;
111
6.40k
        case (action::move):
112
6.40k
          Derived::move(*current, *other);
113
6.40k
          break;
114
12.8k
      }
115
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
32.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
32.0k
      switch (act) {
108
12.8k
        case (action::destroy):
109
12.8k
          Derived::destroy(*current);
110
12.8k
          break;
111
19.2k
        case (action::move):
112
19.2k
          Derived::move(*current, *other);
113
19.2k
          break;
114
32.0k
      }
115
32.0k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::handler_base<ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::large_handler<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
198k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
198k
      switch (act) {
108
65.0k
        case (action::destroy):
109
65.0k
          Derived::destroy(*current);
110
65.0k
          break;
111
133k
        case (action::move):
112
133k
          Derived::move(*current, *other);
113
133k
          break;
114
198k
      }
115
198k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
38.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
38.4k
      switch (act) {
108
12.8k
        case (action::destroy):
109
12.8k
          Derived::destroy(*current);
110
12.8k
          break;
111
25.6k
        case (action::move):
112
25.6k
          Derived::move(*current, *other);
113
25.6k
          break;
114
38.4k
      }
115
38.4k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
19.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
19.2k
      switch (act) {
108
6.40k
        case (action::destroy):
109
6.40k
          Derived::destroy(*current);
110
6.40k
          break;
111
12.8k
        case (action::move):
112
12.8k
          Derived::move(*current, *other);
113
12.8k
          break;
114
19.2k
      }
115
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_1> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
19.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
19.2k
      switch (act) {
108
6.40k
        case (action::destroy):
109
6.40k
          Derived::destroy(*current);
110
6.40k
          break;
111
12.8k
        case (action::move):
112
12.8k
          Derived::move(*current, *other);
113
12.8k
          break;
114
19.2k
      }
115
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
8.14k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
8.14k
      switch (act) {
108
2.30k
        case (action::destroy):
109
2.30k
          Derived::destroy(*current);
110
2.30k
          break;
111
5.84k
        case (action::move):
112
5.84k
          Derived::move(*current, *other);
113
5.84k
          break;
114
8.14k
      }
115
8.14k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
2.40k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
2.40k
      switch (act) {
108
1.08k
        case (action::destroy):
109
1.08k
          Derived::destroy(*current);
110
1.08k
          break;
111
1.32k
        case (action::move):
112
1.32k
          Derived::move(*current, *other);
113
1.32k
          break;
114
2.40k
      }
115
2.40k
    }
ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::handler_base<ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::large_handler<uWS::HttpResponse<false>::onData(ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>&&)::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
8.14k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
8.14k
      switch (act) {
108
2.30k
        case (action::destroy):
109
2.30k
          Derived::destroy(*current);
110
2.30k
          break;
111
5.84k
        case (action::move):
112
5.84k
          Derived::move(*current, *other);
113
5.84k
          break;
114
8.14k
      }
115
8.14k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::handler_base<ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
6.92k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
6.92k
      switch (act) {
108
2.30k
        case (action::destroy):
109
2.30k
          Derived::destroy(*current);
110
2.30k
          break;
111
4.61k
        case (action::move):
112
4.61k
          Derived::move(*current, *other);
113
4.61k
          break;
114
6.92k
      }
115
6.92k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::large_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
1.22k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
1.22k
      switch (act) {
108
1.22k
        case (action::destroy):
109
1.22k
          Derived::destroy(*current);
110
1.22k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
1.22k
      }
115
1.22k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_2> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
19.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
19.2k
      switch (act) {
108
6.40k
        case (action::destroy):
109
6.40k
          Derived::destroy(*current);
110
6.40k
          break;
111
12.8k
        case (action::move):
112
12.8k
          Derived::move(*current, *other);
113
12.8k
          break;
114
19.2k
      }
115
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_3> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
19.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
19.2k
      switch (act) {
108
6.40k
        case (action::destroy):
109
6.40k
          Derived::destroy(*current);
110
6.40k
          break;
111
12.8k
        case (action::move):
112
12.8k
          Derived::move(*current, *other);
113
12.8k
          break;
114
19.2k
      }
115
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_4> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
19.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
19.2k
      switch (act) {
108
6.40k
        case (action::destroy):
109
6.40k
          Derived::destroy(*current);
110
6.40k
          break;
111
12.8k
        case (action::move):
112
12.8k
          Derived::move(*current, *other);
113
12.8k
          break;
114
19.2k
      }
115
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_5> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
19.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
19.2k
      switch (act) {
108
6.40k
        case (action::destroy):
109
6.40k
          Derived::destroy(*current);
110
6.40k
          break;
111
12.8k
        case (action::move):
112
12.8k
          Derived::move(*current, *other);
113
12.8k
          break;
114
19.2k
      }
115
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_6> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
19.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
19.2k
      switch (act) {
108
6.40k
        case (action::destroy):
109
6.40k
          Derived::destroy(*current);
110
6.40k
          break;
111
12.8k
        case (action::move):
112
12.8k
          Derived::move(*current, *other);
113
12.8k
          break;
114
19.2k
      }
115
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
34.9k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
34.9k
      switch (act) {
108
10.9k
        case (action::destroy):
109
10.9k
          Derived::destroy(*current);
110
10.9k
          break;
111
23.9k
        case (action::move):
112
23.9k
          Derived::move(*current, *other);
113
23.9k
          break;
114
34.9k
      }
115
34.9k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_7> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
19.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
19.2k
      switch (act) {
108
6.40k
        case (action::destroy):
109
6.40k
          Derived::destroy(*current);
110
6.40k
          break;
111
12.8k
        case (action::move):
112
12.8k
          Derived::move(*current, *other);
113
12.8k
          break;
114
19.2k
      }
115
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_8> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
19.2k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
19.2k
      switch (act) {
108
6.40k
        case (action::destroy):
109
6.40k
          Derived::destroy(*current);
110
6.40k
          break;
111
12.8k
        case (action::move):
112
12.8k
          Derived::move(*current, *other);
113
12.8k
          break;
114
19.2k
      }
115
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::handler_base<ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_9> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
6.40k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
6.40k
      switch (act) {
108
6.40k
        case (action::destroy):
109
6.40k
          Derived::destroy(*current);
110
6.40k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
6.40k
      }
115
6.40k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::handler_base<ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
13.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
13.5k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
6.79k
        case (action::move):
112
6.79k
          Derived::move(*current, *other);
113
6.79k
          break;
114
13.5k
      }
115
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::handler_base<ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
13.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
13.5k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
6.79k
        case (action::move):
112
6.79k
          Derived::move(*current, *other);
113
6.79k
          break;
114
13.5k
      }
115
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
33.9k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
33.9k
      switch (act) {
108
13.5k
        case (action::destroy):
109
13.5k
          Derived::destroy(*current);
110
13.5k
          break;
111
20.3k
        case (action::move):
112
20.3k
          Derived::move(*current, *other);
113
20.3k
          break;
114
33.9k
      }
115
33.9k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
40.7k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
40.7k
      switch (act) {
108
13.5k
        case (action::destroy):
109
13.5k
          Derived::destroy(*current);
110
13.5k
          break;
111
27.1k
        case (action::move):
112
27.1k
          Derived::move(*current, *other);
113
27.1k
          break;
114
40.7k
      }
115
40.7k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_0> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.3k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
13.5k
        case (action::move):
112
13.5k
          Derived::move(*current, *other);
113
13.5k
          break;
114
20.3k
      }
115
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.3k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
13.5k
        case (action::move):
112
13.5k
          Derived::move(*current, *other);
113
13.5k
          break;
114
20.3k
      }
115
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_2> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.3k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
13.5k
        case (action::move):
112
13.5k
          Derived::move(*current, *other);
113
13.5k
          break;
114
20.3k
      }
115
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.3k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
13.5k
        case (action::move):
112
13.5k
          Derived::move(*current, *other);
113
13.5k
          break;
114
20.3k
      }
115
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.3k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
13.5k
        case (action::move):
112
13.5k
          Derived::move(*current, *other);
113
13.5k
          break;
114
20.3k
      }
115
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.3k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
13.5k
        case (action::move):
112
13.5k
          Derived::move(*current, *other);
113
13.5k
          break;
114
20.3k
      }
115
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_6> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.3k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
13.5k
        case (action::move):
112
13.5k
          Derived::move(*current, *other);
113
13.5k
          break;
114
20.3k
      }
115
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_7> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.3k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
13.5k
        case (action::move):
112
13.5k
          Derived::move(*current, *other);
113
13.5k
          break;
114
20.3k
      }
115
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_8> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.3k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
13.5k
        case (action::move):
112
13.5k
          Derived::move(*current, *other);
113
13.5k
          break;
114
20.3k
      }
115
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_9> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.3k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
13.5k
        case (action::move):
112
13.5k
          Derived::move(*current, *other);
113
13.5k
          break;
114
20.3k
      }
115
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::large_handler<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
40.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
40.8k
      switch (act) {
108
12.5k
        case (action::destroy):
109
12.5k
          Derived::destroy(*current);
110
12.5k
          break;
111
28.2k
        case (action::move):
112
28.2k
          Derived::move(*current, *other);
113
28.2k
          break;
114
40.8k
      }
115
40.8k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_10> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.3k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
13.5k
        case (action::move):
112
13.5k
          Derived::move(*current, *other);
113
13.5k
          break;
114
20.3k
      }
115
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::handler_base<ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_11> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
20.3k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
20.3k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
13.5k
        case (action::move):
112
13.5k
          Derived::move(*current, *other);
113
13.5k
          break;
114
20.3k
      }
115
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::handler_base<ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_12> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
6.79k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
6.79k
      switch (act) {
108
6.79k
        case (action::destroy):
109
6.79k
          Derived::destroy(*current);
110
6.79k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
6.79k
      }
115
6.79k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
9.40k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
9.40k
      switch (act) {
108
3.13k
        case (action::destroy):
109
3.13k
          Derived::destroy(*current);
110
3.13k
          break;
111
6.26k
        case (action::move):
112
6.26k
          Derived::move(*current, *other);
113
6.26k
          break;
114
9.40k
      }
115
9.40k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::small_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
85.1k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
85.1k
      switch (act) {
108
22.5k
        case (action::destroy):
109
22.5k
          Derived::destroy(*current);
110
22.5k
          break;
111
62.6k
        case (action::move):
112
62.6k
          Derived::move(*current, *other);
113
62.6k
          break;
114
85.1k
      }
115
85.1k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
48.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
48.8k
      switch (act) {
108
22.5k
        case (action::destroy):
109
22.5k
          Derived::destroy(*current);
110
22.5k
          break;
111
26.3k
        case (action::move):
112
26.3k
          Derived::move(*current, *other);
113
26.3k
          break;
114
48.8k
      }
115
48.8k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::handler_base<ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
106
17.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
17.5k
      switch (act) {
108
17.5k
        case (action::destroy):
109
17.5k
          Derived::destroy(*current);
110
17.5k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
17.5k
      }
115
17.5k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::handler_base<ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_1> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage*)
Line
Count
Source
106
3.13k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
3.13k
      switch (act) {
108
3.13k
        case (action::destroy):
109
3.13k
          Derived::destroy(*current);
110
3.13k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
3.13k
      }
115
3.13k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::handler_base<ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
12
    static void handle(action act, storage* current, storage* other = nullptr) {
107
12
      switch (act) {
108
0
        case (action::destroy):
109
0
          Derived::destroy(*current);
110
0
          break;
111
12
        case (action::move):
112
12
          Derived::move(*current, *other);
113
12
          break;
114
12
      }
115
12
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::handler_base<ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#2}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
8
    static void handle(action act, storage* current, storage* other = nullptr) {
107
8
      switch (act) {
108
0
        case (action::destroy):
109
0
          Derived::destroy(*current);
110
0
          break;
111
8
        case (action::move):
112
8
          Derived::move(*current, *other);
113
8
          break;
114
8
      }
115
8
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::handler_base<ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#3}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
4
    static void handle(action act, storage* current, storage* other = nullptr) {
107
4
      switch (act) {
108
0
        case (action::destroy):
109
0
          Derived::destroy(*current);
110
0
          break;
111
4
        case (action::move):
112
4
          Derived::move(*current, *other);
113
4
          break;
114
4
      }
115
4
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::handler_base<ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#4}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
4
    static void handle(action act, storage* current, storage* other = nullptr) {
107
4
      switch (act) {
108
0
        case (action::destroy):
109
0
          Derived::destroy(*current);
110
0
          break;
111
4
        case (action::move):
112
4
          Derived::move(*current, *other);
113
4
          break;
114
4
      }
115
4
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::handler_base<ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
203k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
203k
      switch (act) {
108
203k
        case (action::destroy):
109
203k
          Derived::destroy(*current);
110
203k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
203k
      }
115
203k
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::handler_base<ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
106
203k
    static void handle(action act, storage* current, storage* other = nullptr) {
107
203k
      switch (act) {
108
203k
        case (action::destroy):
109
203k
          Derived::destroy(*current);
110
203k
          break;
111
0
        case (action::move):
112
0
          Derived::move(*current, *other);
113
0
          break;
114
203k
      }
115
203k
    }
116
  };
117
118
  template <class T>
119
  struct small_handler : handler_base<small_handler<T>> {
120
    template <class... Args>
121
6.66M
    static void create(storage& s, Args&&... args) {
122
6.66M
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
6.66M
    }
void ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::create<{lambda(us_socket_t*, char*, int)#1}>(ofats::any_detail::storage&, {lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
121
576k
    static void create(storage& s, Args&&... args) {
122
576k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
576k
    }
void ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>::create<{lambda(us_socket_t*, char*, int)#1}>(ofats::any_detail::storage&, {lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
121
576k
    static void create(storage& s, Args&&... args) {
122
576k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
576k
    }
Unexecuted instantiation: void ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::create<{lambda(unsigned long)#1}>(ofats::any_detail::storage&, {lambda(unsigned long)#1}&&)
void ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::create<{lambda(auto:1*, auto:2*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
121
17.2k
    static void create(storage& s, Args&&... args) {
122
17.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.2k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::create<{lambda(uWS::Loop*)#1}>(ofats::any_detail::storage&, {lambda(uWS::Loop*)#1}&&)
Line
Count
Source
121
11.4k
    static void create(storage& s, Args&&... args) {
122
11.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
11.4k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::create<{lambda(uWS::Loop*)#2}>(ofats::any_detail::storage&, {lambda(uWS::Loop*)#2}&&)
Line
Count
Source
121
11.4k
    static void create(storage& s, Args&&... args) {
122
11.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
11.4k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
11.4k
    static void create(storage& s, Args&&... args) {
122
11.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
11.4k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_0>::create<test()::$_0>(ofats::any_detail::storage&, test()::$_0&&)
Line
Count
Source
121
17.2k
    static void create(storage& s, Args&&... args) {
122
17.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.2k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::create<test()::$_1>(ofats::any_detail::storage&, test()::$_1&&)
Line
Count
Source
121
17.2k
    static void create(storage& s, Args&&... args) {
122
17.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.2k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_2>::create<test()::$_2>(ofats::any_detail::storage&, test()::$_2&&)
Line
Count
Source
121
17.2k
    static void create(storage& s, Args&&... args) {
122
17.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.2k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::create<test()::$_3>(ofats::any_detail::storage&, test()::$_3&&)
Line
Count
Source
121
17.2k
    static void create(storage& s, Args&&... args) {
122
17.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.2k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::create<test()::$_4>(ofats::any_detail::storage&, test()::$_4&&)
Line
Count
Source
121
17.2k
    static void create(storage& s, Args&&... args) {
122
17.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.2k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::create<test()::$_5>(ofats::any_detail::storage&, test()::$_5&&)
Line
Count
Source
121
17.2k
    static void create(storage& s, Args&&... args) {
122
17.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
17.2k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_6>::create<test()::$_6>(ofats::any_detail::storage&, test()::$_6&&)
Line
Count
Source
121
5.74k
    static void create(storage& s, Args&&... args) {
122
5.74k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
5.74k
    }
void ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::create<{lambda(us_socket_t*, char*, int)#1}>(ofats::any_detail::storage&, {lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
121
2.10M
    static void create(storage& s, Args&&... args) {
122
2.10M
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
2.10M
    }
void ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>::create<{lambda(us_socket_t*, char*, int)#1}>(ofats::any_detail::storage&, {lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
121
2.10M
    static void create(storage& s, Args&&... args) {
122
2.10M
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
2.10M
    }
Unexecuted instantiation: void ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::create<{lambda(unsigned long)#1}>(ofats::any_detail::storage&, {lambda(unsigned long)#1}&&)
void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::create<{lambda(auto:1*, auto:2*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
121
48.9k
    static void create(storage& s, Args&&... args) {
122
48.9k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
48.9k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::create<{lambda(uWS::Loop*)#1}>(ofats::any_detail::storage&, {lambda(uWS::Loop*)#1}&&)
Line
Count
Source
121
12.8k
    static void create(storage& s, Args&&... args) {
122
12.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
12.8k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::create<{lambda(uWS::Loop*)#2}>(ofats::any_detail::storage&, {lambda(uWS::Loop*)#2}&&)
Line
Count
Source
121
12.8k
    static void create(storage& s, Args&&... args) {
122
12.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
12.8k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
32.0k
    static void create(storage& s, Args&&... args) {
122
32.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
32.0k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::create<test()::$_0>(ofats::any_detail::storage&, test()::$_0&&)
Line
Count
Source
121
19.2k
    static void create(storage& s, Args&&... args) {
122
19.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
19.2k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_1>::create<test()::$_1>(ofats::any_detail::storage&, test()::$_1&&)
Line
Count
Source
121
19.2k
    static void create(storage& s, Args&&... args) {
122
19.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
19.2k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
8.14k
    static void create(storage& s, Args&&... args) {
122
8.14k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
8.14k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
2.40k
    static void create(storage& s, Args&&... args) {
122
2.40k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
2.40k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::create<{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>(ofats::any_detail::storage&, {lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
121
6.92k
    static void create(storage& s, Args&&... args) {
122
6.92k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
6.92k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_2>::create<test()::$_2>(ofats::any_detail::storage&, test()::$_2&&)
Line
Count
Source
121
19.2k
    static void create(storage& s, Args&&... args) {
122
19.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
19.2k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_3>::create<test()::$_3>(ofats::any_detail::storage&, test()::$_3&&)
Line
Count
Source
121
19.2k
    static void create(storage& s, Args&&... args) {
122
19.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
19.2k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_4>::create<test()::$_4>(ofats::any_detail::storage&, test()::$_4&&)
Line
Count
Source
121
19.2k
    static void create(storage& s, Args&&... args) {
122
19.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
19.2k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_5>::create<test()::$_5>(ofats::any_detail::storage&, test()::$_5&&)
Line
Count
Source
121
19.2k
    static void create(storage& s, Args&&... args) {
122
19.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
19.2k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_6>::create<test()::$_6>(ofats::any_detail::storage&, test()::$_6&&)
Line
Count
Source
121
19.2k
    static void create(storage& s, Args&&... args) {
122
19.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
19.2k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::small_handler<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
34.9k
    static void create(storage& s, Args&&... args) {
122
34.9k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
34.9k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_7>::create<test()::$_7>(ofats::any_detail::storage&, test()::$_7&&)
Line
Count
Source
121
19.2k
    static void create(storage& s, Args&&... args) {
122
19.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
19.2k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_8>::create<test()::$_8>(ofats::any_detail::storage&, test()::$_8&&)
Line
Count
Source
121
19.2k
    static void create(storage& s, Args&&... args) {
122
19.2k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
19.2k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_9>::create<test()::$_9>(ofats::any_detail::storage&, test()::$_9&&)
Line
Count
Source
121
6.40k
    static void create(storage& s, Args&&... args) {
122
6.40k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
6.40k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::create<{lambda(uWS::Loop*)#1}>(ofats::any_detail::storage&, {lambda(uWS::Loop*)#1}&&)
Line
Count
Source
121
13.5k
    static void create(storage& s, Args&&... args) {
122
13.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
13.5k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::create<{lambda(uWS::Loop*)#2}>(ofats::any_detail::storage&, {lambda(uWS::Loop*)#2}&&)
Line
Count
Source
121
13.5k
    static void create(storage& s, Args&&... args) {
122
13.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
13.5k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
33.9k
    static void create(storage& s, Args&&... args) {
122
33.9k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
33.9k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_0>::create<test()::$_0>(ofats::any_detail::storage&, test()::$_0&&)
Line
Count
Source
121
20.3k
    static void create(storage& s, Args&&... args) {
122
20.3k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.3k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::create<test()::$_1>(ofats::any_detail::storage&, test()::$_1&&)
Line
Count
Source
121
20.3k
    static void create(storage& s, Args&&... args) {
122
20.3k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.3k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_2>::create<test()::$_2>(ofats::any_detail::storage&, test()::$_2&&)
Line
Count
Source
121
20.3k
    static void create(storage& s, Args&&... args) {
122
20.3k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.3k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::create<test()::$_3>(ofats::any_detail::storage&, test()::$_3&&)
Line
Count
Source
121
20.3k
    static void create(storage& s, Args&&... args) {
122
20.3k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.3k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::create<test()::$_4>(ofats::any_detail::storage&, test()::$_4&&)
Line
Count
Source
121
20.3k
    static void create(storage& s, Args&&... args) {
122
20.3k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.3k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::create<test()::$_5>(ofats::any_detail::storage&, test()::$_5&&)
Line
Count
Source
121
20.3k
    static void create(storage& s, Args&&... args) {
122
20.3k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.3k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_6>::create<test()::$_6>(ofats::any_detail::storage&, test()::$_6&&)
Line
Count
Source
121
20.3k
    static void create(storage& s, Args&&... args) {
122
20.3k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.3k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_7>::create<test()::$_7>(ofats::any_detail::storage&, test()::$_7&&)
Line
Count
Source
121
20.3k
    static void create(storage& s, Args&&... args) {
122
20.3k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.3k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_8>::create<test()::$_8>(ofats::any_detail::storage&, test()::$_8&&)
Line
Count
Source
121
20.3k
    static void create(storage& s, Args&&... args) {
122
20.3k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.3k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_9>::create<test()::$_9>(ofats::any_detail::storage&, test()::$_9&&)
Line
Count
Source
121
20.3k
    static void create(storage& s, Args&&... args) {
122
20.3k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.3k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_10>::create<test()::$_10>(ofats::any_detail::storage&, test()::$_10&&)
Line
Count
Source
121
20.3k
    static void create(storage& s, Args&&... args) {
122
20.3k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.3k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_11>::create<test()::$_11>(ofats::any_detail::storage&, test()::$_11&&)
Line
Count
Source
121
20.3k
    static void create(storage& s, Args&&... args) {
122
20.3k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
20.3k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_12>::create<test()::$_12>(ofats::any_detail::storage&, test()::$_12&&)
Line
Count
Source
121
6.79k
    static void create(storage& s, Args&&... args) {
122
6.79k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
6.79k
    }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::create<test()::$_0>(ofats::any_detail::storage&, test()::$_0&&)
Line
Count
Source
121
9.40k
    static void create(storage& s, Args&&... args) {
122
9.40k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
9.40k
    }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::small_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
121
85.1k
    static void create(storage& s, Args&&... args) {
122
85.1k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
85.1k
    }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_1>::create<test()::$_1>(ofats::any_detail::storage&, test()::$_1&&)
Line
Count
Source
121
3.13k
    static void create(storage& s, Args&&... args) {
122
3.13k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
3.13k
    }
void ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#1}>::create<{lambda(auto:1*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*)#1}&&)
Line
Count
Source
121
16
    static void create(storage& s, Args&&... args) {
122
16
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
16
    }
void ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#2}>::create<{lambda(auto:1*)#2}>(ofats::any_detail::storage&, {lambda(auto:1*)#2}&&)
Line
Count
Source
121
12
    static void create(storage& s, Args&&... args) {
122
12
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
12
    }
void ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#3}>::create<{lambda(auto:1*)#3}>(ofats::any_detail::storage&, {lambda(auto:1*)#3}&&)
Line
Count
Source
121
8
    static void create(storage& s, Args&&... args) {
122
8
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
8
    }
void ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#4}>::create<{lambda(auto:1*)#4}>(ofats::any_detail::storage&, {lambda(auto:1*)#4}&&)
Line
Count
Source
121
8
    static void create(storage& s, Args&&... args) {
122
8
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
8
    }
Http.cpp:void ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}>::create<{lambda(void*, uWS::HttpRequest*)#1}>(ofats::any_detail::storage&, {lambda(void*, uWS::HttpRequest*)#1}&&)
Line
Count
Source
121
203k
    static void create(storage& s, Args&&... args) {
122
203k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
203k
    }
Http.cpp:void ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::create<{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>(ofats::any_detail::storage&, {lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
121
203k
    static void create(storage& s, Args&&... args) {
122
203k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
123
203k
    }
124
125
6.66M
    static void destroy(storage& s) noexcept {
126
6.66M
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
6.66M
      value.~T();
128
6.66M
    }
ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
576k
    static void destroy(storage& s) noexcept {
126
576k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
576k
      value.~T();
128
576k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
576k
    static void destroy(storage& s) noexcept {
126
576k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
576k
      value.~T();
128
576k
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::destroy(ofats::any_detail::storage&)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.2k
    static void destroy(storage& s) noexcept {
126
17.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.2k
      value.~T();
128
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
11.4k
    static void destroy(storage& s) noexcept {
126
11.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
11.4k
      value.~T();
128
11.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
11.4k
    static void destroy(storage& s) noexcept {
126
11.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
11.4k
      value.~T();
128
11.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
11.4k
    static void destroy(storage& s) noexcept {
126
11.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
11.4k
      value.~T();
128
11.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_0>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.2k
    static void destroy(storage& s) noexcept {
126
17.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.2k
      value.~T();
128
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.2k
    static void destroy(storage& s) noexcept {
126
17.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.2k
      value.~T();
128
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_2>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.2k
    static void destroy(storage& s) noexcept {
126
17.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.2k
      value.~T();
128
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.2k
    static void destroy(storage& s) noexcept {
126
17.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.2k
      value.~T();
128
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.2k
    static void destroy(storage& s) noexcept {
126
17.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.2k
      value.~T();
128
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
17.2k
    static void destroy(storage& s) noexcept {
126
17.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
17.2k
      value.~T();
128
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_6>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
5.74k
    static void destroy(storage& s) noexcept {
126
5.74k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
5.74k
      value.~T();
128
5.74k
    }
ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
2.10M
    static void destroy(storage& s) noexcept {
126
2.10M
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
2.10M
      value.~T();
128
2.10M
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
2.10M
    static void destroy(storage& s) noexcept {
126
2.10M
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
2.10M
      value.~T();
128
2.10M
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::destroy(ofats::any_detail::storage&)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
48.9k
    static void destroy(storage& s) noexcept {
126
48.9k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
48.9k
      value.~T();
128
48.9k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
12.8k
    static void destroy(storage& s) noexcept {
126
12.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
12.8k
      value.~T();
128
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
12.8k
    static void destroy(storage& s) noexcept {
126
12.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
12.8k
      value.~T();
128
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
32.0k
    static void destroy(storage& s) noexcept {
126
32.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
32.0k
      value.~T();
128
32.0k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
19.2k
    static void destroy(storage& s) noexcept {
126
19.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
19.2k
      value.~T();
128
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_1>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
19.2k
    static void destroy(storage& s) noexcept {
126
19.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
19.2k
      value.~T();
128
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
8.14k
    static void destroy(storage& s) noexcept {
126
8.14k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
8.14k
      value.~T();
128
8.14k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
2.40k
    static void destroy(storage& s) noexcept {
126
2.40k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
2.40k
      value.~T();
128
2.40k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
6.92k
    static void destroy(storage& s) noexcept {
126
6.92k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
6.92k
      value.~T();
128
6.92k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_2>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
19.2k
    static void destroy(storage& s) noexcept {
126
19.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
19.2k
      value.~T();
128
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_3>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
19.2k
    static void destroy(storage& s) noexcept {
126
19.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
19.2k
      value.~T();
128
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_4>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
19.2k
    static void destroy(storage& s) noexcept {
126
19.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
19.2k
      value.~T();
128
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_5>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
19.2k
    static void destroy(storage& s) noexcept {
126
19.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
19.2k
      value.~T();
128
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_6>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
19.2k
    static void destroy(storage& s) noexcept {
126
19.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
19.2k
      value.~T();
128
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
34.9k
    static void destroy(storage& s) noexcept {
126
34.9k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
34.9k
      value.~T();
128
34.9k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_7>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
19.2k
    static void destroy(storage& s) noexcept {
126
19.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
19.2k
      value.~T();
128
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_8>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
19.2k
    static void destroy(storage& s) noexcept {
126
19.2k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
19.2k
      value.~T();
128
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_9>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
6.40k
    static void destroy(storage& s) noexcept {
126
6.40k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
6.40k
      value.~T();
128
6.40k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
13.5k
    static void destroy(storage& s) noexcept {
126
13.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
13.5k
      value.~T();
128
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
13.5k
    static void destroy(storage& s) noexcept {
126
13.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
13.5k
      value.~T();
128
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
33.9k
    static void destroy(storage& s) noexcept {
126
33.9k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
33.9k
      value.~T();
128
33.9k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_0>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.3k
    static void destroy(storage& s) noexcept {
126
20.3k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.3k
      value.~T();
128
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.3k
    static void destroy(storage& s) noexcept {
126
20.3k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.3k
      value.~T();
128
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_2>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.3k
    static void destroy(storage& s) noexcept {
126
20.3k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.3k
      value.~T();
128
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.3k
    static void destroy(storage& s) noexcept {
126
20.3k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.3k
      value.~T();
128
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.3k
    static void destroy(storage& s) noexcept {
126
20.3k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.3k
      value.~T();
128
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.3k
    static void destroy(storage& s) noexcept {
126
20.3k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.3k
      value.~T();
128
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_6>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.3k
    static void destroy(storage& s) noexcept {
126
20.3k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.3k
      value.~T();
128
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_7>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.3k
    static void destroy(storage& s) noexcept {
126
20.3k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.3k
      value.~T();
128
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_8>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.3k
    static void destroy(storage& s) noexcept {
126
20.3k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.3k
      value.~T();
128
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_9>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.3k
    static void destroy(storage& s) noexcept {
126
20.3k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.3k
      value.~T();
128
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_10>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.3k
    static void destroy(storage& s) noexcept {
126
20.3k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.3k
      value.~T();
128
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_11>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
20.3k
    static void destroy(storage& s) noexcept {
126
20.3k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
20.3k
      value.~T();
128
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_12>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
6.79k
    static void destroy(storage& s) noexcept {
126
6.79k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
6.79k
      value.~T();
128
6.79k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
9.40k
    static void destroy(storage& s) noexcept {
126
9.40k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
9.40k
      value.~T();
128
9.40k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
85.1k
    static void destroy(storage& s) noexcept {
126
85.1k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
85.1k
      value.~T();
128
85.1k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_1>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
3.13k
    static void destroy(storage& s) noexcept {
126
3.13k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
3.13k
      value.~T();
128
3.13k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
12
    static void destroy(storage& s) noexcept {
126
12
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
12
      value.~T();
128
12
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#2}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
8
    static void destroy(storage& s) noexcept {
126
8
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
8
      value.~T();
128
8
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#3}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
4
    static void destroy(storage& s) noexcept {
126
4
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
4
      value.~T();
128
4
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#4}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
4
    static void destroy(storage& s) noexcept {
126
4
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
4
      value.~T();
128
4
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
203k
    static void destroy(storage& s) noexcept {
126
203k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
203k
      value.~T();
128
203k
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
125
203k
    static void destroy(storage& s) noexcept {
126
203k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
127
203k
      value.~T();
128
203k
    }
129
130
579k
    static void move(storage& dst, storage& src) noexcept {
131
579k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
579k
      destroy(src);
133
579k
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>)
Unexecuted instantiation: ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>)
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
11.4k
    static void move(storage& dst, storage& src) noexcept {
131
11.4k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.4k
      destroy(src);
133
11.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
5.74k
    static void move(storage& dst, storage& src) noexcept {
131
5.74k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
5.74k
      destroy(src);
133
5.74k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
5.74k
    static void move(storage& dst, storage& src) noexcept {
131
5.74k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
5.74k
      destroy(src);
133
5.74k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
5.74k
    static void move(storage& dst, storage& src) noexcept {
131
5.74k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
5.74k
      destroy(src);
133
5.74k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_0>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
11.4k
    static void move(storage& dst, storage& src) noexcept {
131
11.4k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.4k
      destroy(src);
133
11.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
11.4k
    static void move(storage& dst, storage& src) noexcept {
131
11.4k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.4k
      destroy(src);
133
11.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_2>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
11.4k
    static void move(storage& dst, storage& src) noexcept {
131
11.4k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.4k
      destroy(src);
133
11.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
11.4k
    static void move(storage& dst, storage& src) noexcept {
131
11.4k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.4k
      destroy(src);
133
11.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
11.4k
    static void move(storage& dst, storage& src) noexcept {
131
11.4k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.4k
      destroy(src);
133
11.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
11.4k
    static void move(storage& dst, storage& src) noexcept {
131
11.4k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
11.4k
      destroy(src);
133
11.4k
    }
Unexecuted instantiation: EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_6>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Unexecuted instantiation: ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>)
Unexecuted instantiation: ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>)
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
32.6k
    static void move(storage& dst, storage& src) noexcept {
131
32.6k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
32.6k
      destroy(src);
133
32.6k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
6.40k
    static void move(storage& dst, storage& src) noexcept {
131
6.40k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
6.40k
      destroy(src);
133
6.40k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
6.40k
    static void move(storage& dst, storage& src) noexcept {
131
6.40k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
6.40k
      destroy(src);
133
6.40k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
19.2k
    static void move(storage& dst, storage& src) noexcept {
131
19.2k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
19.2k
      destroy(src);
133
19.2k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
12.8k
    static void move(storage& dst, storage& src) noexcept {
131
12.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
12.8k
      destroy(src);
133
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_1>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
12.8k
    static void move(storage& dst, storage& src) noexcept {
131
12.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
12.8k
      destroy(src);
133
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
5.84k
    static void move(storage& dst, storage& src) noexcept {
131
5.84k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
5.84k
      destroy(src);
133
5.84k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}>)
Line
Count
Source
130
1.32k
    static void move(storage& dst, storage& src) noexcept {
131
1.32k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
1.32k
      destroy(src);
133
1.32k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
4.61k
    static void move(storage& dst, storage& src) noexcept {
131
4.61k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
4.61k
      destroy(src);
133
4.61k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_2>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
12.8k
    static void move(storage& dst, storage& src) noexcept {
131
12.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
12.8k
      destroy(src);
133
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_3>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
12.8k
    static void move(storage& dst, storage& src) noexcept {
131
12.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
12.8k
      destroy(src);
133
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_4>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
12.8k
    static void move(storage& dst, storage& src) noexcept {
131
12.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
12.8k
      destroy(src);
133
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_5>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
12.8k
    static void move(storage& dst, storage& src) noexcept {
131
12.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
12.8k
      destroy(src);
133
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_6>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
12.8k
    static void move(storage& dst, storage& src) noexcept {
131
12.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
12.8k
      destroy(src);
133
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
23.9k
    static void move(storage& dst, storage& src) noexcept {
131
23.9k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
23.9k
      destroy(src);
133
23.9k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_7>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
12.8k
    static void move(storage& dst, storage& src) noexcept {
131
12.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
12.8k
      destroy(src);
133
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_8>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
12.8k
    static void move(storage& dst, storage& src) noexcept {
131
12.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
12.8k
      destroy(src);
133
12.8k
    }
Unexecuted instantiation: EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_9>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
6.79k
    static void move(storage& dst, storage& src) noexcept {
131
6.79k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
6.79k
      destroy(src);
133
6.79k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
6.79k
    static void move(storage& dst, storage& src) noexcept {
131
6.79k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
6.79k
      destroy(src);
133
6.79k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
20.3k
    static void move(storage& dst, storage& src) noexcept {
131
20.3k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
20.3k
      destroy(src);
133
20.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_0>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.5k
    static void move(storage& dst, storage& src) noexcept {
131
13.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.5k
      destroy(src);
133
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.5k
    static void move(storage& dst, storage& src) noexcept {
131
13.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.5k
      destroy(src);
133
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_2>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.5k
    static void move(storage& dst, storage& src) noexcept {
131
13.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.5k
      destroy(src);
133
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.5k
    static void move(storage& dst, storage& src) noexcept {
131
13.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.5k
      destroy(src);
133
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.5k
    static void move(storage& dst, storage& src) noexcept {
131
13.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.5k
      destroy(src);
133
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.5k
    static void move(storage& dst, storage& src) noexcept {
131
13.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.5k
      destroy(src);
133
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_6>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.5k
    static void move(storage& dst, storage& src) noexcept {
131
13.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.5k
      destroy(src);
133
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_7>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.5k
    static void move(storage& dst, storage& src) noexcept {
131
13.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.5k
      destroy(src);
133
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_8>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.5k
    static void move(storage& dst, storage& src) noexcept {
131
13.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.5k
      destroy(src);
133
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_9>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.5k
    static void move(storage& dst, storage& src) noexcept {
131
13.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.5k
      destroy(src);
133
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_10>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.5k
    static void move(storage& dst, storage& src) noexcept {
131
13.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.5k
      destroy(src);
133
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_11>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
13.5k
    static void move(storage& dst, storage& src) noexcept {
131
13.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
13.5k
      destroy(src);
133
13.5k
    }
Unexecuted instantiation: EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_12>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
130
6.26k
    static void move(storage& dst, storage& src) noexcept {
131
6.26k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
6.26k
      destroy(src);
133
6.26k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
62.6k
    static void move(storage& dst, storage& src) noexcept {
131
62.6k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
62.6k
      destroy(src);
133
62.6k
    }
Unexecuted instantiation: AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_1>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
12
    static void move(storage& dst, storage& src) noexcept {
131
12
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
12
      destroy(src);
133
12
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#2}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
8
    static void move(storage& dst, storage& src) noexcept {
131
8
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
8
      destroy(src);
133
8
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#3}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
4
    static void move(storage& dst, storage& src) noexcept {
131
4
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
4
      destroy(src);
133
4
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#4}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
130
4
    static void move(storage& dst, storage& src) noexcept {
131
4
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
132
4
      destroy(src);
133
4
    }
Unexecuted instantiation: Http.cpp:ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Unexecuted instantiation: Http.cpp:ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
134
135
22.2M
    static R call(storage& s, ArgTypes... args) {
136
22.2M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
22.2M
                         std::forward<ArgTypes>(args)...);
138
22.2M
    }
ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::call(ofats::any_detail::storage&, void*, uWS::HttpRequest*)
Line
Count
Source
135
135k
    static R call(storage& s, ArgTypes... args) {
136
135k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
135k
                         std::forward<ArgTypes>(args)...);
138
135k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>::call(ofats::any_detail::storage&, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)
Line
Count
Source
135
22.6k
    static R call(storage& s, ArgTypes... args) {
136
22.6k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
22.6k
                         std::forward<ArgTypes>(args)...);
138
22.6k
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::call(ofats::any_detail::storage&, unsigned long)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::call(ofats::any_detail::storage&, uWS::HttpResponse<true>*, uWS::HttpRequest*)
Line
Count
Source
135
22.2k
    static R call(storage& s, ArgTypes... args) {
136
22.2k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
22.2k
                         std::forward<ArgTypes>(args)...);
138
22.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::call(ofats::any_detail::storage&, uWS::Loop*)
Line
Count
Source
135
2.95M
    static R call(storage& s, ArgTypes... args) {
136
2.95M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.95M
                         std::forward<ArgTypes>(args)...);
138
2.95M
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::call(ofats::any_detail::storage&, uWS::Loop*)
Line
Count
Source
135
2.95M
    static R call(storage& s, ArgTypes... args) {
136
2.95M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.95M
                         std::forward<ArgTypes>(args)...);
138
2.95M
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
5.74k
    static R call(storage& s, ArgTypes... args) {
136
5.74k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
5.74k
                         std::forward<ArgTypes>(args)...);
138
5.74k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_0>::call(ofats::any_detail::storage&, uWS::WebSocket<true, true, test()::PerSocketData>*)
Line
Count
Source
135
113k
    static R call(storage& s, ArgTypes... args) {
136
113k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
113k
                         std::forward<ArgTypes>(args)...);
138
113k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::call(ofats::any_detail::storage&, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
135
1.12M
    static R call(storage& s, ArgTypes... args) {
136
1.12M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.12M
                         std::forward<ArgTypes>(args)...);
138
1.12M
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*>::small_handler<test()::$_2>::call(ofats::any_detail::storage&, uWS::WebSocket<true, true, test()::PerSocketData>*)
Line
Count
Source
135
7.58k
    static R call(storage& s, ArgTypes... args) {
136
7.58k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
7.58k
                         std::forward<ArgTypes>(args)...);
138
7.58k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::call(ofats::any_detail::storage&, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
7.85k
    static R call(storage& s, ArgTypes... args) {
136
7.85k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
7.85k
                         std::forward<ArgTypes>(args)...);
138
7.85k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::call(ofats::any_detail::storage&, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
551
    static R call(storage& s, ArgTypes... args) {
136
551
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
551
                         std::forward<ArgTypes>(args)...);
138
551
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::call(ofats::any_detail::storage&, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
113k
    static R call(storage& s, ArgTypes... args) {
136
113k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
113k
                         std::forward<ArgTypes>(args)...);
138
113k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_6>::call(ofats::any_detail::storage&, us_listen_socket_t*)
Line
Count
Source
135
5.74k
    static R call(storage& s, ArgTypes... args) {
136
5.74k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
5.74k
                         std::forward<ArgTypes>(args)...);
138
5.74k
    }
ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}>::call(ofats::any_detail::storage&, void*, uWS::HttpRequest*)
Line
Count
Source
135
332k
    static R call(storage& s, ArgTypes... args) {
136
332k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
332k
                         std::forward<ArgTypes>(args)...);
138
332k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>::call(ofats::any_detail::storage&, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)
Line
Count
Source
135
109k
    static R call(storage& s, ArgTypes... args) {
136
109k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
109k
                         std::forward<ArgTypes>(args)...);
138
109k
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<bool, unsigned long>::small_handler<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}>::call(ofats::any_detail::storage&, unsigned long)
ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
135
46.9k
    static R call(storage& s, ArgTypes... args) {
136
46.9k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
46.9k
                         std::forward<ArgTypes>(args)...);
138
46.9k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::call(ofats::any_detail::storage&, uWS::Loop*)
Line
Count
Source
135
2.96M
    static R call(storage& s, ArgTypes... args) {
136
2.96M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.96M
                         std::forward<ArgTypes>(args)...);
138
2.96M
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::call(ofats::any_detail::storage&, uWS::Loop*)
Line
Count
Source
135
2.96M
    static R call(storage& s, ArgTypes... args) {
136
2.96M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.96M
                         std::forward<ArgTypes>(args)...);
138
2.96M
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
12.8k
    static R call(storage& s, ArgTypes... args) {
136
12.8k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
12.8k
                         std::forward<ArgTypes>(args)...);
138
12.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
135
9.73k
    static R call(storage& s, ArgTypes... args) {
136
9.73k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
9.73k
                         std::forward<ArgTypes>(args)...);
138
9.73k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_1>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
135
2.30k
    static R call(storage& s, ArgTypes... args) {
136
2.30k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
2.30k
                         std::forward<ArgTypes>(args)...);
138
2.30k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
1.08k
    static R call(storage& s, ArgTypes... args) {
136
1.08k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.08k
                         std::forward<ArgTypes>(args)...);
138
1.08k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
908
    static R call(storage& s, ArgTypes... args) {
136
908
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
908
                         std::forward<ArgTypes>(args)...);
138
908
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::small_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::call(ofats::any_detail::storage&, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
135
29.5k
    static R call(storage& s, ArgTypes... args) {
136
29.5k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
29.5k
                         std::forward<ArgTypes>(args)...);
138
29.5k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_2>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
135
1.87k
    static R call(storage& s, ArgTypes... args) {
136
1.87k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.87k
                         std::forward<ArgTypes>(args)...);
138
1.87k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_3>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
135
38.7k
    static R call(storage& s, ArgTypes... args) {
136
38.7k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
38.7k
                         std::forward<ArgTypes>(args)...);
138
38.7k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_4>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
135
11.9k
    static R call(storage& s, ArgTypes... args) {
136
11.9k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
11.9k
                         std::forward<ArgTypes>(args)...);
138
11.9k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_5>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
135
3.88k
    static R call(storage& s, ArgTypes... args) {
136
3.88k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
3.88k
                         std::forward<ArgTypes>(args)...);
138
3.88k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_6>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
10.9k
    static R call(storage& s, ArgTypes... args) {
136
10.9k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
10.9k
                         std::forward<ArgTypes>(args)...);
138
10.9k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
8.26k
    static R call(storage& s, ArgTypes... args) {
136
8.26k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
8.26k
                         std::forward<ArgTypes>(args)...);
138
8.26k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_7>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
1.10k
    static R call(storage& s, ArgTypes... args) {
136
1.10k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.10k
                         std::forward<ArgTypes>(args)...);
138
1.10k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_8>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
38.7k
    static R call(storage& s, ArgTypes... args) {
136
38.7k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
38.7k
                         std::forward<ArgTypes>(args)...);
138
38.7k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_9>::call(ofats::any_detail::storage&, us_listen_socket_t*)
Line
Count
Source
135
6.40k
    static R call(storage& s, ArgTypes... args) {
136
6.40k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
6.40k
                         std::forward<ArgTypes>(args)...);
138
6.40k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}>::call(ofats::any_detail::storage&, uWS::Loop*)
Line
Count
Source
135
3.67M
    static R call(storage& s, ArgTypes... args) {
136
3.67M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
3.67M
                         std::forward<ArgTypes>(args)...);
138
3.67M
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::Loop*>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}>::call(ofats::any_detail::storage&, uWS::Loop*)
Line
Count
Source
135
3.67M
    static R call(storage& s, ArgTypes... args) {
136
3.67M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
3.67M
                         std::forward<ArgTypes>(args)...);
138
3.67M
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::small_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
13.5k
    static R call(storage& s, ArgTypes... args) {
136
13.5k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
13.5k
                         std::forward<ArgTypes>(args)...);
138
13.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_0>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
135
170k
    static R call(storage& s, ArgTypes... args) {
136
170k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
170k
                         std::forward<ArgTypes>(args)...);
138
170k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_1>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
135
123k
    static R call(storage& s, ArgTypes... args) {
136
123k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
123k
                         std::forward<ArgTypes>(args)...);
138
123k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_2>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
135
33.7k
    static R call(storage& s, ArgTypes... args) {
136
33.7k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
33.7k
                         std::forward<ArgTypes>(args)...);
138
33.7k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_3>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
1.09k
    static R call(storage& s, ArgTypes... args) {
136
1.09k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.09k
                         std::forward<ArgTypes>(args)...);
138
1.09k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_4>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
446
    static R call(storage& s, ArgTypes... args) {
136
446
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
446
                         std::forward<ArgTypes>(args)...);
138
446
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_5>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
170k
    static R call(storage& s, ArgTypes... args) {
136
170k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
170k
                         std::forward<ArgTypes>(args)...);
138
170k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_6>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
135
37.3k
    static R call(storage& s, ArgTypes... args) {
136
37.3k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
37.3k
                         std::forward<ArgTypes>(args)...);
138
37.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::small_handler<test()::$_7>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
135
13.4k
    static R call(storage& s, ArgTypes... args) {
136
13.4k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
13.4k
                         std::forward<ArgTypes>(args)...);
138
13.4k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*>::small_handler<test()::$_8>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
135
4.66k
    static R call(storage& s, ArgTypes... args) {
136
4.66k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
4.66k
                         std::forward<ArgTypes>(args)...);
138
4.66k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_9>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
12.5k
    static R call(storage& s, ArgTypes... args) {
136
12.5k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
12.5k
                         std::forward<ArgTypes>(args)...);
138
12.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_10>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
1.63k
    static R call(storage& s, ArgTypes... args) {
136
1.63k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.63k
                         std::forward<ArgTypes>(args)...);
138
1.63k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::small_handler<test()::$_11>::call(ofats::any_detail::storage&, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
135
37.3k
    static R call(storage& s, ArgTypes... args) {
136
37.3k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
37.3k
                         std::forward<ArgTypes>(args)...);
138
37.3k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_12>::call(ofats::any_detail::storage&, us_listen_socket_t*)
Line
Count
Source
135
6.79k
    static R call(storage& s, ArgTypes... args) {
136
6.79k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
6.79k
                         std::forward<ArgTypes>(args)...);
138
6.79k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::small_handler<test()::$_0>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
135
22.5k
    static R call(storage& s, ArgTypes... args) {
136
22.5k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
22.5k
                         std::forward<ArgTypes>(args)...);
138
22.5k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::small_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
135
4.94k
    static R call(storage& s, ArgTypes... args) {
136
4.94k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
4.94k
                         std::forward<ArgTypes>(args)...);
138
4.94k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_1>::call(ofats::any_detail::storage&, us_listen_socket_t*)
Line
Count
Source
135
3.13k
    static R call(storage& s, ArgTypes... args) {
136
3.13k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
3.13k
                         std::forward<ArgTypes>(args)...);
138
3.13k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#1}>::call(ofats::any_detail::storage&, uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
135
8.69k
    static R call(storage& s, ArgTypes... args) {
136
8.69k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
8.69k
                         std::forward<ArgTypes>(args)...);
138
8.69k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#2}>::call(ofats::any_detail::storage&, uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
135
1.44k
    static R call(storage& s, ArgTypes... args) {
136
1.44k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
1.44k
                         std::forward<ArgTypes>(args)...);
138
1.44k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#3}>::call(ofats::any_detail::storage&, uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
135
197
    static R call(storage& s, ArgTypes... args) {
136
197
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
197
                         std::forward<ArgTypes>(args)...);
138
197
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<StaticData::RouterData>*>::small_handler<StaticData::small_handler()::{lambda(auto:1*)#4}>::call(ofats::any_detail::storage&, uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
135
17.1k
    static R call(storage& s, ArgTypes... args) {
136
17.1k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
17.1k
                         std::forward<ArgTypes>(args)...);
138
17.1k
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, uWS::HttpRequest*>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}>::call(ofats::any_detail::storage&, void*, uWS::HttpRequest*)
Line
Count
Source
135
28.7k
    static R call(storage& s, ArgTypes... args) {
136
28.7k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
28.7k
                         std::forward<ArgTypes>(args)...);
138
28.7k
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::small_handler<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>::call(ofats::any_detail::storage&, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)
Line
Count
Source
135
81.0k
    static R call(storage& s, ArgTypes... args) {
136
81.0k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
137
81.0k
                         std::forward<ArgTypes>(args)...);
138
81.0k
    }
139
  };
140
141
  template <class T>
142
  struct large_handler : handler_base<large_handler<T>> {
143
    template <class... Args>
144
164k
    static void create(storage& s, Args&&... args) {
145
164k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
164k
    }
void ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::large_handler<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::create<{lambda(auto:1*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*)#1}&&)
Line
Count
Source
144
11.4k
    static void create(storage& s, Args&&... args) {
145
11.4k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
11.4k
    }
EpollEchoServerPubSub.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::create<{lambda(auto:1*, auto:2*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
144
5.74k
    static void create(storage& s, Args&&... args) {
145
5.74k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
5.74k
    }
void ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::large_handler<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::create<{lambda(auto:1*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*)#1}&&)
Line
Count
Source
144
65.0k
    static void create(storage& s, Args&&... args) {
145
65.0k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
65.0k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::create<{lambda(auto:1*, auto:2*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
144
12.8k
    static void create(storage& s, Args&&... args) {
145
12.8k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
12.8k
    }
void ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::large_handler<uWS::HttpResponse<false>::onData(ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>&&)::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>::create<{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>(ofats::any_detail::storage&, {lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}&&)
Line
Count
Source
144
2.30k
    static void create(storage& s, Args&&... args) {
145
2.30k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
2.30k
    }
EpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::large_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}>::create<{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>(ofats::any_detail::storage&, {lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
144
1.22k
    static void create(storage& s, Args&&... args) {
145
1.22k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
1.22k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::create<{lambda(auto:1*, auto:2*)#1}>(ofats::any_detail::storage&, {lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
144
13.5k
    static void create(storage& s, Args&&... args) {
145
13.5k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
13.5k
    }
EpollEchoServer.cpp:void ofats::any_detail::handler_traits<void>::large_handler<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::create<{lambda()#1}>(ofats::any_detail::storage&, {lambda()#1}&&)
Line
Count
Source
144
12.5k
    static void create(storage& s, Args&&... args) {
145
12.5k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
12.5k
    }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}>::create<{lambda()#2}>(ofats::any_detail::storage&, {lambda()#2}&&)
Line
Count
Source
144
22.5k
    static void create(storage& s, Args&&... args) {
145
22.5k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
22.5k
    }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}>::create<{lambda()#2}>(ofats::any_detail::storage&, {lambda()#2}&&)
Line
Count
Source
144
17.5k
    static void create(storage& s, Args&&... args) {
145
17.5k
      s.ptr_ = new T(std::forward<Args>(args)...);
146
17.5k
    }
147
148
164k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::large_handler<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
11.4k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
5.74k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::large_handler<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
65.0k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
12.8k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::large_handler<uWS::HttpResponse<false>::onData(ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>&&)::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
2.30k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
1.22k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
13.5k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
12.5k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
22.5k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
148
17.5k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
149
150
275k
    static void move(storage& dst, storage& src) noexcept {
151
275k
      dst.ptr_ = src.ptr_;
152
275k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::large_handler<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
17.2k
    static void move(storage& dst, storage& src) noexcept {
151
17.2k
      dst.ptr_ = src.ptr_;
152
17.2k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
11.4k
    static void move(storage& dst, storage& src) noexcept {
151
11.4k
      dst.ptr_ = src.ptr_;
152
11.4k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::large_handler<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
133k
    static void move(storage& dst, storage& src) noexcept {
151
133k
      dst.ptr_ = src.ptr_;
152
133k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
25.6k
    static void move(storage& dst, storage& src) noexcept {
151
25.6k
      dst.ptr_ = src.ptr_;
152
25.6k
    }
ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::large_handler<uWS::HttpResponse<false>::onData(ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>&&)::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
5.84k
    static void move(storage& dst, storage& src) noexcept {
151
5.84k
      dst.ptr_ = src.ptr_;
152
5.84k
    }
Unexecuted instantiation: EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void>::large_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}>)
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
27.1k
    static void move(storage& dst, storage& src) noexcept {
151
27.1k
      dst.ptr_ = src.ptr_;
152
27.1k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
28.2k
    static void move(storage& dst, storage& src) noexcept {
151
28.2k
      dst.ptr_ = src.ptr_;
152
28.2k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
150
26.3k
    static void move(storage& dst, storage& src) noexcept {
151
26.3k
      dst.ptr_ = src.ptr_;
152
26.3k
    }
Unexecuted instantiation: AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}>)
153
154
945k
    static R call(storage& s, ArgTypes... args) {
155
945k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
945k
                         std::forward<ArgTypes>(args)...);
157
945k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::large_handler<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::call(ofats::any_detail::storage&, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)
Line
Count
Source
154
140k
    static R call(storage& s, ArgTypes... args) {
155
140k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
140k
                         std::forward<ArgTypes>(args)...);
157
140k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<true>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::call(ofats::any_detail::storage&, uWS::HttpResponse<true>*, uWS::HttpRequest*)
Line
Count
Source
154
117k
    static R call(storage& s, ArgTypes... args) {
155
117k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
117k
                         std::forward<ArgTypes>(args)...);
157
117k
    }
ofats::any_detail::handler_traits<bool, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::large_handler<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}>::call(ofats::any_detail::storage&, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)
Line
Count
Source
154
346k
    static R call(storage& s, ArgTypes... args) {
155
346k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
346k
                         std::forward<ArgTypes>(args)...);
157
346k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
154
50.4k
    static R call(storage& s, ArgTypes... args) {
155
50.4k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
50.4k
                         std::forward<ArgTypes>(args)...);
157
50.4k
    }
ofats::any_detail::handler_traits<void, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::large_handler<uWS::HttpResponse<false>::onData(ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>&&)::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>::call(ofats::any_detail::storage&, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)
Line
Count
Source
154
29.5k
    static R call(storage& s, ArgTypes... args) {
155
29.5k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
29.5k
                         std::forward<ArgTypes>(args)...);
157
29.5k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
154
1.22k
    static R call(storage& s, ArgTypes... args) {
155
1.22k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
1.22k
                         std::forward<ArgTypes>(args)...);
157
1.22k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, uWS::HttpResponse<false>*, uWS::HttpRequest*>::large_handler<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}>::call(ofats::any_detail::storage&, uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
154
212k
    static R call(storage& s, ArgTypes... args) {
155
212k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
212k
                         std::forward<ArgTypes>(args)...);
157
212k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
154
8.22k
    static R call(storage& s, ArgTypes... args) {
155
8.22k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
8.22k
                         std::forward<ArgTypes>(args)...);
157
8.22k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}>::call(ofats::any_detail::storage&)
Line
Count
Source
154
21.6k
    static R call(storage& s, ArgTypes... args) {
155
21.6k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
21.6k
                         std::forward<ArgTypes>(args)...);
157
21.6k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void>::large_handler<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}>::call(ofats::any_detail::storage&)
Line
Count
Source
154
17.5k
    static R call(storage& s, ArgTypes... args) {
155
17.5k
      return std::invoke(*static_cast<T*>(s.ptr_),
156
17.5k
                         std::forward<ArgTypes>(args)...);
157
17.5k
    }
158
  };
159
160
  template <class T>
161
  using handler = std::conditional_t<is_small_object_v<T>, small_handler<T>,
162
                                     large_handler<T>>;
163
};
164
165
template <class T>
166
struct is_in_place_type : std::false_type {};
167
168
template <class T>
169
struct is_in_place_type<std::in_place_type_t<T>> : std::true_type {};
170
171
template <class T>
172
inline constexpr auto is_in_place_type_v = is_in_place_type<T>::value;
173
174
template <class R, bool is_noexcept, class... ArgTypes>
175
class any_invocable_impl {
176
  template <class T>
177
  using handler =
178
      typename any_detail::handler_traits<R, ArgTypes...>::template handler<T>;
179
180
  using storage = any_detail::storage;
181
  using action = any_detail::action;
182
  using handle_func = void (*)(any_detail::action, any_detail::storage*,
183
                               any_detail::storage*);
184
  using call_func = R (*)(any_detail::storage&, ArgTypes...);
185
186
 public:
187
  using result_type = R;
188
189
20.7M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, char const*>::any_invocable_impl()
Line
Count
Source
189
22.0k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::any_invocable_impl()
Line
Count
Source
189
4.83M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false>::any_invocable_impl()
Line
Count
Source
189
4.95M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::any_invocable_impl()
Line
Count
Source
189
4.83M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::any_invocable_impl()
Line
Count
Source
189
2.88M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::any_invocable_impl()
Line
Count
Source
189
2.88M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::any_invocable_impl()
Line
Count
Source
189
11.4k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::any_invocable_impl()
Line
Count
Source
189
11.4k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::any_invocable_impl()
Line
Count
Source
189
37.8k
  any_invocable_impl() noexcept = default;
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::any_invocable_impl()
Line
Count
Source
189
11.4k
  any_invocable_impl() noexcept = default;
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl()
Line
Count
Source
189
5.74k
  any_invocable_impl() noexcept = default;
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl()
Line
Count
Source
189
11.4k
  any_invocable_impl() noexcept = default;
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl()
Line
Count
Source
189
5.74k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::any_invocable_impl()
Line
Count
Source
189
22.0k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::any_invocable_impl()
Line
Count
Source
189
65.0k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::any_invocable_impl()
Line
Count
Source
189
65.0k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::any_invocable_impl()
Line
Count
Source
189
2.30k
  any_invocable_impl() noexcept = default;
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::any_invocable_impl()
Line
Count
Source
189
12.8k
  any_invocable_impl() noexcept = default;
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl()
Line
Count
Source
189
6.40k
  any_invocable_impl() noexcept = default;
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl()
Line
Count
Source
189
12.8k
  any_invocable_impl() noexcept = default;
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl()
Line
Count
Source
189
6.40k
  any_invocable_impl() noexcept = default;
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::any_invocable_impl()
Line
Count
Source
189
27.1k
  any_invocable_impl() noexcept = default;
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl()
Line
Count
Source
189
13.5k
  any_invocable_impl() noexcept = default;
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl()
Line
Count
Source
189
27.1k
  any_invocable_impl() noexcept = default;
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl()
Line
Count
Source
189
13.5k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::any_invocable_impl()
Line
Count
Source
189
16
  any_invocable_impl() noexcept = default;
190
1.31M
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
5.74k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
17.2k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
11.4k
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
1.22k
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<void, false>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
459k
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
459k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
11.4k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
5.74k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
11.4k
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
26.3k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
38.4k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
44.8k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
38.4k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
25.6k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
19.2k
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<void, false, char const*>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
6.40k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
40.7k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
27.1k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
27.1k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
13.5k
  any_invocable_impl(std::nullptr_t) noexcept {}
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(decltype(nullptr))
Line
Count
Source
190
27.1k
  any_invocable_impl(std::nullptr_t) noexcept {}
191
1.34M
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
1.34M
    if (rhs.handle_) {
193
652k
      handle_ = rhs.handle_;
194
652k
      handle_(action::move, &storage_, &rhs.storage_);
195
652k
      call_ = rhs.call_;
196
652k
      rhs.handle_ = nullptr;
197
652k
    }
198
1.34M
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::any_invocable_impl(ofats::any_detail::any_invocable_impl<bool, false, unsigned long>&&)
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>&&)
Line
Count
Source
191
17.2k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
17.2k
    if (rhs.handle_) {
193
17.2k
      handle_ = rhs.handle_;
194
17.2k
      handle_(action::move, &storage_, &rhs.storage_);
195
17.2k
      call_ = rhs.call_;
196
17.2k
      rhs.handle_ = nullptr;
197
17.2k
    }
198
17.2k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>&&)
Line
Count
Source
191
22.9k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
22.9k
    if (rhs.handle_) {
193
22.9k
      handle_ = rhs.handle_;
194
22.9k
      handle_(action::move, &storage_, &rhs.storage_);
195
22.9k
      call_ = rhs.call_;
196
22.9k
      rhs.handle_ = nullptr;
197
22.9k
    }
198
22.9k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>&&)
Line
Count
Source
191
37.8k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
37.8k
    if (rhs.handle_) {
193
37.8k
      handle_ = rhs.handle_;
194
37.8k
      handle_(action::move, &storage_, &rhs.storage_);
195
37.8k
      call_ = rhs.call_;
196
37.8k
      rhs.handle_ = nullptr;
197
37.8k
    }
198
37.8k
  }
ofats::any_detail::any_invocable_impl<void, false>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false>&&)
Line
Count
Source
191
150k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
150k
    if (rhs.handle_) {
193
150k
      handle_ = rhs.handle_;
194
150k
      handle_(action::move, &storage_, &rhs.storage_);
195
150k
      call_ = rhs.call_;
196
150k
      rhs.handle_ = nullptr;
197
150k
    }
198
150k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>&&)
Line
Count
Source
191
34.4k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
34.4k
    if (rhs.handle_) {
193
11.4k
      handle_ = rhs.handle_;
194
11.4k
      handle_(action::move, &storage_, &rhs.storage_);
195
11.4k
      call_ = rhs.call_;
196
11.4k
      rhs.handle_ = nullptr;
197
11.4k
    }
198
34.4k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&&)
Line
Count
Source
191
34.4k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
34.4k
    if (rhs.handle_) {
193
5.74k
      handle_ = rhs.handle_;
194
5.74k
      handle_(action::move, &storage_, &rhs.storage_);
195
5.74k
      call_ = rhs.call_;
196
5.74k
      rhs.handle_ = nullptr;
197
5.74k
    }
198
34.4k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&&)
Line
Count
Source
191
17.2k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
17.2k
    if (rhs.handle_) {
193
0
      handle_ = rhs.handle_;
194
0
      handle_(action::move, &storage_, &rhs.storage_);
195
0
      call_ = rhs.call_;
196
0
      rhs.handle_ = nullptr;
197
0
    }
198
17.2k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
191
17.2k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
17.2k
    if (rhs.handle_) {
193
5.74k
      handle_ = rhs.handle_;
194
5.74k
      handle_(action::move, &storage_, &rhs.storage_);
195
5.74k
      call_ = rhs.call_;
196
5.74k
      rhs.handle_ = nullptr;
197
5.74k
    }
198
17.2k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
191
34.4k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
34.4k
    if (rhs.handle_) {
193
11.4k
      handle_ = rhs.handle_;
194
11.4k
      handle_(action::move, &storage_, &rhs.storage_);
195
11.4k
      call_ = rhs.call_;
196
11.4k
      rhs.handle_ = nullptr;
197
11.4k
    }
198
34.4k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>&&)
Line
Count
Source
191
11.4k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
11.4k
    if (rhs.handle_) {
193
0
      handle_ = rhs.handle_;
194
0
      handle_(action::move, &storage_, &rhs.storage_);
195
0
      call_ = rhs.call_;
196
0
      rhs.handle_ = nullptr;
197
0
    }
198
11.4k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>&&)
Line
Count
Source
191
76.8k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
76.8k
    if (rhs.handle_) {
193
12.8k
      handle_ = rhs.handle_;
194
12.8k
      handle_(action::move, &storage_, &rhs.storage_);
195
12.8k
      call_ = rhs.call_;
196
12.8k
      rhs.handle_ = nullptr;
197
12.8k
    }
198
76.8k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&&)
Line
Count
Source
191
76.8k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
76.8k
    if (rhs.handle_) {
193
6.40k
      handle_ = rhs.handle_;
194
6.40k
      handle_(action::move, &storage_, &rhs.storage_);
195
6.40k
      call_ = rhs.call_;
196
6.40k
      rhs.handle_ = nullptr;
197
6.40k
    }
198
76.8k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&&)
Line
Count
Source
191
38.4k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
38.4k
    if (rhs.handle_) {
193
0
      handle_ = rhs.handle_;
194
0
      handle_(action::move, &storage_, &rhs.storage_);
195
0
      call_ = rhs.call_;
196
0
      rhs.handle_ = nullptr;
197
0
    }
198
38.4k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
191
38.4k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
38.4k
    if (rhs.handle_) {
193
6.40k
      handle_ = rhs.handle_;
194
6.40k
      handle_(action::move, &storage_, &rhs.storage_);
195
6.40k
      call_ = rhs.call_;
196
6.40k
      rhs.handle_ = nullptr;
197
6.40k
    }
198
38.4k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
191
76.8k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
76.8k
    if (rhs.handle_) {
193
12.8k
      handle_ = rhs.handle_;
194
12.8k
      handle_(action::move, &storage_, &rhs.storage_);
195
12.8k
      call_ = rhs.call_;
196
12.8k
      rhs.handle_ = nullptr;
197
12.8k
    }
198
76.8k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>&&)
Line
Count
Source
191
133k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
133k
    if (rhs.handle_) {
193
133k
      handle_ = rhs.handle_;
194
133k
      handle_(action::move, &storage_, &rhs.storage_);
195
133k
      call_ = rhs.call_;
196
133k
      rhs.handle_ = nullptr;
197
133k
    }
198
133k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>&&)
Line
Count
Source
191
130k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
130k
    if (rhs.handle_) {
193
130k
      handle_ = rhs.handle_;
194
130k
      handle_(action::move, &storage_, &rhs.storage_);
195
130k
      call_ = rhs.call_;
196
130k
      rhs.handle_ = nullptr;
197
130k
    }
198
130k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>&&)
Line
Count
Source
191
52.7k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
52.7k
    if (rhs.handle_) {
193
0
      handle_ = rhs.handle_;
194
0
      handle_(action::move, &storage_, &rhs.storage_);
195
0
      call_ = rhs.call_;
196
0
      rhs.handle_ = nullptr;
197
0
    }
198
52.7k
  }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>&&)
Line
Count
Source
191
2.30k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
2.30k
    if (rhs.handle_) {
193
2.30k
      handle_ = rhs.handle_;
194
2.30k
      handle_(action::move, &storage_, &rhs.storage_);
195
2.30k
      call_ = rhs.call_;
196
2.30k
      rhs.handle_ = nullptr;
197
2.30k
    }
198
2.30k
  }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>&&)
Line
Count
Source
191
4.61k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
4.61k
    if (rhs.handle_) {
193
4.61k
      handle_ = rhs.handle_;
194
4.61k
      handle_(action::move, &storage_, &rhs.storage_);
195
4.61k
      call_ = rhs.call_;
196
4.61k
      rhs.handle_ = nullptr;
197
4.61k
    }
198
4.61k
  }
ofats::any_detail::any_invocable_impl<void, false, char const*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, char const*>&&)
Line
Count
Source
191
6.40k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
6.40k
    if (rhs.handle_) {
193
0
      handle_ = rhs.handle_;
194
0
      handle_(action::move, &storage_, &rhs.storage_);
195
0
      call_ = rhs.call_;
196
0
      rhs.handle_ = nullptr;
197
0
    }
198
6.40k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>&&)
Line
Count
Source
191
81.5k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
81.5k
    if (rhs.handle_) {
193
27.1k
      handle_ = rhs.handle_;
194
27.1k
      handle_(action::move, &storage_, &rhs.storage_);
195
27.1k
      call_ = rhs.call_;
196
27.1k
      rhs.handle_ = nullptr;
197
27.1k
    }
198
81.5k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&&)
Line
Count
Source
191
81.5k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
81.5k
    if (rhs.handle_) {
193
13.5k
      handle_ = rhs.handle_;
194
13.5k
      handle_(action::move, &storage_, &rhs.storage_);
195
13.5k
      call_ = rhs.call_;
196
13.5k
      rhs.handle_ = nullptr;
197
13.5k
    }
198
81.5k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&&)
Line
Count
Source
191
40.7k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
40.7k
    if (rhs.handle_) {
193
0
      handle_ = rhs.handle_;
194
0
      handle_(action::move, &storage_, &rhs.storage_);
195
0
      call_ = rhs.call_;
196
0
      rhs.handle_ = nullptr;
197
0
    }
198
40.7k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
191
40.7k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
40.7k
    if (rhs.handle_) {
193
13.5k
      handle_ = rhs.handle_;
194
13.5k
      handle_(action::move, &storage_, &rhs.storage_);
195
13.5k
      call_ = rhs.call_;
196
13.5k
      rhs.handle_ = nullptr;
197
13.5k
    }
198
40.7k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
191
81.5k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
81.5k
    if (rhs.handle_) {
193
27.1k
      handle_ = rhs.handle_;
194
27.1k
      handle_(action::move, &storage_, &rhs.storage_);
195
27.1k
      call_ = rhs.call_;
196
27.1k
      rhs.handle_ = nullptr;
197
27.1k
    }
198
81.5k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>&&)
Line
Count
Source
191
28
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
192
28
    if (rhs.handle_) {
193
28
      handle_ = rhs.handle_;
194
28
      handle_(action::move, &storage_, &rhs.storage_);
195
28
      call_ = rhs.call_;
196
28
      rhs.handle_ = nullptr;
197
28
    }
198
28
  }
199
200
290k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
290k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
290k
    return *this;
203
290k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::operator=(ofats::any_detail::any_invocable_impl<bool, false, unsigned long>&&)
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::operator=(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>&&)
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>&&)
Line
Count
Source
200
11.4k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
11.4k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
11.4k
    return *this;
203
11.4k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&&)
Line
Count
Source
200
11.4k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
11.4k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
11.4k
    return *this;
203
11.4k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&&)
Line
Count
Source
200
5.74k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
5.74k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
5.74k
    return *this;
203
5.74k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
200
5.74k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
5.74k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
5.74k
    return *this;
203
5.74k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
200
11.4k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
11.4k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
11.4k
    return *this;
203
11.4k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>&&)
Line
Count
Source
200
25.6k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
25.6k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
25.6k
    return *this;
203
25.6k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&&)
Line
Count
Source
200
25.6k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
25.6k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
25.6k
    return *this;
203
25.6k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&&)
Line
Count
Source
200
12.8k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
12.8k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
12.8k
    return *this;
203
12.8k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
200
12.8k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
12.8k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
12.8k
    return *this;
203
12.8k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
200
25.6k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
25.6k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
25.6k
    return *this;
203
25.6k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::operator=(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>&&)
ofats::any_detail::any_invocable_impl<void, false>::operator=(ofats::any_detail::any_invocable_impl<void, false>&&)
Line
Count
Source
200
24.8k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
24.8k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
24.8k
    return *this;
203
24.8k
  }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::operator=(ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>&&)
Line
Count
Source
200
2.30k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
2.30k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
2.30k
    return *this;
203
2.30k
  }
ofats::any_detail::any_invocable_impl<void, false, char const*>::operator=(ofats::any_detail::any_invocable_impl<void, false, char const*>&&)
Line
Count
Source
200
6.40k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
6.40k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
6.40k
    return *this;
203
6.40k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>&&)
Line
Count
Source
200
27.1k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
27.1k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
27.1k
    return *this;
203
27.1k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&&)
Line
Count
Source
200
27.1k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
27.1k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
27.1k
    return *this;
203
27.1k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&&)
Line
Count
Source
200
13.5k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
13.5k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
13.5k
    return *this;
203
13.5k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
200
13.5k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
13.5k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
13.5k
    return *this;
203
13.5k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator=(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&&)
Line
Count
Source
200
27.1k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
201
27.1k
    any_invocable_impl{std::move(rhs)}.swap(*this);
202
27.1k
    return *this;
203
27.1k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::operator=(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>&&)
204
  any_invocable_impl& operator=(std::nullptr_t) noexcept {
205
    destroy();
206
    return *this;
207
  }
208
209
23.4M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::~any_invocable_impl()
Line
Count
Source
209
22.0k
  ~any_invocable_impl() { destroy(); }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::~any_invocable_impl()
Line
Count
Source
209
28.7k
  ~any_invocable_impl() { destroy(); }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::~any_invocable_impl()
Line
Count
Source
209
28.7k
  ~any_invocable_impl() { destroy(); }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::~any_invocable_impl()
Line
Count
Source
209
57.4k
  ~any_invocable_impl() { destroy(); }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::~any_invocable_impl()
Line
Count
Source
209
57.4k
  ~any_invocable_impl() { destroy(); }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::~any_invocable_impl()
Line
Count
Source
209
57.4k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::~any_invocable_impl()
Line
Count
Source
209
17.2k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false>::~any_invocable_impl()
Line
Count
Source
209
5.56M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::~any_invocable_impl()
Line
Count
Source
209
75.7k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::~any_invocable_impl()
Line
Count
Source
209
28.7k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, char const*>::~any_invocable_impl()
Line
Count
Source
209
34.8k
  ~any_invocable_impl() { destroy(); }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, int>::~any_invocable_impl()
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::~any_invocable_impl()
Line
Count
Source
209
4.83M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::~any_invocable_impl()
Line
Count
Source
209
5.29M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::~any_invocable_impl()
Line
Count
Source
209
2.88M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::~any_invocable_impl()
Line
Count
Source
209
2.88M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::~any_invocable_impl()
Line
Count
Source
209
34.4k
  ~any_invocable_impl() { destroy(); }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::~any_invocable_impl()
Line
Count
Source
209
64.0k
  ~any_invocable_impl() { destroy(); }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::~any_invocable_impl()
Line
Count
Source
209
64.0k
  ~any_invocable_impl() { destroy(); }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::~any_invocable_impl()
Line
Count
Source
209
128k
  ~any_invocable_impl() { destroy(); }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::~any_invocable_impl()
Line
Count
Source
209
128k
  ~any_invocable_impl() { destroy(); }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::~any_invocable_impl()
Line
Count
Source
209
128k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::~any_invocable_impl()
Line
Count
Source
209
79.1k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::~any_invocable_impl()
Line
Count
Source
209
195k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::~any_invocable_impl()
Line
Count
Source
209
198k
  ~any_invocable_impl() { destroy(); }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, int>::~any_invocable_impl()
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::~any_invocable_impl()
Line
Count
Source
209
6.92k
  ~any_invocable_impl() { destroy(); }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::~any_invocable_impl()
Line
Count
Source
209
67.9k
  ~any_invocable_impl() { destroy(); }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::~any_invocable_impl()
Line
Count
Source
209
67.9k
  ~any_invocable_impl() { destroy(); }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::~any_invocable_impl()
Line
Count
Source
209
135k
  ~any_invocable_impl() { destroy(); }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::~any_invocable_impl()
Line
Count
Source
209
135k
  ~any_invocable_impl() { destroy(); }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::~any_invocable_impl()
Line
Count
Source
209
135k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::~any_invocable_impl()
Line
Count
Source
209
28
  ~any_invocable_impl() { destroy(); }
210
211
1.39M
  void swap(any_invocable_impl& rhs) noexcept {
212
1.39M
    if (handle_) {
213
181k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
181k
      } else {
221
181k
        rhs.swap(*this);
222
181k
      }
223
1.21M
    } else if (rhs.handle_) {
224
201k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
201k
      handle_ = rhs.handle_;
226
201k
      call_ = rhs.call_;
227
201k
      rhs.handle_ = nullptr;
228
201k
    }
229
1.39M
  }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::swap(ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>&)
Line
Count
Source
211
5.84k
  void swap(any_invocable_impl& rhs) noexcept {
212
5.84k
    if (handle_) {
213
2.30k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
2.30k
      } else {
221
2.30k
        rhs.swap(*this);
222
2.30k
      }
223
3.53k
    } else if (rhs.handle_) {
224
3.53k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
3.53k
      handle_ = rhs.handle_;
226
3.53k
      call_ = rhs.call_;
227
3.53k
      rhs.handle_ = nullptr;
228
3.53k
    }
229
5.84k
  }
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::swap(ofats::any_detail::any_invocable_impl<bool, false, unsigned long>&)
Line
Count
Source
211
459k
  void swap(any_invocable_impl& rhs) noexcept {
212
459k
    if (handle_) {
213
0
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
0
      } else {
221
0
        rhs.swap(*this);
222
0
      }
223
459k
    } else if (rhs.handle_) {
224
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
0
      handle_ = rhs.handle_;
226
0
      call_ = rhs.call_;
227
0
      rhs.handle_ = nullptr;
228
0
    }
229
459k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::swap(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>&)
ofats::any_detail::any_invocable_impl<void, false>::swap(ofats::any_detail::any_invocable_impl<void, false>&)
Line
Count
Source
211
509k
  void swap(any_invocable_impl& rhs) noexcept {
212
509k
    if (handle_) {
213
24.8k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
24.8k
      } else {
221
24.8k
        rhs.swap(*this);
222
24.8k
      }
223
484k
    } else if (rhs.handle_) {
224
43.6k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
43.6k
      handle_ = rhs.handle_;
226
43.6k
      call_ = rhs.call_;
227
43.6k
      rhs.handle_ = nullptr;
228
43.6k
    }
229
509k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>&)
Line
Count
Source
211
22.9k
  void swap(any_invocable_impl& rhs) noexcept {
212
22.9k
    if (handle_) {
213
11.4k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
11.4k
      } else {
221
11.4k
        rhs.swap(*this);
222
11.4k
      }
223
11.4k
    } else if (rhs.handle_) {
224
11.4k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
11.4k
      handle_ = rhs.handle_;
226
11.4k
      call_ = rhs.call_;
227
11.4k
      rhs.handle_ = nullptr;
228
11.4k
    }
229
22.9k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&)
Line
Count
Source
211
17.2k
  void swap(any_invocable_impl& rhs) noexcept {
212
17.2k
    if (handle_) {
213
5.74k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
5.74k
      } else {
221
5.74k
        rhs.swap(*this);
222
5.74k
      }
223
11.4k
    } else if (rhs.handle_) {
224
5.74k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
5.74k
      handle_ = rhs.handle_;
226
5.74k
      call_ = rhs.call_;
227
5.74k
      rhs.handle_ = nullptr;
228
5.74k
    }
229
17.2k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&)
Line
Count
Source
211
5.74k
  void swap(any_invocable_impl& rhs) noexcept {
212
5.74k
    if (handle_) {
213
0
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
0
      } else {
221
0
        rhs.swap(*this);
222
0
      }
223
5.74k
    } else if (rhs.handle_) {
224
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
0
      handle_ = rhs.handle_;
226
0
      call_ = rhs.call_;
227
0
      rhs.handle_ = nullptr;
228
0
    }
229
5.74k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&)
Line
Count
Source
211
11.4k
  void swap(any_invocable_impl& rhs) noexcept {
212
11.4k
    if (handle_) {
213
5.74k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
5.74k
      } else {
221
5.74k
        rhs.swap(*this);
222
5.74k
      }
223
5.74k
    } else if (rhs.handle_) {
224
5.74k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
5.74k
      handle_ = rhs.handle_;
226
5.74k
      call_ = rhs.call_;
227
5.74k
      rhs.handle_ = nullptr;
228
5.74k
    }
229
11.4k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&)
Line
Count
Source
211
22.9k
  void swap(any_invocable_impl& rhs) noexcept {
212
22.9k
    if (handle_) {
213
11.4k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
11.4k
      } else {
221
11.4k
        rhs.swap(*this);
222
11.4k
      }
223
11.4k
    } else if (rhs.handle_) {
224
11.4k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
11.4k
      handle_ = rhs.handle_;
226
11.4k
      call_ = rhs.call_;
227
11.4k
      rhs.handle_ = nullptr;
228
11.4k
    }
229
22.9k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>&)
Line
Count
Source
211
38.4k
  void swap(any_invocable_impl& rhs) noexcept {
212
38.4k
    if (handle_) {
213
12.8k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
12.8k
      } else {
221
12.8k
        rhs.swap(*this);
222
12.8k
      }
223
25.6k
    } else if (rhs.handle_) {
224
12.8k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
12.8k
      handle_ = rhs.handle_;
226
12.8k
      call_ = rhs.call_;
227
12.8k
      rhs.handle_ = nullptr;
228
12.8k
    }
229
38.4k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&)
Line
Count
Source
211
32.0k
  void swap(any_invocable_impl& rhs) noexcept {
212
32.0k
    if (handle_) {
213
6.40k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
6.40k
      } else {
221
6.40k
        rhs.swap(*this);
222
6.40k
      }
223
25.6k
    } else if (rhs.handle_) {
224
6.40k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
6.40k
      handle_ = rhs.handle_;
226
6.40k
      call_ = rhs.call_;
227
6.40k
      rhs.handle_ = nullptr;
228
6.40k
    }
229
32.0k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&)
Line
Count
Source
211
12.8k
  void swap(any_invocable_impl& rhs) noexcept {
212
12.8k
    if (handle_) {
213
0
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
0
      } else {
221
0
        rhs.swap(*this);
222
0
      }
223
12.8k
    } else if (rhs.handle_) {
224
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
0
      handle_ = rhs.handle_;
226
0
      call_ = rhs.call_;
227
0
      rhs.handle_ = nullptr;
228
0
    }
229
12.8k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&)
Line
Count
Source
211
19.2k
  void swap(any_invocable_impl& rhs) noexcept {
212
19.2k
    if (handle_) {
213
6.40k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
6.40k
      } else {
221
6.40k
        rhs.swap(*this);
222
6.40k
      }
223
12.8k
    } else if (rhs.handle_) {
224
6.40k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
6.40k
      handle_ = rhs.handle_;
226
6.40k
      call_ = rhs.call_;
227
6.40k
      rhs.handle_ = nullptr;
228
6.40k
    }
229
19.2k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&)
Line
Count
Source
211
38.4k
  void swap(any_invocable_impl& rhs) noexcept {
212
38.4k
    if (handle_) {
213
12.8k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
12.8k
      } else {
221
12.8k
        rhs.swap(*this);
222
12.8k
      }
223
25.6k
    } else if (rhs.handle_) {
224
12.8k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
12.8k
      handle_ = rhs.handle_;
226
12.8k
      call_ = rhs.call_;
227
12.8k
      rhs.handle_ = nullptr;
228
12.8k
    }
229
38.4k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::swap(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>&)
ofats::any_detail::any_invocable_impl<void, false, char const*>::swap(ofats::any_detail::any_invocable_impl<void, false, char const*>&)
Line
Count
Source
211
6.40k
  void swap(any_invocable_impl& rhs) noexcept {
212
6.40k
    if (handle_) {
213
0
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
0
      } else {
221
0
        rhs.swap(*this);
222
0
      }
223
6.40k
    } else if (rhs.handle_) {
224
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
0
      handle_ = rhs.handle_;
226
0
      call_ = rhs.call_;
227
0
      rhs.handle_ = nullptr;
228
0
    }
229
6.40k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>&)
Line
Count
Source
211
54.3k
  void swap(any_invocable_impl& rhs) noexcept {
212
54.3k
    if (handle_) {
213
27.1k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
27.1k
      } else {
221
27.1k
        rhs.swap(*this);
222
27.1k
      }
223
27.1k
    } else if (rhs.handle_) {
224
27.1k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
27.1k
      handle_ = rhs.handle_;
226
27.1k
      call_ = rhs.call_;
227
27.1k
      rhs.handle_ = nullptr;
228
27.1k
    }
229
54.3k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>&)
Line
Count
Source
211
40.7k
  void swap(any_invocable_impl& rhs) noexcept {
212
40.7k
    if (handle_) {
213
13.5k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
13.5k
      } else {
221
13.5k
        rhs.swap(*this);
222
13.5k
      }
223
27.1k
    } else if (rhs.handle_) {
224
13.5k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
13.5k
      handle_ = rhs.handle_;
226
13.5k
      call_ = rhs.call_;
227
13.5k
      rhs.handle_ = nullptr;
228
13.5k
    }
229
40.7k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>&)
Line
Count
Source
211
13.5k
  void swap(any_invocable_impl& rhs) noexcept {
212
13.5k
    if (handle_) {
213
0
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
0
      } else {
221
0
        rhs.swap(*this);
222
0
      }
223
13.5k
    } else if (rhs.handle_) {
224
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
0
      handle_ = rhs.handle_;
226
0
      call_ = rhs.call_;
227
0
      rhs.handle_ = nullptr;
228
0
    }
229
13.5k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&)
Line
Count
Source
211
27.1k
  void swap(any_invocable_impl& rhs) noexcept {
212
27.1k
    if (handle_) {
213
13.5k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
13.5k
      } else {
221
13.5k
        rhs.swap(*this);
222
13.5k
      }
223
13.5k
    } else if (rhs.handle_) {
224
13.5k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
13.5k
      handle_ = rhs.handle_;
226
13.5k
      call_ = rhs.call_;
227
13.5k
      rhs.handle_ = nullptr;
228
13.5k
    }
229
27.1k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::swap(ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >&)
Line
Count
Source
211
54.3k
  void swap(any_invocable_impl& rhs) noexcept {
212
54.3k
    if (handle_) {
213
27.1k
      if (rhs.handle_) {
214
0
        storage tmp;
215
0
        handle_(action::move, &tmp, &storage_);
216
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
217
0
        handle_(action::move, &rhs.storage_, &tmp);
218
0
        std::swap(handle_, rhs.handle_);
219
0
        std::swap(call_, rhs.call_);
220
27.1k
      } else {
221
27.1k
        rhs.swap(*this);
222
27.1k
      }
223
27.1k
    } else if (rhs.handle_) {
224
27.1k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
225
27.1k
      handle_ = rhs.handle_;
226
27.1k
      call_ = rhs.call_;
227
27.1k
      rhs.handle_ = nullptr;
228
27.1k
    }
229
54.3k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::swap(ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>&)
230
231
18.9M
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false>::operator bool() const
Line
Count
Source
231
4.49M
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::operator bool() const
Line
Count
Source
231
156k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::operator bool() const
Line
Count
Source
231
16.5k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::operator bool() const
Line
Count
Source
231
11.4k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator bool() const
Line
Count
Source
231
945
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::operator bool() const
Line
Count
Source
231
11.4M
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
231
113k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator bool() const
Line
Count
Source
231
1.12M
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
231
8.40k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::operator bool() const
Line
Count
Source
231
120k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::operator bool() const
Line
Count
Source
231
113k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator bool() const
Unexecuted instantiation: EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::operator bool() const
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
231
40.2k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator bool() const
Line
Count
Source
231
16.9k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
231
13.9k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::operator bool() const
Line
Count
Source
231
44.3k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::operator bool() const
Line
Count
Source
231
65.0k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::operator bool() const
Line
Count
Source
231
247k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::operator bool() const
Line
Count
Source
231
2.30k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::operator bool() const
Line
Count
Source
231
340k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
231
207k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::operator bool() const
Line
Count
Source
231
136k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
231
15.7k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::operator bool() const
Line
Count
Source
231
245k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
232
233
 protected:
234
  template <class F, class... Args>
235
6.25M
  void create(Args&&... args) {
236
6.25M
    using hdl = handler<F>;
237
6.25M
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.25M
    handle_ = &hdl::handle;
239
6.25M
    call_ = &hdl::call;
240
6.25M
  }
void ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::create<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}, {lambda(us_socket_t*, char*, int)#1}>({lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
235
576k
  void create(Args&&... args) {
236
576k
    using hdl = handler<F>;
237
576k
    hdl::create(storage_, std::forward<Args>(args)...);
238
576k
    handle_ = &hdl::handle;
239
576k
    call_ = &hdl::call;
240
576k
  }
void ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::create<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}, {lambda(us_socket_t*, char*, int)#1}>({lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
235
576k
  void create(Args&&... args) {
236
576k
    using hdl = handler<F>;
237
576k
    hdl::create(storage_, std::forward<Args>(args)...);
238
576k
    handle_ = &hdl::handle;
239
576k
    call_ = &hdl::call;
240
576k
  }
Unexecuted instantiation: void ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::create<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}, {lambda(unsigned long)#1}>({lambda(unsigned long)#1}&&)
void ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::create<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}, {lambda(auto:1*)#1}>({lambda(auto:1*)#1}&&)
Line
Count
Source
235
11.4k
  void create(Args&&... args) {
236
11.4k
    using hdl = handler<F>;
237
11.4k
    hdl::create(storage_, std::forward<Args>(args)...);
238
11.4k
    handle_ = &hdl::handle;
239
11.4k
    call_ = &hdl::call;
240
11.4k
  }
void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::create<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}, {lambda(auto:1*, auto:2*)#1}>({lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
235
5.74k
  void create(Args&&... args) {
236
5.74k
    using hdl = handler<F>;
237
5.74k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.74k
    handle_ = &hdl::handle;
239
5.74k
    call_ = &hdl::call;
240
5.74k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::create<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}, {lambda(uWS::Loop*)#1}>({lambda(uWS::Loop*)#1}&&)
Line
Count
Source
235
5.74k
  void create(Args&&... args) {
236
5.74k
    using hdl = handler<F>;
237
5.74k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.74k
    handle_ = &hdl::handle;
239
5.74k
    call_ = &hdl::call;
240
5.74k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::create<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}, {lambda(uWS::Loop*)#2}>({lambda(uWS::Loop*)#2}&&)
Line
Count
Source
235
5.74k
  void create(Args&&... args) {
236
5.74k
    using hdl = handler<F>;
237
5.74k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.74k
    handle_ = &hdl::handle;
239
5.74k
    call_ = &hdl::call;
240
5.74k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
5.74k
  void create(Args&&... args) {
236
5.74k
    using hdl = handler<F>;
237
5.74k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.74k
    handle_ = &hdl::handle;
239
5.74k
    call_ = &hdl::call;
240
5.74k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::create<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}, {lambda(auto:1*, auto:2*)#1}>({lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
235
5.74k
  void create(Args&&... args) {
236
5.74k
    using hdl = handler<F>;
237
5.74k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.74k
    handle_ = &hdl::handle;
239
5.74k
    call_ = &hdl::call;
240
5.74k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::create<test()::$_0, test()::$_0>(test()::$_0&&)
Line
Count
Source
235
5.74k
  void create(Args&&... args) {
236
5.74k
    using hdl = handler<F>;
237
5.74k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.74k
    handle_ = &hdl::handle;
239
5.74k
    call_ = &hdl::call;
240
5.74k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::create<test()::$_1, test()::$_1>(test()::$_1&&)
Line
Count
Source
235
5.74k
  void create(Args&&... args) {
236
5.74k
    using hdl = handler<F>;
237
5.74k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.74k
    handle_ = &hdl::handle;
239
5.74k
    call_ = &hdl::call;
240
5.74k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::create<test()::$_2, test()::$_2>(test()::$_2&&)
Line
Count
Source
235
5.74k
  void create(Args&&... args) {
236
5.74k
    using hdl = handler<F>;
237
5.74k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.74k
    handle_ = &hdl::handle;
239
5.74k
    call_ = &hdl::call;
240
5.74k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_3, test()::$_3>(test()::$_3&&)
Line
Count
Source
235
5.74k
  void create(Args&&... args) {
236
5.74k
    using hdl = handler<F>;
237
5.74k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.74k
    handle_ = &hdl::handle;
239
5.74k
    call_ = &hdl::call;
240
5.74k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_4, test()::$_4>(test()::$_4&&)
Line
Count
Source
235
5.74k
  void create(Args&&... args) {
236
5.74k
    using hdl = handler<F>;
237
5.74k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.74k
    handle_ = &hdl::handle;
239
5.74k
    call_ = &hdl::call;
240
5.74k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_5, test()::$_5>(test()::$_5&&)
Line
Count
Source
235
5.74k
  void create(Args&&... args) {
236
5.74k
    using hdl = handler<F>;
237
5.74k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.74k
    handle_ = &hdl::handle;
239
5.74k
    call_ = &hdl::call;
240
5.74k
  }
EpollEchoServerPubSub.cpp:void ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::create<test()::$_6, test()::$_6>(test()::$_6&&)
Line
Count
Source
235
5.74k
  void create(Args&&... args) {
236
5.74k
    using hdl = handler<F>;
237
5.74k
    hdl::create(storage_, std::forward<Args>(args)...);
238
5.74k
    handle_ = &hdl::handle;
239
5.74k
    call_ = &hdl::call;
240
5.74k
  }
void ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::create<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}, {lambda(us_socket_t*, char*, int)#1}>({lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
235
2.10M
  void create(Args&&... args) {
236
2.10M
    using hdl = handler<F>;
237
2.10M
    hdl::create(storage_, std::forward<Args>(args)...);
238
2.10M
    handle_ = &hdl::handle;
239
2.10M
    call_ = &hdl::call;
240
2.10M
  }
void ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::create<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}, {lambda(us_socket_t*, char*, int)#1}>({lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
235
2.10M
  void create(Args&&... args) {
236
2.10M
    using hdl = handler<F>;
237
2.10M
    hdl::create(storage_, std::forward<Args>(args)...);
238
2.10M
    handle_ = &hdl::handle;
239
2.10M
    call_ = &hdl::call;
240
2.10M
  }
Unexecuted instantiation: void ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::create<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}, {lambda(unsigned long)#1}>({lambda(unsigned long)#1}&&)
void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}, {lambda(auto:1*, auto:2*)#1}>({lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
235
16.3k
  void create(Args&&... args) {
236
16.3k
    using hdl = handler<F>;
237
16.3k
    hdl::create(storage_, std::forward<Args>(args)...);
238
16.3k
    handle_ = &hdl::handle;
239
16.3k
    call_ = &hdl::call;
240
16.3k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}, {lambda(uWS::Loop*)#1}>({lambda(uWS::Loop*)#1}&&)
Line
Count
Source
235
6.40k
  void create(Args&&... args) {
236
6.40k
    using hdl = handler<F>;
237
6.40k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.40k
    handle_ = &hdl::handle;
239
6.40k
    call_ = &hdl::call;
240
6.40k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}, {lambda(uWS::Loop*)#2}>({lambda(uWS::Loop*)#2}&&)
Line
Count
Source
235
6.40k
  void create(Args&&... args) {
236
6.40k
    using hdl = handler<F>;
237
6.40k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.40k
    handle_ = &hdl::handle;
239
6.40k
    call_ = &hdl::call;
240
6.40k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
12.8k
  void create(Args&&... args) {
236
12.8k
    using hdl = handler<F>;
237
12.8k
    hdl::create(storage_, std::forward<Args>(args)...);
238
12.8k
    handle_ = &hdl::handle;
239
12.8k
    call_ = &hdl::call;
240
12.8k
  }
void ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::create<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}, {lambda(auto:1*)#1}>({lambda(auto:1*)#1}&&)
Line
Count
Source
235
65.0k
  void create(Args&&... args) {
236
65.0k
    using hdl = handler<F>;
237
65.0k
    hdl::create(storage_, std::forward<Args>(args)...);
238
65.0k
    handle_ = &hdl::handle;
239
65.0k
    call_ = &hdl::call;
240
65.0k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}, {lambda(auto:1*, auto:2*)#1}>({lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
235
12.8k
  void create(Args&&... args) {
236
12.8k
    using hdl = handler<F>;
237
12.8k
    hdl::create(storage_, std::forward<Args>(args)...);
238
12.8k
    handle_ = &hdl::handle;
239
12.8k
    call_ = &hdl::call;
240
12.8k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<test()::$_0, test()::$_0>(test()::$_0&&)
Line
Count
Source
235
6.40k
  void create(Args&&... args) {
236
6.40k
    using hdl = handler<F>;
237
6.40k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.40k
    handle_ = &hdl::handle;
239
6.40k
    call_ = &hdl::call;
240
6.40k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<test()::$_1, test()::$_1>(test()::$_1&&)
Line
Count
Source
235
6.40k
  void create(Args&&... args) {
236
6.40k
    using hdl = handler<F>;
237
6.40k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.40k
    handle_ = &hdl::handle;
239
6.40k
    call_ = &hdl::call;
240
6.40k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
2.30k
  void create(Args&&... args) {
236
2.30k
    using hdl = handler<F>;
237
2.30k
    hdl::create(storage_, std::forward<Args>(args)...);
238
2.30k
    handle_ = &hdl::handle;
239
2.30k
    call_ = &hdl::call;
240
2.30k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
1.08k
  void create(Args&&... args) {
236
1.08k
    using hdl = handler<F>;
237
1.08k
    hdl::create(storage_, std::forward<Args>(args)...);
238
1.08k
    handle_ = &hdl::handle;
239
1.08k
    call_ = &hdl::call;
240
1.08k
  }
void ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::create<uWS::HttpResponse<false>::onData(ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>&&)::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}, {lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}>({lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}&&)
Line
Count
Source
235
2.30k
  void create(Args&&... args) {
236
2.30k
    using hdl = handler<F>;
237
2.30k
    hdl::create(storage_, std::forward<Args>(args)...);
238
2.30k
    handle_ = &hdl::handle;
239
2.30k
    call_ = &hdl::call;
240
2.30k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::create<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}, {lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>({lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
235
2.30k
  void create(Args&&... args) {
236
2.30k
    using hdl = handler<F>;
237
2.30k
    hdl::create(storage_, std::forward<Args>(args)...);
238
2.30k
    handle_ = &hdl::handle;
239
2.30k
    call_ = &hdl::call;
240
2.30k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}, {lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>({lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
235
1.22k
  void create(Args&&... args) {
236
1.22k
    using hdl = handler<F>;
237
1.22k
    hdl::create(storage_, std::forward<Args>(args)...);
238
1.22k
    handle_ = &hdl::handle;
239
1.22k
    call_ = &hdl::call;
240
1.22k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<test()::$_2, test()::$_2>(test()::$_2&&)
Line
Count
Source
235
6.40k
  void create(Args&&... args) {
236
6.40k
    using hdl = handler<F>;
237
6.40k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.40k
    handle_ = &hdl::handle;
239
6.40k
    call_ = &hdl::call;
240
6.40k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::create<test()::$_3, test()::$_3>(test()::$_3&&)
Line
Count
Source
235
6.40k
  void create(Args&&... args) {
236
6.40k
    using hdl = handler<F>;
237
6.40k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.40k
    handle_ = &hdl::handle;
239
6.40k
    call_ = &hdl::call;
240
6.40k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::create<test()::$_4, test()::$_4>(test()::$_4&&)
Line
Count
Source
235
6.40k
  void create(Args&&... args) {
236
6.40k
    using hdl = handler<F>;
237
6.40k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.40k
    handle_ = &hdl::handle;
239
6.40k
    call_ = &hdl::call;
240
6.40k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::create<test()::$_5, test()::$_5>(test()::$_5&&)
Line
Count
Source
235
6.40k
  void create(Args&&... args) {
236
6.40k
    using hdl = handler<F>;
237
6.40k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.40k
    handle_ = &hdl::handle;
239
6.40k
    call_ = &hdl::call;
240
6.40k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_6, test()::$_6>(test()::$_6&&)
Line
Count
Source
235
6.40k
  void create(Args&&... args) {
236
6.40k
    using hdl = handler<F>;
237
6.40k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.40k
    handle_ = &hdl::handle;
239
6.40k
    call_ = &hdl::call;
240
6.40k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
10.9k
  void create(Args&&... args) {
236
10.9k
    using hdl = handler<F>;
237
10.9k
    hdl::create(storage_, std::forward<Args>(args)...);
238
10.9k
    handle_ = &hdl::handle;
239
10.9k
    call_ = &hdl::call;
240
10.9k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_7, test()::$_7>(test()::$_7&&)
Line
Count
Source
235
6.40k
  void create(Args&&... args) {
236
6.40k
    using hdl = handler<F>;
237
6.40k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.40k
    handle_ = &hdl::handle;
239
6.40k
    call_ = &hdl::call;
240
6.40k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_8, test()::$_8>(test()::$_8&&)
Line
Count
Source
235
6.40k
  void create(Args&&... args) {
236
6.40k
    using hdl = handler<F>;
237
6.40k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.40k
    handle_ = &hdl::handle;
239
6.40k
    call_ = &hdl::call;
240
6.40k
  }
EpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::create<test()::$_9, test()::$_9>(test()::$_9&&)
Line
Count
Source
235
6.40k
  void create(Args&&... args) {
236
6.40k
    using hdl = handler<F>;
237
6.40k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.40k
    handle_ = &hdl::handle;
239
6.40k
    call_ = &hdl::call;
240
6.40k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}, {lambda(uWS::Loop*)#1}>({lambda(uWS::Loop*)#1}&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}, {lambda(uWS::Loop*)#2}>({lambda(uWS::Loop*)#2}&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
13.5k
  void create(Args&&... args) {
236
13.5k
    using hdl = handler<F>;
237
13.5k
    hdl::create(storage_, std::forward<Args>(args)...);
238
13.5k
    handle_ = &hdl::handle;
239
13.5k
    call_ = &hdl::call;
240
13.5k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}, {lambda(auto:1*, auto:2*)#1}>({lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
235
13.5k
  void create(Args&&... args) {
236
13.5k
    using hdl = handler<F>;
237
13.5k
    hdl::create(storage_, std::forward<Args>(args)...);
238
13.5k
    handle_ = &hdl::handle;
239
13.5k
    call_ = &hdl::call;
240
13.5k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::create<test()::$_0, test()::$_0>(test()::$_0&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::create<test()::$_1, test()::$_1>(test()::$_1&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::create<test()::$_2, test()::$_2>(test()::$_2&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_3, test()::$_3>(test()::$_3&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_4, test()::$_4>(test()::$_4&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_5, test()::$_5>(test()::$_5&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::create<test()::$_6, test()::$_6>(test()::$_6&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::create<test()::$_7, test()::$_7>(test()::$_7&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::create<test()::$_8, test()::$_8>(test()::$_8&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_9, test()::$_9>(test()::$_9&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
12.5k
  void create(Args&&... args) {
236
12.5k
    using hdl = handler<F>;
237
12.5k
    hdl::create(storage_, std::forward<Args>(args)...);
238
12.5k
    handle_ = &hdl::handle;
239
12.5k
    call_ = &hdl::call;
240
12.5k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_10, test()::$_10>(test()::$_10&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::create<test()::$_11, test()::$_11>(test()::$_11&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
EpollEchoServer.cpp:void ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::create<test()::$_12, test()::$_12>(test()::$_12&&)
Line
Count
Source
235
6.79k
  void create(Args&&... args) {
236
6.79k
    using hdl = handler<F>;
237
6.79k
    hdl::create(storage_, std::forward<Args>(args)...);
238
6.79k
    handle_ = &hdl::handle;
239
6.79k
    call_ = &hdl::call;
240
6.79k
  }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::create<test()::$_0, test()::$_0>(test()::$_0&&)
Line
Count
Source
235
3.13k
  void create(Args&&... args) {
236
3.13k
    using hdl = handler<F>;
237
3.13k
    hdl::create(storage_, std::forward<Args>(args)...);
238
3.13k
    handle_ = &hdl::handle;
239
3.13k
    call_ = &hdl::call;
240
3.13k
  }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}, {lambda()#1}>({lambda()#1}&&)
Line
Count
Source
235
22.5k
  void create(Args&&... args) {
236
22.5k
    using hdl = handler<F>;
237
22.5k
    hdl::create(storage_, std::forward<Args>(args)...);
238
22.5k
    handle_ = &hdl::handle;
239
22.5k
    call_ = &hdl::call;
240
22.5k
  }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}, {lambda()#2}>({lambda()#2}&&)
Line
Count
Source
235
22.5k
  void create(Args&&... args) {
236
22.5k
    using hdl = handler<F>;
237
22.5k
    hdl::create(storage_, std::forward<Args>(args)...);
238
22.5k
    handle_ = &hdl::handle;
239
22.5k
    call_ = &hdl::call;
240
22.5k
  }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false>::create<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}, {lambda()#2}>({lambda()#2}&&)
Line
Count
Source
235
17.5k
  void create(Args&&... args) {
236
17.5k
    using hdl = handler<F>;
237
17.5k
    hdl::create(storage_, std::forward<Args>(args)...);
238
17.5k
    handle_ = &hdl::handle;
239
17.5k
    call_ = &hdl::call;
240
17.5k
  }
AsyncEpollHelloWorld.cpp:void ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::create<test()::$_1, test()::$_1>(test()::$_1&&)
Line
Count
Source
235
3.13k
  void create(Args&&... args) {
236
3.13k
    using hdl = handler<F>;
237
3.13k
    hdl::create(storage_, std::forward<Args>(args)...);
238
3.13k
    handle_ = &hdl::handle;
239
3.13k
    call_ = &hdl::call;
240
3.13k
  }
void ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::create<StaticData::create()::{lambda(auto:1*)#1}, {lambda(auto:1*)#1}>({lambda(auto:1*)#1}&&)
Line
Count
Source
235
4
  void create(Args&&... args) {
236
4
    using hdl = handler<F>;
237
4
    hdl::create(storage_, std::forward<Args>(args)...);
238
4
    handle_ = &hdl::handle;
239
4
    call_ = &hdl::call;
240
4
  }
void ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::create<StaticData::create()::{lambda(auto:1*)#2}, {lambda(auto:1*)#2}>({lambda(auto:1*)#2}&&)
Line
Count
Source
235
4
  void create(Args&&... args) {
236
4
    using hdl = handler<F>;
237
4
    hdl::create(storage_, std::forward<Args>(args)...);
238
4
    handle_ = &hdl::handle;
239
4
    call_ = &hdl::call;
240
4
  }
void ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::create<StaticData::create()::{lambda(auto:1*)#3}, {lambda(auto:1*)#3}>({lambda(auto:1*)#3}&&)
Line
Count
Source
235
4
  void create(Args&&... args) {
236
4
    using hdl = handler<F>;
237
4
    hdl::create(storage_, std::forward<Args>(args)...);
238
4
    handle_ = &hdl::handle;
239
4
    call_ = &hdl::call;
240
4
  }
void ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::create<StaticData::create()::{lambda(auto:1*)#4}, {lambda(auto:1*)#4}>({lambda(auto:1*)#4}&&)
Line
Count
Source
235
4
  void create(Args&&... args) {
236
4
    using hdl = handler<F>;
237
4
    hdl::create(storage_, std::forward<Args>(args)...);
238
4
    handle_ = &hdl::handle;
239
4
    call_ = &hdl::call;
240
4
  }
Http.cpp:void ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::create<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}, {lambda(void*, uWS::HttpRequest*)#1}>({lambda(void*, uWS::HttpRequest*)#1}&&)
Line
Count
Source
235
203k
  void create(Args&&... args) {
236
203k
    using hdl = handler<F>;
237
203k
    hdl::create(storage_, std::forward<Args>(args)...);
238
203k
    handle_ = &hdl::handle;
239
203k
    call_ = &hdl::call;
240
203k
  }
Http.cpp:void ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::create<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}, {lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}>({lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
235
203k
  void create(Args&&... args) {
236
203k
    using hdl = handler<F>;
237
203k
    hdl::create(storage_, std::forward<Args>(args)...);
238
203k
    handle_ = &hdl::handle;
239
203k
    call_ = &hdl::call;
240
203k
  }
241
242
23.4M
  void destroy() noexcept {
243
23.4M
    if (handle_) {
244
6.25M
      handle_(action::destroy, &storage_, nullptr);
245
6.25M
      handle_ = nullptr;
246
6.25M
    }
247
23.4M
  }
ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::destroy()
Line
Count
Source
242
22.0k
  void destroy() noexcept {
243
22.0k
    if (handle_) {
244
22.0k
      handle_(action::destroy, &storage_, nullptr);
245
22.0k
      handle_ = nullptr;
246
22.0k
    }
247
22.0k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::destroy()
Line
Count
Source
242
28.7k
  void destroy() noexcept {
243
28.7k
    if (handle_) {
244
5.74k
      handle_(action::destroy, &storage_, nullptr);
245
5.74k
      handle_ = nullptr;
246
5.74k
    }
247
28.7k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::destroy()
Line
Count
Source
242
28.7k
  void destroy() noexcept {
243
28.7k
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
28.7k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::destroy()
Line
Count
Source
242
57.4k
  void destroy() noexcept {
243
57.4k
    if (handle_) {
244
11.4k
      handle_(action::destroy, &storage_, nullptr);
245
11.4k
      handle_ = nullptr;
246
11.4k
    }
247
57.4k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::destroy()
Line
Count
Source
242
57.4k
  void destroy() noexcept {
243
57.4k
    if (handle_) {
244
11.4k
      handle_(action::destroy, &storage_, nullptr);
245
11.4k
      handle_ = nullptr;
246
11.4k
    }
247
57.4k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::destroy()
Line
Count
Source
242
57.4k
  void destroy() noexcept {
243
57.4k
    if (handle_) {
244
5.74k
      handle_(action::destroy, &storage_, nullptr);
245
5.74k
      handle_ = nullptr;
246
5.74k
    }
247
57.4k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::destroy()
Line
Count
Source
242
17.2k
  void destroy() noexcept {
243
17.2k
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
17.2k
  }
ofats::any_detail::any_invocable_impl<void, false>::destroy()
Line
Count
Source
242
5.56M
  void destroy() noexcept {
243
5.56M
    if (handle_) {
244
122k
      handle_(action::destroy, &storage_, nullptr);
245
122k
      handle_ = nullptr;
246
122k
    }
247
5.56M
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::destroy()
Line
Count
Source
242
75.7k
  void destroy() noexcept {
243
75.7k
    if (handle_) {
244
37.8k
      handle_(action::destroy, &storage_, nullptr);
245
37.8k
      handle_ = nullptr;
246
37.8k
    }
247
75.7k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::destroy()
Line
Count
Source
242
28.7k
  void destroy() noexcept {
243
28.7k
    if (handle_) {
244
11.4k
      handle_(action::destroy, &storage_, nullptr);
245
11.4k
      handle_ = nullptr;
246
11.4k
    }
247
28.7k
  }
ofats::any_detail::any_invocable_impl<void, false, char const*>::destroy()
Line
Count
Source
242
34.8k
  void destroy() noexcept {
243
34.8k
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
34.8k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, int>::destroy()
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::destroy()
Line
Count
Source
242
4.83M
  void destroy() noexcept {
243
4.83M
    if (handle_) {
244
2.30k
      handle_(action::destroy, &storage_, nullptr);
245
2.30k
      handle_ = nullptr;
246
2.30k
    }
247
4.83M
  }
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::destroy()
Line
Count
Source
242
5.29M
  void destroy() noexcept {
243
5.29M
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
5.29M
  }
ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::destroy()
Line
Count
Source
242
2.88M
  void destroy() noexcept {
243
2.88M
    if (handle_) {
244
2.88M
      handle_(action::destroy, &storage_, nullptr);
245
2.88M
      handle_ = nullptr;
246
2.88M
    }
247
2.88M
  }
ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::destroy()
Line
Count
Source
242
2.88M
  void destroy() noexcept {
243
2.88M
    if (handle_) {
244
2.88M
      handle_(action::destroy, &storage_, nullptr);
245
2.88M
      handle_ = nullptr;
246
2.88M
    }
247
2.88M
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::destroy()
Line
Count
Source
242
34.4k
  void destroy() noexcept {
243
34.4k
    if (handle_) {
244
11.4k
      handle_(action::destroy, &storage_, nullptr);
245
11.4k
      handle_ = nullptr;
246
11.4k
    }
247
34.4k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::destroy()
Line
Count
Source
242
64.0k
  void destroy() noexcept {
243
64.0k
    if (handle_) {
244
6.40k
      handle_(action::destroy, &storage_, nullptr);
245
6.40k
      handle_ = nullptr;
246
6.40k
    }
247
64.0k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::destroy()
Line
Count
Source
242
64.0k
  void destroy() noexcept {
243
64.0k
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
64.0k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::destroy()
Line
Count
Source
242
128k
  void destroy() noexcept {
243
128k
    if (handle_) {
244
12.8k
      handle_(action::destroy, &storage_, nullptr);
245
12.8k
      handle_ = nullptr;
246
12.8k
    }
247
128k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::destroy()
Line
Count
Source
242
128k
  void destroy() noexcept {
243
128k
    if (handle_) {
244
12.8k
      handle_(action::destroy, &storage_, nullptr);
245
12.8k
      handle_ = nullptr;
246
12.8k
    }
247
128k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::destroy()
Line
Count
Source
242
128k
  void destroy() noexcept {
243
128k
    if (handle_) {
244
6.40k
      handle_(action::destroy, &storage_, nullptr);
245
6.40k
      handle_ = nullptr;
246
6.40k
    }
247
128k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::destroy()
Line
Count
Source
242
79.1k
  void destroy() noexcept {
243
79.1k
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
79.1k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::destroy()
Line
Count
Source
242
195k
  void destroy() noexcept {
243
195k
    if (handle_) {
244
65.0k
      handle_(action::destroy, &storage_, nullptr);
245
65.0k
      handle_ = nullptr;
246
65.0k
    }
247
195k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::destroy()
Line
Count
Source
242
198k
  void destroy() noexcept {
243
198k
    if (handle_) {
244
65.0k
      handle_(action::destroy, &storage_, nullptr);
245
65.0k
      handle_ = nullptr;
246
65.0k
    }
247
198k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, int>::destroy()
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::destroy()
Line
Count
Source
242
6.92k
  void destroy() noexcept {
243
6.92k
    if (handle_) {
244
2.30k
      handle_(action::destroy, &storage_, nullptr);
245
2.30k
      handle_ = nullptr;
246
2.30k
    }
247
6.92k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::destroy()
Line
Count
Source
242
67.9k
  void destroy() noexcept {
243
67.9k
    if (handle_) {
244
13.5k
      handle_(action::destroy, &storage_, nullptr);
245
13.5k
      handle_ = nullptr;
246
13.5k
    }
247
67.9k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::destroy()
Line
Count
Source
242
67.9k
  void destroy() noexcept {
243
67.9k
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
67.9k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::destroy()
Line
Count
Source
242
135k
  void destroy() noexcept {
243
135k
    if (handle_) {
244
27.1k
      handle_(action::destroy, &storage_, nullptr);
245
27.1k
      handle_ = nullptr;
246
27.1k
    }
247
135k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::destroy()
Line
Count
Source
242
135k
  void destroy() noexcept {
243
135k
    if (handle_) {
244
27.1k
      handle_(action::destroy, &storage_, nullptr);
245
27.1k
      handle_ = nullptr;
246
27.1k
    }
247
135k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::destroy()
Line
Count
Source
242
135k
  void destroy() noexcept {
243
135k
    if (handle_) {
244
13.5k
      handle_(action::destroy, &storage_, nullptr);
245
13.5k
      handle_ = nullptr;
246
13.5k
    }
247
135k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::destroy()
Line
Count
Source
242
28
  void destroy() noexcept {
243
28
    if (handle_) {
244
0
      handle_(action::destroy, &storage_, nullptr);
245
0
      handle_ = nullptr;
246
0
    }
247
28
  }
248
249
23.1M
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
23.1M
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
23.1M
  }
ofats::any_detail::any_invocable_impl<void, false>::call()
Line
Count
Source
249
95.9k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
95.9k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
95.9k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::call(uWS::Loop*)
Line
Count
Source
249
19.1M
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
19.1M
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
19.1M
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, int>::call(uWS::HttpResponse<true>*, int)
ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::call(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)
Line
Count
Source
249
213k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
213k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
213k
  }
ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::call(void*, uWS::HttpRequest*)
Line
Count
Source
249
496k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
496k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
496k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::call(uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)
Line
Count
Source
249
140k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
140k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
140k
  }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long>::call(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)
Line
Count
Source
249
29.5k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
29.5k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
29.5k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::call(unsigned long)
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::call(uWS::HttpResponse<true>*, uWS::HttpRequest*)
Line
Count
Source
249
140k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
140k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
140k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::call(uWS::WebSocket<true, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Unexecuted instantiation: EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::call(uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::call(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
249
113k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
113k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
113k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::call(uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
249
1.12M
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
1.12M
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
1.12M
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::call(uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
249
8.40k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
8.40k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
8.40k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::call(uWS::WebSocket<true, true, test()::PerSocketData>*)
Line
Count
Source
249
120k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
120k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
120k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::call(uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*)
ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::call(us_listen_socket_t*)
Line
Count
Source
249
22.0k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
22.0k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
22.0k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, int>::call(uWS::HttpResponse<false>*, int)
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::call(uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)
Line
Count
Source
249
346k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
346k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
346k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::call(uWS::WebSocket<false, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Unexecuted instantiation: EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::call(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
249
38.7k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
38.7k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
38.7k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
249
11.9k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
11.9k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
11.9k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
249
12.0k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
12.0k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
12.0k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::call(uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
249
42.6k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
42.6k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
42.6k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::call(uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
249
346k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
346k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
346k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::call(uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*)
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::call(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
249
29.5k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
29.5k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
29.5k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, char const*>::call(char const*)
Unexecuted instantiation: EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int>::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::call(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
249
207k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
207k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
207k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode>::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
249
136k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
136k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
136k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
249
15.7k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
15.7k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
15.7k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::call(uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
249
245k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
245k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
245k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::call(uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
249
27.5k
  R call(ArgTypes... args) noexcept(is_noexcept) {
250
27.5k
    return call_(storage_, std::forward<ArgTypes>(args)...);
251
27.5k
  }
252
253
  friend bool operator==(const any_invocable_impl& f, std::nullptr_t) noexcept {
254
    return !f;
255
  }
256
  friend bool operator==(std::nullptr_t, const any_invocable_impl& f) noexcept {
257
    return !f;
258
  }
259
  friend bool operator!=(const any_invocable_impl& f, std::nullptr_t) noexcept {
260
    return static_cast<bool>(f);
261
  }
262
  friend bool operator!=(std::nullptr_t, const any_invocable_impl& f) noexcept {
263
    return static_cast<bool>(f);
264
  }
265
266
  friend void swap(any_invocable_impl& lhs, any_invocable_impl& rhs) noexcept {
267
    lhs.swap(rhs);
268
  }
269
270
 private:
271
  storage storage_;
272
  handle_func handle_ = nullptr;
273
  call_func call_;
274
};
275
276
template <class T>
277
using remove_cvref_t = std::remove_cv_t<std::remove_reference_t<T>>;
278
279
template <class AI, class F, bool noex, class R, class FCall, class... ArgTypes>
280
using can_convert = std::conjunction<
281
    std::negation<std::is_same<remove_cvref_t<F>, AI>>,
282
    std::negation<any_detail::is_in_place_type<remove_cvref_t<F>>>,
283
    std::is_invocable_r<R, FCall, ArgTypes...>,
284
    std::bool_constant<(!noex ||
285
                        std::is_nothrow_invocable_r_v<R, FCall, ArgTypes...>)>,
286
    std::is_constructible<std::decay_t<F>, F>>;
287
288
}  // namespace any_detail
289
290
template <class Signature>
291
class any_invocable;
292
293
#define __OFATS_ANY_INVOCABLE(cv, ref, noex, inv_quals)                        \
294
  template <class R, class... ArgTypes>                                        \
295
  class any_invocable<R(ArgTypes...) cv ref noexcept(noex)>                    \
296
      : public any_detail::any_invocable_impl<R, noex, ArgTypes...> {          \
297
    using base_type = any_detail::any_invocable_impl<R, noex, ArgTypes...>;    \
298
                                                                               \
299
   public:                                                                     \
300
    using base_type::base_type;                                                \
301
                                                                               \
302
    template <                                                                 \
303
        class F,                                                               \
304
        class = std::enable_if_t<any_detail::can_convert<                      \
305
            any_invocable, F, noex, R, F inv_quals, ArgTypes...>::value>>      \
306
6.25M
    any_invocable(F&& f) {                                                     \
307
6.25M
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.25M
    }                                                                          \
ofats::any_invocable<void* (void*, uWS::HttpRequest*)>::any_invocable<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}, void>(uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}&&)
Line
Count
Source
306
576k
    any_invocable(F&& f) {                                                     \
307
576k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
576k
    }                                                                          \
ofats::any_invocable<void* (void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)>::any_invocable<uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}, void>(uWS::HttpContext<true>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}&&)
Line
Count
Source
306
576k
    any_invocable(F&& f) {                                                     \
307
576k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
576k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<bool (unsigned long)>::any_invocable<uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}, void>(uWS::HttpResponseData<true>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}&&)
ofats::any_invocable<bool (uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)>::any_invocable<uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}, void>(uWS::HttpContext<true>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}&&)
Line
Count
Source
306
11.4k
    any_invocable(F&& f) {                                                     \
307
11.4k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
11.4k
    }                                                                          \
ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>::any_invocable<uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}, void>(uWS::TemplatedApp<true>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
306
5.74k
    any_invocable(F&& f) {                                                     \
307
5.74k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.74k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::Loop*)>::any_invocable<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}, void>(uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}&&)
Line
Count
Source
306
5.74k
    any_invocable(F&& f) {                                                     \
307
5.74k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.74k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::Loop*)>::any_invocable<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}, void>(uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}&&)
Line
Count
Source
306
5.74k
    any_invocable(F&& f) {                                                     \
307
5.74k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.74k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void ()>::any_invocable<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}, void>(uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}&&)
Line
Count
Source
306
5.74k
    any_invocable(F&& f) {                                                     \
307
5.74k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.74k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>::any_invocable<uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}, void>(uWS::TemplatedApp<true>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<true>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
306
5.74k
    any_invocable(F&& f) {                                                     \
307
5.74k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.74k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*)>::any_invocable<test()::$_0, void>(test()::$_0&&)
Line
Count
Source
306
5.74k
    any_invocable(F&& f) {                                                     \
307
5.74k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.74k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::any_invocable<test()::$_1, void>(test()::$_1&&)
Line
Count
Source
306
5.74k
    any_invocable(F&& f) {                                                     \
307
5.74k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.74k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*)>::any_invocable<test()::$_2, void>(test()::$_2&&)
Line
Count
Source
306
5.74k
    any_invocable(F&& f) {                                                     \
307
5.74k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.74k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_3, void>(test()::$_3&&)
Line
Count
Source
306
5.74k
    any_invocable(F&& f) {                                                     \
307
5.74k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.74k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_4, void>(test()::$_4&&)
Line
Count
Source
306
5.74k
    any_invocable(F&& f) {                                                     \
307
5.74k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.74k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_5, void>(test()::$_5&&)
Line
Count
Source
306
5.74k
    any_invocable(F&& f) {                                                     \
307
5.74k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.74k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (us_listen_socket_t*)>::any_invocable<test()::$_6, void>(test()::$_6&&)
Line
Count
Source
306
5.74k
    any_invocable(F&& f) {                                                     \
307
5.74k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
5.74k
    }                                                                          \
ofats::any_invocable<void* (void*, uWS::HttpRequest*)>::any_invocable<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}, void>(uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, uWS::HttpRequest*)#1}&&)
Line
Count
Source
306
2.10M
    any_invocable(F&& f) {                                                     \
307
2.10M
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
2.10M
    }                                                                          \
ofats::any_invocable<void* (void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)>::any_invocable<uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}, void>(uWS::HttpContext<false>::init()::{lambda(us_socket_t*, char*, int)#1}::operator()(us_socket_t*, char*, int) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}&&)
Line
Count
Source
306
2.10M
    any_invocable(F&& f) {                                                     \
307
2.10M
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
2.10M
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<bool (unsigned long)>::any_invocable<uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}, void>(uWS::HttpResponseData<false>::callOnWritable(unsigned long)::{lambda(unsigned long)#1}&&)
ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}, void>(uWS::TemplatedApp<false>::TemplatedApp(uWS::SocketContextOptions)::{lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
306
16.3k
    any_invocable(F&& f) {                                                     \
307
16.3k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
16.3k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::Loop*)>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}&&)
Line
Count
Source
306
6.40k
    any_invocable(F&& f) {                                                     \
307
6.40k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.40k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::Loop*)>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}&&)
Line
Count
Source
306
6.40k
    any_invocable(F&& f) {                                                     \
307
6.40k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.40k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}&&)
Line
Count
Source
306
12.8k
    any_invocable(F&& f) {                                                     \
307
12.8k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
12.8k
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)>::any_invocable<uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}, void>(uWS::HttpContext<false>::onHttp(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>&&, bool)::{lambda(auto:1*)#1}&&)
Line
Count
Source
306
65.0k
    any_invocable(F&& f) {                                                     \
307
65.0k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
65.0k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
306
12.8k
    any_invocable(F&& f) {                                                     \
307
12.8k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
12.8k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<test()::$_0, void>(test()::$_0&&)
Line
Count
Source
306
6.40k
    any_invocable(F&& f) {                                                     \
307
6.40k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.40k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<test()::$_1, void>(test()::$_1&&)
Line
Count
Source
306
6.40k
    any_invocable(F&& f) {                                                     \
307
6.40k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.40k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}, void>(test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}&&)
Line
Count
Source
306
2.30k
    any_invocable(F&& f) {                                                     \
307
2.30k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
2.30k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}, void>(test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}::operator()() const::{lambda()#1}&&)
Line
Count
Source
306
1.08k
    any_invocable(F&& f) {                                                     \
307
1.08k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
1.08k
    }                                                                          \
ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)>::any_invocable<uWS::HttpResponse<false>::onData(ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>&&)::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}, void>(uWS::HttpResponse<false>::onData(ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>&&)::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)#1}&&)
Line
Count
Source
306
2.30k
    any_invocable(F&& f) {                                                     \
307
2.30k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
2.30k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>::any_invocable<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}, void>(test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
306
2.30k
    any_invocable(F&& f) {                                                     \
307
2.30k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
2.30k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}, void>(test()::$_1::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool) const::{lambda()#1}&&)
Line
Count
Source
306
1.22k
    any_invocable(F&& f) {                                                     \
307
1.22k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
1.22k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<test()::$_2, void>(test()::$_2&&)
Line
Count
Source
306
6.40k
    any_invocable(F&& f) {                                                     \
307
6.40k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.40k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_3, void>(test()::$_3&&)
Line
Count
Source
306
6.40k
    any_invocable(F&& f) {                                                     \
307
6.40k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.40k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::any_invocable<test()::$_4, void>(test()::$_4&&)
Line
Count
Source
306
6.40k
    any_invocable(F&& f) {                                                     \
307
6.40k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.40k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_5, void>(test()::$_5&&)
Line
Count
Source
306
6.40k
    any_invocable(F&& f) {                                                     \
307
6.40k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.40k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_6, void>(test()::$_6&&)
Line
Count
Source
306
6.40k
    any_invocable(F&& f) {                                                     \
307
6.40k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.40k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}, void>(test()::$_6::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}&&)
Line
Count
Source
306
10.9k
    any_invocable(F&& f) {                                                     \
307
10.9k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
10.9k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_7, void>(test()::$_7&&)
Line
Count
Source
306
6.40k
    any_invocable(F&& f) {                                                     \
307
6.40k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.40k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_8, void>(test()::$_8&&)
Line
Count
Source
306
6.40k
    any_invocable(F&& f) {                                                     \
307
6.40k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.40k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (us_listen_socket_t*)>::any_invocable<test()::$_9, void>(test()::$_9&&)
Line
Count
Source
306
6.40k
    any_invocable(F&& f) {                                                     \
307
6.40k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.40k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::Loop*)>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#1}&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::Loop*)>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(uWS::Loop*)#2}&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void ()>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda()#1}&&)
Line
Count
Source
306
13.5k
    any_invocable(F&& f) {                                                     \
307
13.5k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
13.5k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}, void>(uWS::TemplatedApp<false>::ws<test()::PerSocketData>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, uWS::TemplatedApp<false>::WebSocketBehavior<test()::PerSocketData>&&)::{lambda(auto:1*, auto:2*)#1}&&)
Line
Count
Source
306
13.5k
    any_invocable(F&& f) {                                                     \
307
13.5k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
13.5k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_0, void>(test()::$_0&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::any_invocable<test()::$_1, void>(test()::$_1&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_2, void>(test()::$_2&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_3, void>(test()::$_3&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_4, void>(test()::$_4&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_5, void>(test()::$_5&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_6, void>(test()::$_6&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::any_invocable<test()::$_7, void>(test()::$_7&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_8, void>(test()::$_8&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_9, void>(test()::$_9&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}, void>(test()::$_9::operator()<uWS::WebSocket<false, true, test()::PerSocketData> >(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >) const::{lambda()#1}&&)
Line
Count
Source
306
12.5k
    any_invocable(F&& f) {                                                     \
307
12.5k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
12.5k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_10, void>(test()::$_10&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::any_invocable<test()::$_11, void>(test()::$_11&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (us_listen_socket_t*)>::any_invocable<test()::$_12, void>(test()::$_12&&)
Line
Count
Source
306
6.79k
    any_invocable(F&& f) {                                                     \
307
6.79k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
6.79k
    }                                                                          \
AsyncEpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<test()::$_0, void>(test()::$_0&&)
Line
Count
Source
306
3.13k
    any_invocable(F&& f) {                                                     \
307
3.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
3.13k
    }                                                                          \
AsyncEpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}, void>(test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#1}&&)
Line
Count
Source
306
22.5k
    any_invocable(F&& f) {                                                     \
307
22.5k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
22.5k
    }                                                                          \
AsyncEpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}, void>(test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}&&)
Line
Count
Source
306
22.5k
    any_invocable(F&& f) {                                                     \
307
22.5k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
22.5k
    }                                                                          \
AsyncEpollHelloWorld.cpp:ofats::any_invocable<void ()>::any_invocable<test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}, void>(test()::$_0::operator()<uWS::HttpResponse<false>, uWS::HttpRequest>(uWS::HttpResponse<false>*, uWS::HttpRequest*) const::{lambda()#2}::operator()() const::{lambda()#1}&&)
Line
Count
Source
306
17.5k
    any_invocable(F&& f) {                                                     \
307
17.5k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
17.5k
    }                                                                          \
AsyncEpollHelloWorld.cpp:ofats::any_invocable<void (us_listen_socket_t*)>::any_invocable<test()::$_1, void>(test()::$_1&&)
Line
Count
Source
306
3.13k
    any_invocable(F&& f) {                                                     \
307
3.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
3.13k
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<StaticData::RouterData>*)>::any_invocable<StaticData::any_invocable()::{lambda(auto:1*)#1}, void>(StaticData::any_invocable()::{lambda(auto:1*)#1}&&)
Line
Count
Source
306
4
    any_invocable(F&& f) {                                                     \
307
4
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
4
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<StaticData::RouterData>*)>::any_invocable<StaticData::any_invocable()::{lambda(auto:1*)#2}, void>(StaticData::any_invocable()::{lambda(auto:1*)#2}&&)
Line
Count
Source
306
4
    any_invocable(F&& f) {                                                     \
307
4
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
4
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<StaticData::RouterData>*)>::any_invocable<StaticData::any_invocable()::{lambda(auto:1*)#3}, void>(StaticData::any_invocable()::{lambda(auto:1*)#3}&&)
Line
Count
Source
306
4
    any_invocable(F&& f) {                                                     \
307
4
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
4
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<StaticData::RouterData>*)>::any_invocable<StaticData::any_invocable()::{lambda(auto:1*)#4}, void>(StaticData::any_invocable()::{lambda(auto:1*)#4}&&)
Line
Count
Source
306
4
    any_invocable(F&& f) {                                                     \
307
4
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
4
    }                                                                          \
Http.cpp:ofats::any_invocable<void* (void*, uWS::HttpRequest*)>::any_invocable<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}, void>(LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, uWS::HttpRequest*)#1}&&)
Line
Count
Source
306
203k
    any_invocable(F&& f) {                                                     \
307
203k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
203k
    }                                                                          \
Http.cpp:ofats::any_invocable<void* (void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)>::any_invocable<LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}, void>(LLVMFuzzerTestOneInput::$_0::operator()(unsigned char const*, unsigned long) const::{lambda(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)#1}&&)
Line
Count
Source
306
203k
    any_invocable(F&& f) {                                                     \
307
203k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
308
203k
    }                                                                          \
309
                                                                               \
310
    template <class T, class... Args, class VT = std::decay_t<T>,              \
311
              class = std::enable_if_t<                                        \
312
                  std::is_move_constructible_v<VT> &&                          \
313
                  std::is_constructible_v<VT, Args...> &&                      \
314
                  std::is_invocable_r_v<R, VT inv_quals, ArgTypes...> &&       \
315
                  (!noex || std::is_nothrow_invocable_r_v<R, VT inv_quals,     \
316
                                                          ArgTypes...>)>>      \
317
    explicit any_invocable(std::in_place_type_t<T>, Args&&... args) {          \
318
      base_type::template create<VT>(std::forward<Args>(args)...);             \
319
    }                                                                          \
320
                                                                               \
321
    template <                                                                 \
322
        class T, class U, class... Args, class VT = std::decay_t<T>,           \
323
        class = std::enable_if_t<                                              \
324
            std::is_move_constructible_v<VT> &&                                \
325
            std::is_constructible_v<VT, std::initializer_list<U>&, Args...> && \
326
            std::is_invocable_r_v<R, VT inv_quals, ArgTypes...> &&             \
327
            (!noex ||                                                          \
328
             std::is_nothrow_invocable_r_v<R, VT inv_quals, ArgTypes...>)>>    \
329
    explicit any_invocable(std::in_place_type_t<T>,                            \
330
                           std::initializer_list<U> il, Args&&... args) {      \
331
      base_type::template create<VT>(il, std::forward<Args>(args)...);         \
332
    }                                                                          \
333
                                                                               \
334
    template <class F, class FDec = std::decay_t<F>>                           \
335
    std::enable_if_t<!std::is_same_v<FDec, any_invocable> &&                   \
336
                         std::is_move_constructible_v<FDec>,                   \
337
                     any_invocable&>                                           \
338
920k
    operator=(F&& f) {                                                         \
339
920k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
340
920k
      return *this;                                                            \
341
920k
    }                                                                          \
_ZN5ofats13any_invocableIFvNSt3__117basic_string_viewIcNS1_11char_traitsIcEEEEmEEaSIDnDnEENS1_9enable_ifIXaantsr3stdE9is_same_vIT0_S7_Esr3stdE23is_move_constructible_vISA_EERS7_E4typeEOT_
Line
Count
Source
338
1.22k
    operator=(F&& f) {                                                         \
339
1.22k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
340
1.22k
      return *this;                                                            \
341
1.22k
    }                                                                          \
Unexecuted instantiation: _ZN5ofats13any_invocableIFbmEEaSIZN3uWS16HttpResponseDataILb1EE14callOnWritableEmEUlmE_S7_EENSt3__19enable_ifIXaantsr3stdE9is_same_vIT0_S2_Esr3stdE23is_move_constructible_vISA_EERS2_E4typeEOT_
_ZN5ofats13any_invocableIFvvEEaSIDnDnEENSt3__19enable_ifIXaantsr3stdE9is_same_vIT0_S2_Esr3stdE23is_move_constructible_vIS6_EERS2_E4typeEOT_
Line
Count
Source
338
459k
    operator=(F&& f) {                                                         \
339
459k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
340
459k
      return *this;                                                            \
341
459k
    }                                                                          \
_ZN5ofats13any_invocableIFbmEEaSIDnDnEENSt3__19enable_ifIXaantsr3stdE9is_same_vIT0_S2_Esr3stdE23is_move_constructible_vIS6_EERS2_E4typeEOT_
Line
Count
Source
338
459k
    operator=(F&& f) {                                                         \
339
459k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
340
459k
      return *this;                                                            \
341
459k
    }                                                                          \
Unexecuted instantiation: _ZN5ofats13any_invocableIFbmEEaSIZN3uWS16HttpResponseDataILb0EE14callOnWritableEmEUlmE_S7_EENSt3__19enable_ifIXaantsr3stdE9is_same_vIT0_S2_Esr3stdE23is_move_constructible_vISA_EERS2_E4typeEOT_
342
    template <class F>                                                         \
343
    any_invocable& operator=(std::reference_wrapper<F> f) {                    \
344
      any_invocable{f}.swap(*this);                                            \
345
      return *this;                                                            \
346
    }                                                                          \
347
                                                                               \
348
23.1M
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
23.1M
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
23.1M
    }                                                                          \
ofats::any_invocable<void ()>::operator()()
Line
Count
Source
348
95.9k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
95.9k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
95.9k
    }                                                                          \
ofats::any_invocable<void (uWS::Loop*)>::operator()(uWS::Loop*)
Line
Count
Source
348
19.1M
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
19.1M
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
19.1M
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::HttpResponse<true>*, int)>::operator()(uWS::HttpResponse<true>*, int)
ofats::any_invocable<void* (void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)>::operator()(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)
Line
Count
Source
348
213k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
213k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
213k
    }                                                                          \
ofats::any_invocable<void* (void*, uWS::HttpRequest*)>::operator()(void*, uWS::HttpRequest*)
Line
Count
Source
348
496k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
496k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
496k
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)>::operator()(uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)
Line
Count
Source
348
140k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
140k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
140k
    }                                                                          \
ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)>::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, unsigned long)
Line
Count
Source
348
29.5k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
29.5k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
29.5k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<bool (unsigned long)>::operator()(unsigned long)
ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>::operator()(uWS::HttpResponse<true>*, uWS::HttpRequest*)
Line
Count
Source
348
140k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
140k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
140k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::WebSocket<true, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::operator()(uWS::WebSocket<true, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Unexecuted instantiation: EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)>::operator()(uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::operator()(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
348
113k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
113k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
113k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::operator()(uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
348
1.12M
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
1.12M
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
1.12M
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::operator()(uWS::WebSocket<true, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
348
8.40k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
8.40k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
8.40k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*)>::operator()(uWS::WebSocket<true, true, test()::PerSocketData>*)
Line
Count
Source
348
120k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
120k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
120k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*)>::operator()(uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*)
ofats::any_invocable<void (us_listen_socket_t*)>::operator()(us_listen_socket_t*)
Line
Count
Source
348
22.0k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
22.0k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
22.0k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::HttpResponse<false>*, int)>::operator()(uWS::HttpResponse<false>*, int)
ofats::any_invocable<bool (uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)>::operator()(uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)
Line
Count
Source
348
346k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
346k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
346k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::WebSocket<false, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::operator()(uWS::WebSocket<false, true, int>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Unexecuted instantiation: EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
348
38.7k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
38.7k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
38.7k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
348
11.9k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
11.9k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
11.9k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
348
12.0k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
12.0k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
12.0k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
348
42.6k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
42.6k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
42.6k
    }                                                                          \
ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::operator()(uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
348
346k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
346k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
346k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*)>::operator()(uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*)
ofats::any_invocable<void (std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>::operator()(std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
348
29.5k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
29.5k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
29.5k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (char const*)>::operator()(char const*)
Unexecuted instantiation: EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, int, int)
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
348
207k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
207k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
207k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
348
136k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
136k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
136k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
348
15.7k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
15.7k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
15.7k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
348
245k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
245k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
245k
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<StaticData::RouterData>*)>::operator()(uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
348
27.5k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
349
27.5k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
350
27.5k
    }                                                                          \
351
  };
352
353
// cv -> {`empty`, const}
354
// ref -> {`empty`, &, &&}
355
// noex -> {true, false}
356
// inv_quals -> (is_empty(ref) ? & : ref)
357
__OFATS_ANY_INVOCABLE(, , false, &)               // 000
358
__OFATS_ANY_INVOCABLE(, , true, &)                // 001
359
__OFATS_ANY_INVOCABLE(, &, false, &)              // 010
360
__OFATS_ANY_INVOCABLE(, &, true, &)               // 011
361
__OFATS_ANY_INVOCABLE(, &&, false, &&)            // 020
362
__OFATS_ANY_INVOCABLE(, &&, true, &&)             // 021
363
__OFATS_ANY_INVOCABLE(const, , false, const&)     // 100
364
__OFATS_ANY_INVOCABLE(const, , true, const&)      // 101
365
__OFATS_ANY_INVOCABLE(const, &, false, const&)    // 110
366
__OFATS_ANY_INVOCABLE(const, &, true, const&)     // 111
367
__OFATS_ANY_INVOCABLE(const, &&, false, const&&)  // 120
368
__OFATS_ANY_INVOCABLE(const, &&, true, const&&)   // 121
369
370
#undef __OFATS_ANY_INVOCABLE
371
372
}  // namespace ofats
373
374
/* We, uWebSockets define our own type */
375
namespace uWS {
376
  template <class T>
377
  using MoveOnlyFunction = ofats::any_invocable<T>;
378
}
379
380
#else // !defined(__cpp_lib_move_only_function) || __cpp_lib_move_only_function < 202110L
381
382
namespace uWS {
383
  template <class T>
384
  using MoveOnlyFunction = std::move_only_function<T>;
385
}
386
387
#endif
388
389
#endif  // _ANY_INVOKABLE_H_