Coverage Report

Created: 2023-06-06 06:17

/src/uWebSockets/src/MoveOnlyFunction.h
Line
Count
Source (jump to first uncovered line)
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
#include <memory>
32
#include <type_traits>
33
34
// clang-format off
35
/*
36
namespace std {
37
  template<class Sig> class any_invocable; // never defined
38
39
  template<class R, class... ArgTypes>
40
  class any_invocable<R(ArgTypes...) cv ref noexcept(noex)> {
41
  public:
42
    using result_type = R;
43
44
    // SECTION.3, construct/copy/destroy
45
    any_invocable() noexcept;
46
    any_invocable(nullptr_t) noexcept;
47
    any_invocable(any_invocable&&) noexcept;
48
    template<class F> any_invocable(F&&);
49
50
    template<class T, class... Args>
51
      explicit any_invocable(in_place_type_t<T>, Args&&...);
52
    template<class T, class U, class... Args>
53
      explicit any_invocable(in_place_type_t<T>, initializer_list<U>, Args&&...);
54
55
    any_invocable& operator=(any_invocable&&) noexcept;
56
    any_invocable& operator=(nullptr_t) noexcept;
57
    template<class F> any_invocable& operator=(F&&);
58
    template<class F> any_invocable& operator=(reference_wrapper<F>) noexcept;
59
60
    ~any_invocable();
61
62
    // SECTION.4, any_invocable modifiers
63
    void swap(any_invocable&) noexcept;
64
65
    // SECTION.5, any_invocable capacity
66
    explicit operator bool() const noexcept;
67
68
    // SECTION.6, any_invocable invocation
69
    R operator()(ArgTypes...) cv ref noexcept(noex);
70
71
    // SECTION.7, null pointer comparisons
72
    friend bool operator==(const any_invocable&, nullptr_t) noexcept;
73
74
    // SECTION.8, specialized algorithms
75
    friend void swap(any_invocable&, any_invocable&) noexcept;
76
  };
77
}
78
*/
79
// clang-format on
80
81
namespace ofats {
82
83
namespace any_detail {
84
85
using buffer = std::aligned_storage_t<sizeof(void*) * 2, alignof(void*)>;
86
87
template <class T>
88
inline constexpr bool is_small_object_v =
89
    sizeof(T) <= sizeof(buffer) && alignof(buffer) % alignof(T) == 0 &&
90
    std::is_nothrow_move_constructible_v<T>;
91
92
union storage {
93
  void* ptr_ = nullptr;
94
  buffer buf_;
95
};
96
97
enum class action { destroy, move };
98
99
template <class R, class... ArgTypes>
100
struct handler_traits {
101
  template <class Derived>
102
  struct handler_base {
103
3.63M
    static void handle(action act, storage* current, storage* other = nullptr) {
104
3.63M
      switch (act) {
105
2.97M
        case (action::destroy):
106
2.97M
          Derived::destroy(*current);
107
2.97M
          break;
108
660k
        case (action::move):
109
660k
          Derived::move(*current, *other);
110
660k
          break;
111
3.63M
      }
112
3.63M
    }
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
103
635k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
635k
      switch (act) {
105
635k
        case (action::destroy):
106
635k
          Derived::destroy(*current);
107
635k
          break;
108
0
        case (action::move):
109
0
          Derived::move(*current, *other);
110
0
          break;
111
635k
      }
112
635k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::handler_base<ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
103
635k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
635k
      switch (act) {
105
635k
        case (action::destroy):
106
635k
          Derived::destroy(*current);
107
635k
          break;
108
0
        case (action::move):
109
0
          Derived::move(*current, *other);
110
0
          break;
111
635k
      }
112
635k
    }
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)
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
103
11.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
11.8k
      switch (act) {
105
5.93k
        case (action::destroy):
106
5.93k
          Derived::destroy(*current);
107
5.93k
          break;
108
5.93k
        case (action::move):
109
5.93k
          Derived::move(*current, *other);
110
5.93k
          break;
111
11.8k
      }
112
11.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
103
11.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
11.8k
      switch (act) {
105
5.93k
        case (action::destroy):
106
5.93k
          Derived::destroy(*current);
107
5.93k
          break;
108
5.93k
        case (action::move):
109
5.93k
          Derived::move(*current, *other);
110
5.93k
          break;
111
11.8k
      }
112
11.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
103
29.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
29.6k
      switch (act) {
105
11.8k
        case (action::destroy):
106
11.8k
          Derived::destroy(*current);
107
11.8k
          break;
108
17.8k
        case (action::move):
109
17.8k
          Derived::move(*current, *other);
110
17.8k
          break;
111
29.6k
      }
112
29.6k
    }
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> > >::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(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
103
23.7k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
23.7k
      switch (act) {
105
11.8k
        case (action::destroy):
106
11.8k
          Derived::destroy(*current);
107
11.8k
          break;
108
11.8k
        case (action::move):
109
11.8k
          Derived::move(*current, *other);
110
11.8k
          break;
111
23.7k
      }
112
23.7k
    }
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
103
131k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
131k
      switch (act) {
105
42.3k
        case (action::destroy):
106
42.3k
          Derived::destroy(*current);
107
42.3k
          break;
108
89.4k
        case (action::move):
109
89.4k
          Derived::move(*current, *other);
110
89.4k
          break;
111
131k
      }
112
131k
    }
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
103
35.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
35.6k
      switch (act) {
105
11.8k
        case (action::destroy):
106
11.8k
          Derived::destroy(*current);
107
11.8k
          break;
108
23.7k
        case (action::move):
109
23.7k
          Derived::move(*current, *other);
110
23.7k
          break;
111
35.6k
      }
112
35.6k
    }
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
103
17.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
17.8k
      switch (act) {
105
5.93k
        case (action::destroy):
106
5.93k
          Derived::destroy(*current);
107
5.93k
          break;
108
11.8k
        case (action::move):
109
11.8k
          Derived::move(*current, *other);
110
11.8k
          break;
111
17.8k
      }
112
17.8k
    }
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
103
17.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
17.8k
      switch (act) {
105
5.93k
        case (action::destroy):
106
5.93k
          Derived::destroy(*current);
107
5.93k
          break;
108
11.8k
        case (action::move):
109
11.8k
          Derived::move(*current, *other);
110
11.8k
          break;
111
17.8k
      }
112
17.8k
    }
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
103
10.9k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
10.9k
      switch (act) {
105
3.15k
        case (action::destroy):
106
3.15k
          Derived::destroy(*current);
107
3.15k
          break;
108
7.79k
        case (action::move):
109
7.79k
          Derived::move(*current, *other);
110
7.79k
          break;
111
10.9k
      }
112
10.9k
    }
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
103
3.35k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
3.35k
      switch (act) {
105
1.67k
        case (action::destroy):
106
1.67k
          Derived::destroy(*current);
107
1.67k
          break;
108
1.68k
        case (action::move):
109
1.68k
          Derived::move(*current, *other);
110
1.68k
          break;
111
3.35k
      }
112
3.35k
    }
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
103
10.9k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
10.9k
      switch (act) {
105
3.15k
        case (action::destroy):
106
3.15k
          Derived::destroy(*current);
107
3.15k
          break;
108
7.79k
        case (action::move):
109
7.79k
          Derived::move(*current, *other);
110
7.79k
          break;
111
10.9k
      }
112
10.9k
    }
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
103
1.48k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
1.48k
      switch (act) {
105
1.48k
        case (action::destroy):
106
1.48k
          Derived::destroy(*current);
107
1.48k
          break;
108
0
        case (action::move):
109
0
          Derived::move(*current, *other);
110
0
          break;
111
1.48k
      }
112
1.48k
    }
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
103
17.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
17.8k
      switch (act) {
105
5.93k
        case (action::destroy):
106
5.93k
          Derived::destroy(*current);
107
5.93k
          break;
108
11.8k
        case (action::move):
109
11.8k
          Derived::move(*current, *other);
110
11.8k
          break;
111
17.8k
      }
112
17.8k
    }
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
103
17.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
17.8k
      switch (act) {
105
5.93k
        case (action::destroy):
106
5.93k
          Derived::destroy(*current);
107
5.93k
          break;
108
11.8k
        case (action::move):
109
11.8k
          Derived::move(*current, *other);
110
11.8k
          break;
111
17.8k
      }
112
17.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>::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
103
17.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
17.8k
      switch (act) {
105
5.93k
        case (action::destroy):
106
5.93k
          Derived::destroy(*current);
107
5.93k
          break;
108
11.8k
        case (action::move):
109
11.8k
          Derived::move(*current, *other);
110
11.8k
          break;
111
17.8k
      }
112
17.8k
    }
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
103
17.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
17.8k
      switch (act) {
105
5.93k
        case (action::destroy):
106
5.93k
          Derived::destroy(*current);
107
5.93k
          break;
108
11.8k
        case (action::move):
109
11.8k
          Derived::move(*current, *other);
110
11.8k
          break;
111
17.8k
      }
112
17.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> > >::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
103
17.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
17.8k
      switch (act) {
105
5.93k
        case (action::destroy):
106
5.93k
          Derived::destroy(*current);
107
5.93k
          break;
108
11.8k
        case (action::move):
109
11.8k
          Derived::move(*current, *other);
110
11.8k
          break;
111
17.8k
      }
112
17.8k
    }
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
103
22.1k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
22.1k
      switch (act) {
105
8.89k
        case (action::destroy):
106
8.89k
          Derived::destroy(*current);
107
8.89k
          break;
108
13.2k
        case (action::move):
109
13.2k
          Derived::move(*current, *other);
110
13.2k
          break;
111
22.1k
      }
112
22.1k
    }
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
103
17.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
17.8k
      switch (act) {
105
5.93k
        case (action::destroy):
106
5.93k
          Derived::destroy(*current);
107
5.93k
          break;
108
11.8k
        case (action::move):
109
11.8k
          Derived::move(*current, *other);
110
11.8k
          break;
111
17.8k
      }
112
17.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> > >::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
103
17.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
17.8k
      switch (act) {
105
5.93k
        case (action::destroy):
106
5.93k
          Derived::destroy(*current);
107
5.93k
          break;
108
11.8k
        case (action::move):
109
11.8k
          Derived::move(*current, *other);
110
11.8k
          break;
111
17.8k
      }
112
17.8k
    }
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
103
5.93k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
5.93k
      switch (act) {
105
5.93k
        case (action::destroy):
106
5.93k
          Derived::destroy(*current);
107
5.93k
          break;
108
0
        case (action::move):
109
0
          Derived::move(*current, *other);
110
0
          break;
111
5.93k
      }
112
5.93k
    }
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
103
4.96k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
4.96k
      switch (act) {
105
1.65k
        case (action::destroy):
106
1.65k
          Derived::destroy(*current);
107
1.65k
          break;
108
3.31k
        case (action::move):
109
3.31k
          Derived::move(*current, *other);
110
3.31k
          break;
111
4.96k
      }
112
4.96k
    }
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
103
82.8k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
82.8k
      switch (act) {
105
23.2k
        case (action::destroy):
106
23.2k
          Derived::destroy(*current);
107
23.2k
          break;
108
59.5k
        case (action::move):
109
59.5k
          Derived::move(*current, *other);
110
59.5k
          break;
111
82.8k
      }
112
82.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}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
103
50.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
50.4k
      switch (act) {
105
23.2k
        case (action::destroy):
106
23.2k
          Derived::destroy(*current);
107
23.2k
          break;
108
27.2k
        case (action::move):
109
27.2k
          Derived::move(*current, *other);
110
27.2k
          break;
111
50.4k
      }
112
50.4k
    }
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
103
13.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
13.0k
      switch (act) {
105
13.0k
        case (action::destroy):
106
13.0k
          Derived::destroy(*current);
107
13.0k
          break;
108
0
        case (action::move):
109
0
          Derived::move(*current, *other);
110
0
          break;
111
13.0k
      }
112
13.0k
    }
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
103
1.65k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
1.65k
      switch (act) {
105
1.65k
        case (action::destroy):
106
1.65k
          Derived::destroy(*current);
107
1.65k
          break;
108
0
        case (action::move):
109
0
          Derived::move(*current, *other);
110
0
          break;
111
1.65k
      }
112
1.65k
    }
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
103
403k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
403k
      switch (act) {
105
403k
        case (action::destroy):
106
403k
          Derived::destroy(*current);
107
403k
          break;
108
0
        case (action::move):
109
0
          Derived::move(*current, *other);
110
0
          break;
111
403k
      }
112
403k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::handler_base<ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::action)
Line
Count
Source
103
403k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
403k
      switch (act) {
105
403k
        case (action::destroy):
106
403k
          Derived::destroy(*current);
107
403k
          break;
108
0
        case (action::move):
109
0
          Derived::move(*current, *other);
110
0
          break;
111
403k
      }
112
403k
    }
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)
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
103
8.27k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
8.27k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
4.13k
        case (action::move):
109
4.13k
          Derived::move(*current, *other);
110
4.13k
          break;
111
8.27k
      }
112
8.27k
    }
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
103
8.27k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
8.27k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
4.13k
        case (action::move):
109
4.13k
          Derived::move(*current, *other);
110
4.13k
          break;
111
8.27k
      }
112
8.27k
    }
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
103
8.27k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
8.27k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
4.13k
        case (action::move):
109
4.13k
          Derived::move(*current, *other);
110
4.13k
          break;
111
8.27k
      }
112
8.27k
    }
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> > >::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(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
103
8.27k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
8.27k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
4.13k
        case (action::move):
109
4.13k
          Derived::move(*current, *other);
110
4.13k
          break;
111
8.27k
      }
112
8.27k
    }
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
103
8.27k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
8.27k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
4.13k
        case (action::move):
109
4.13k
          Derived::move(*current, *other);
110
4.13k
          break;
111
8.27k
      }
112
8.27k
    }
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
103
12.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
12.4k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
8.27k
        case (action::move):
109
8.27k
          Derived::move(*current, *other);
110
8.27k
          break;
111
12.4k
      }
112
12.4k
    }
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
103
12.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
12.4k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
8.27k
        case (action::move):
109
8.27k
          Derived::move(*current, *other);
110
8.27k
          break;
111
12.4k
      }
112
12.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>::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
103
12.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
12.4k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
8.27k
        case (action::move):
109
8.27k
          Derived::move(*current, *other);
110
8.27k
          break;
111
12.4k
      }
112
12.4k
    }
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
103
12.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
12.4k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
8.27k
        case (action::move):
109
8.27k
          Derived::move(*current, *other);
110
8.27k
          break;
111
12.4k
      }
112
12.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> > >::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
103
12.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
12.4k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
8.27k
        case (action::move):
109
8.27k
          Derived::move(*current, *other);
110
8.27k
          break;
111
12.4k
      }
112
12.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> > >::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
103
12.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
12.4k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
8.27k
        case (action::move):
109
8.27k
          Derived::move(*current, *other);
110
8.27k
          break;
111
12.4k
      }
112
12.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> > >::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
103
12.4k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
12.4k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
8.27k
        case (action::move):
109
8.27k
          Derived::move(*current, *other);
110
8.27k
          break;
111
12.4k
      }
112
12.4k
    }
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
103
4.13k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
4.13k
      switch (act) {
105
4.13k
        case (action::destroy):
106
4.13k
          Derived::destroy(*current);
107
4.13k
          break;
108
0
        case (action::move):
109
0
          Derived::move(*current, *other);
110
0
          break;
111
4.13k
      }
112
4.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
103
12
    static void handle(action act, storage* current, storage* other = nullptr) {
104
12
      switch (act) {
105
0
        case (action::destroy):
106
0
          Derived::destroy(*current);
107
0
          break;
108
12
        case (action::move):
109
12
          Derived::move(*current, *other);
110
12
          break;
111
12
      }
112
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
103
8
    static void handle(action act, storage* current, storage* other = nullptr) {
104
8
      switch (act) {
105
0
        case (action::destroy):
106
0
          Derived::destroy(*current);
107
0
          break;
108
8
        case (action::move):
109
8
          Derived::move(*current, *other);
110
8
          break;
111
8
      }
112
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
103
4
    static void handle(action act, storage* current, storage* other = nullptr) {
104
4
      switch (act) {
105
0
        case (action::destroy):
106
0
          Derived::destroy(*current);
107
0
          break;
108
4
        case (action::move):
109
4
          Derived::move(*current, *other);
110
4
          break;
111
4
      }
112
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
103
4
    static void handle(action act, storage* current, storage* other = nullptr) {
104
4
      switch (act) {
105
0
        case (action::destroy):
106
0
          Derived::destroy(*current);
107
0
          break;
108
4
        case (action::move):
109
4
          Derived::move(*current, *other);
110
4
          break;
111
4
      }
112
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
103
245k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
245k
      switch (act) {
105
245k
        case (action::destroy):
106
245k
          Derived::destroy(*current);
107
245k
          break;
108
0
        case (action::move):
109
0
          Derived::move(*current, *other);
110
0
          break;
111
245k
      }
112
245k
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::handler_base<ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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
103
245k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
245k
      switch (act) {
105
245k
        case (action::destroy):
106
245k
          Derived::destroy(*current);
107
245k
          break;
108
0
        case (action::move):
109
0
          Derived::move(*current, *other);
110
0
          break;
111
245k
      }
112
245k
    }
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
103
11.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
11.0k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
5.52k
        case (action::move):
109
5.52k
          Derived::move(*current, *other);
110
5.52k
          break;
111
11.0k
      }
112
11.0k
    }
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
103
11.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
11.0k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
5.52k
        case (action::move):
109
5.52k
          Derived::move(*current, *other);
110
5.52k
          break;
111
11.0k
      }
112
11.0k
    }
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
103
27.6k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
27.6k
      switch (act) {
105
11.0k
        case (action::destroy):
106
11.0k
          Derived::destroy(*current);
107
11.0k
          break;
108
16.5k
        case (action::move):
109
16.5k
          Derived::move(*current, *other);
110
16.5k
          break;
111
27.6k
      }
112
27.6k
    }
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> > >::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(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}> >::handle(ofats::any_detail::action, ofats::any_detail::storage*, ofats::any_detail::storage)
Line
Count
Source
103
22.0k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
22.0k
      switch (act) {
105
11.0k
        case (action::destroy):
106
11.0k
          Derived::destroy(*current);
107
11.0k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
22.0k
      }
112
22.0k
    }
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
103
33.1k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
33.1k
      switch (act) {
105
11.0k
        case (action::destroy):
106
11.0k
          Derived::destroy(*current);
107
11.0k
          break;
108
22.0k
        case (action::move):
109
22.0k
          Derived::move(*current, *other);
110
22.0k
          break;
111
33.1k
      }
112
33.1k
    }
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
103
16.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
16.5k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
16.5k
      }
112
16.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>::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
103
16.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
16.5k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
16.5k
      }
112
16.5k
    }
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
103
16.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
16.5k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
16.5k
      }
112
16.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> > >::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
103
16.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
16.5k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
16.5k
      }
112
16.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> > >::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
103
16.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
16.5k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
16.5k
      }
112
16.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> > >::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
103
16.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
16.5k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
16.5k
      }
112
16.5k
    }
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
103
16.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
16.5k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
16.5k
      }
112
16.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>::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
103
16.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
16.5k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
16.5k
      }
112
16.5k
    }
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
103
16.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
16.5k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
16.5k
      }
112
16.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> > >::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
103
16.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
16.5k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
16.5k
      }
112
16.5k
    }
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
103
10.9k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
10.9k
      switch (act) {
105
4.18k
        case (action::destroy):
106
4.18k
          Derived::destroy(*current);
107
4.18k
          break;
108
6.76k
        case (action::move):
109
6.76k
          Derived::move(*current, *other);
110
6.76k
          break;
111
10.9k
      }
112
10.9k
    }
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
103
16.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
16.5k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
16.5k
      }
112
16.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> > >::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
103
16.5k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
16.5k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
11.0k
        case (action::move):
109
11.0k
          Derived::move(*current, *other);
110
11.0k
          break;
111
16.5k
      }
112
16.5k
    }
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
103
5.52k
    static void handle(action act, storage* current, storage* other = nullptr) {
104
5.52k
      switch (act) {
105
5.52k
        case (action::destroy):
106
5.52k
          Derived::destroy(*current);
107
5.52k
          break;
108
0
        case (action::move):
109
0
          Derived::move(*current, *other);
110
0
          break;
111
5.52k
      }
112
5.52k
    }
113
  };
114
115
  template <class T>
116
  struct small_handler : handler_base<small_handler<T>> {
117
    template <class... Args>
118
3.28M
    static void create(storage& s, Args&&... args) {
119
3.28M
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
3.28M
    }
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
118
635k
    static void create(storage& s, Args&&... args) {
119
635k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
635k
    }
void ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)#1}>::create<{lambda(us_socket_t*, char*, int)#1}>(ofats::any_detail::storage&, {lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
118
635k
    static void create(storage& s, Args&&... args) {
119
635k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
635k
    }
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}&&)
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
118
11.8k
    static void create(storage& s, Args&&... args) {
119
11.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
11.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
118
11.8k
    static void create(storage& s, Args&&... args) {
119
11.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
11.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
118
29.6k
    static void create(storage& s, Args&&... args) {
119
29.6k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
29.6k
    }
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
118
17.8k
    static void create(storage& s, Args&&... args) {
119
17.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
17.8k
    }
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
118
17.8k
    static void create(storage& s, Args&&... args) {
119
17.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
17.8k
    }
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
118
10.9k
    static void create(storage& s, Args&&... args) {
119
10.9k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
10.9k
    }
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
118
3.35k
    static void create(storage& s, Args&&... args) {
119
3.35k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
3.35k
    }
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
118
10.9k
    static void create(storage& s, Args&&... args) {
119
10.9k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
10.9k
    }
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
118
17.8k
    static void create(storage& s, Args&&... args) {
119
17.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
17.8k
    }
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
118
17.8k
    static void create(storage& s, Args&&... args) {
119
17.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
17.8k
    }
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
118
17.8k
    static void create(storage& s, Args&&... args) {
119
17.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
17.8k
    }
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
118
17.8k
    static void create(storage& s, Args&&... args) {
119
17.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
17.8k
    }
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
118
17.8k
    static void create(storage& s, Args&&... args) {
119
17.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
17.8k
    }
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
118
22.1k
    static void create(storage& s, Args&&... args) {
119
22.1k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
22.1k
    }
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
118
17.8k
    static void create(storage& s, Args&&... args) {
119
17.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
17.8k
    }
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
118
17.8k
    static void create(storage& s, Args&&... args) {
119
17.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
17.8k
    }
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
118
5.93k
    static void create(storage& s, Args&&... args) {
119
5.93k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
5.93k
    }
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
118
4.96k
    static void create(storage& s, Args&&... args) {
119
4.96k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
4.96k
    }
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
118
82.8k
    static void create(storage& s, Args&&... args) {
119
82.8k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
82.8k
    }
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
118
1.65k
    static void create(storage& s, Args&&... args) {
119
1.65k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
1.65k
    }
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
118
403k
    static void create(storage& s, Args&&... args) {
119
403k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
403k
    }
void ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)#1}>::create<{lambda(us_socket_t*, char*, int)#1}>(ofats::any_detail::storage&, {lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
118
403k
    static void create(storage& s, Args&&... args) {
119
403k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
403k
    }
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}&&)
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
118
8.27k
    static void create(storage& s, Args&&... args) {
119
8.27k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
8.27k
    }
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
118
8.27k
    static void create(storage& s, Args&&... args) {
119
8.27k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
8.27k
    }
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
118
8.27k
    static void create(storage& s, Args&&... args) {
119
8.27k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
8.27k
    }
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
118
12.4k
    static void create(storage& s, Args&&... args) {
119
12.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
12.4k
    }
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
118
12.4k
    static void create(storage& s, Args&&... args) {
119
12.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
12.4k
    }
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
118
12.4k
    static void create(storage& s, Args&&... args) {
119
12.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
12.4k
    }
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
118
12.4k
    static void create(storage& s, Args&&... args) {
119
12.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
12.4k
    }
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
118
12.4k
    static void create(storage& s, Args&&... args) {
119
12.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
12.4k
    }
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
118
12.4k
    static void create(storage& s, Args&&... args) {
119
12.4k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
12.4k
    }
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
118
4.13k
    static void create(storage& s, Args&&... args) {
119
4.13k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
4.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
118
16
    static void create(storage& s, Args&&... args) {
119
16
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
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
118
12
    static void create(storage& s, Args&&... args) {
119
12
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
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
118
8
    static void create(storage& s, Args&&... args) {
119
8
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
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
118
8
    static void create(storage& s, Args&&... args) {
119
8
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
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
118
245k
    static void create(storage& s, Args&&... args) {
119
245k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
245k
    }
Http.cpp:void ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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
118
245k
    static void create(storage& s, Args&&... args) {
119
245k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
245k
    }
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
118
11.0k
    static void create(storage& s, Args&&... args) {
119
11.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
11.0k
    }
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
118
11.0k
    static void create(storage& s, Args&&... args) {
119
11.0k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
11.0k
    }
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
118
27.6k
    static void create(storage& s, Args&&... args) {
119
27.6k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
27.6k
    }
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
118
16.5k
    static void create(storage& s, Args&&... args) {
119
16.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
16.5k
    }
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
118
16.5k
    static void create(storage& s, Args&&... args) {
119
16.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
16.5k
    }
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
118
16.5k
    static void create(storage& s, Args&&... args) {
119
16.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
16.5k
    }
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
118
16.5k
    static void create(storage& s, Args&&... args) {
119
16.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
16.5k
    }
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
118
16.5k
    static void create(storage& s, Args&&... args) {
119
16.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
16.5k
    }
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
118
16.5k
    static void create(storage& s, Args&&... args) {
119
16.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
16.5k
    }
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
118
16.5k
    static void create(storage& s, Args&&... args) {
119
16.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
16.5k
    }
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
118
16.5k
    static void create(storage& s, Args&&... args) {
119
16.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
16.5k
    }
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
118
16.5k
    static void create(storage& s, Args&&... args) {
119
16.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
16.5k
    }
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
118
16.5k
    static void create(storage& s, Args&&... args) {
119
16.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
16.5k
    }
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
118
16.5k
    static void create(storage& s, Args&&... args) {
119
16.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
16.5k
    }
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
118
16.5k
    static void create(storage& s, Args&&... args) {
119
16.5k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
16.5k
    }
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
118
5.52k
    static void create(storage& s, Args&&... args) {
119
5.52k
      new (static_cast<void*>(&s.buf_)) T(std::forward<Args>(args)...);
120
5.52k
    }
121
122
3.28M
    static void destroy(storage& s) noexcept {
123
3.28M
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
3.28M
      value.~T();
125
3.28M
    }
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
122
635k
    static void destroy(storage& s) noexcept {
123
635k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
635k
      value.~T();
125
635k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
635k
    static void destroy(storage& s) noexcept {
123
635k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
635k
      value.~T();
125
635k
    }
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&)
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
122
11.8k
    static void destroy(storage& s) noexcept {
123
11.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
11.8k
      value.~T();
125
11.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
122
11.8k
    static void destroy(storage& s) noexcept {
123
11.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
11.8k
      value.~T();
125
11.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
122
29.6k
    static void destroy(storage& s) noexcept {
123
29.6k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
29.6k
      value.~T();
125
29.6k
    }
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
122
17.8k
    static void destroy(storage& s) noexcept {
123
17.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
17.8k
      value.~T();
125
17.8k
    }
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
122
17.8k
    static void destroy(storage& s) noexcept {
123
17.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
17.8k
      value.~T();
125
17.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}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
10.9k
    static void destroy(storage& s) noexcept {
123
10.9k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
10.9k
      value.~T();
125
10.9k
    }
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
122
3.35k
    static void destroy(storage& s) noexcept {
123
3.35k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
3.35k
      value.~T();
125
3.35k
    }
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
122
10.9k
    static void destroy(storage& s) noexcept {
123
10.9k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
10.9k
      value.~T();
125
10.9k
    }
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
122
17.8k
    static void destroy(storage& s) noexcept {
123
17.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
17.8k
      value.~T();
125
17.8k
    }
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
122
17.8k
    static void destroy(storage& s) noexcept {
123
17.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
17.8k
      value.~T();
125
17.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
17.8k
    static void destroy(storage& s) noexcept {
123
17.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
17.8k
      value.~T();
125
17.8k
    }
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
122
17.8k
    static void destroy(storage& s) noexcept {
123
17.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
17.8k
      value.~T();
125
17.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
17.8k
    static void destroy(storage& s) noexcept {
123
17.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
17.8k
      value.~T();
125
17.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}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
22.1k
    static void destroy(storage& s) noexcept {
123
22.1k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
22.1k
      value.~T();
125
22.1k
    }
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
122
17.8k
    static void destroy(storage& s) noexcept {
123
17.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
17.8k
      value.~T();
125
17.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
17.8k
    static void destroy(storage& s) noexcept {
123
17.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
17.8k
      value.~T();
125
17.8k
    }
EpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_9>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
5.93k
    static void destroy(storage& s) noexcept {
123
5.93k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
5.93k
      value.~T();
125
5.93k
    }
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
122
4.96k
    static void destroy(storage& s) noexcept {
123
4.96k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
4.96k
      value.~T();
125
4.96k
    }
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
122
82.8k
    static void destroy(storage& s) noexcept {
123
82.8k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
82.8k
      value.~T();
125
82.8k
    }
AsyncEpollHelloWorld.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_1>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
1.65k
    static void destroy(storage& s) noexcept {
123
1.65k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
1.65k
      value.~T();
125
1.65k
    }
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
122
403k
    static void destroy(storage& s) noexcept {
123
403k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
403k
      value.~T();
125
403k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
403k
    static void destroy(storage& s) noexcept {
123
403k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
403k
      value.~T();
125
403k
    }
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&)
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
122
8.27k
    static void destroy(storage& s) noexcept {
123
8.27k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
8.27k
      value.~T();
125
8.27k
    }
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
122
8.27k
    static void destroy(storage& s) noexcept {
123
8.27k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
8.27k
      value.~T();
125
8.27k
    }
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
122
8.27k
    static void destroy(storage& s) noexcept {
123
8.27k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
8.27k
      value.~T();
125
8.27k
    }
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
122
12.4k
    static void destroy(storage& s) noexcept {
123
12.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
12.4k
      value.~T();
125
12.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
12.4k
    static void destroy(storage& s) noexcept {
123
12.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
12.4k
      value.~T();
125
12.4k
    }
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
122
12.4k
    static void destroy(storage& s) noexcept {
123
12.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
12.4k
      value.~T();
125
12.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
12.4k
    static void destroy(storage& s) noexcept {
123
12.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
12.4k
      value.~T();
125
12.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
12.4k
    static void destroy(storage& s) noexcept {
123
12.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
12.4k
      value.~T();
125
12.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
12.4k
    static void destroy(storage& s) noexcept {
123
12.4k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
12.4k
      value.~T();
125
12.4k
    }
EpollEchoServerPubSub.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_6>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
4.13k
    static void destroy(storage& s) noexcept {
123
4.13k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
4.13k
      value.~T();
125
4.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
122
12
    static void destroy(storage& s) noexcept {
123
12
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
12
      value.~T();
125
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
122
8
    static void destroy(storage& s) noexcept {
123
8
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
8
      value.~T();
125
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
122
4
    static void destroy(storage& s) noexcept {
123
4
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
4
      value.~T();
125
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
122
4
    static void destroy(storage& s) noexcept {
123
4
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
4
      value.~T();
125
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
122
245k
    static void destroy(storage& s) noexcept {
123
245k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
245k
      value.~T();
125
245k
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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
122
245k
    static void destroy(storage& s) noexcept {
123
245k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
245k
      value.~T();
125
245k
    }
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
122
11.0k
    static void destroy(storage& s) noexcept {
123
11.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
11.0k
      value.~T();
125
11.0k
    }
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
122
11.0k
    static void destroy(storage& s) noexcept {
123
11.0k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
11.0k
      value.~T();
125
11.0k
    }
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
122
27.6k
    static void destroy(storage& s) noexcept {
123
27.6k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
27.6k
      value.~T();
125
27.6k
    }
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
122
16.5k
    static void destroy(storage& s) noexcept {
123
16.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
16.5k
      value.~T();
125
16.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
16.5k
    static void destroy(storage& s) noexcept {
123
16.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
16.5k
      value.~T();
125
16.5k
    }
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
122
16.5k
    static void destroy(storage& s) noexcept {
123
16.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
16.5k
      value.~T();
125
16.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
16.5k
    static void destroy(storage& s) noexcept {
123
16.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
16.5k
      value.~T();
125
16.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
16.5k
    static void destroy(storage& s) noexcept {
123
16.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
16.5k
      value.~T();
125
16.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
16.5k
    static void destroy(storage& s) noexcept {
123
16.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
16.5k
      value.~T();
125
16.5k
    }
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
122
16.5k
    static void destroy(storage& s) noexcept {
123
16.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
16.5k
      value.~T();
125
16.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
16.5k
    static void destroy(storage& s) noexcept {
123
16.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
16.5k
      value.~T();
125
16.5k
    }
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
122
16.5k
    static void destroy(storage& s) noexcept {
123
16.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
16.5k
      value.~T();
125
16.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
16.5k
    static void destroy(storage& s) noexcept {
123
16.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
16.5k
      value.~T();
125
16.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
16.5k
    static void destroy(storage& s) noexcept {
123
16.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
16.5k
      value.~T();
125
16.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>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
16.5k
    static void destroy(storage& s) noexcept {
123
16.5k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
16.5k
      value.~T();
125
16.5k
    }
EpollEchoServer.cpp:ofats::any_detail::handler_traits<void, us_listen_socket_t*>::small_handler<test()::$_12>::destroy(ofats::any_detail::storage&)
Line
Count
Source
122
5.52k
    static void destroy(storage& s) noexcept {
123
5.52k
      T& value = *static_cast<T*>(static_cast<void*>(&s.buf_));
124
5.52k
      value.~T();
125
5.52k
    }
126
127
452k
    static void move(storage& dst, storage& src) noexcept {
128
452k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
452k
      destroy(src);
130
452k
    }
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> >, bool>::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> >, bool)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)#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)
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
127
5.93k
    static void move(storage& dst, storage& src) noexcept {
128
5.93k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
5.93k
      destroy(src);
130
5.93k
    }
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
127
5.93k
    static void move(storage& dst, storage& src) noexcept {
128
5.93k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
5.93k
      destroy(src);
130
5.93k
    }
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
127
17.8k
    static void move(storage& dst, storage& src) noexcept {
128
17.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
17.8k
      destroy(src);
130
17.8k
    }
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
127
11.8k
    static void move(storage& dst, storage& src) noexcept {
128
11.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.8k
      destroy(src);
130
11.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
127
11.8k
    static void move(storage& dst, storage& src) noexcept {
128
11.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.8k
      destroy(src);
130
11.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
127
7.79k
    static void move(storage& dst, storage& src) noexcept {
128
7.79k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
7.79k
      destroy(src);
130
7.79k
    }
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
127
1.68k
    static void move(storage& dst, storage& src) noexcept {
128
1.68k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
1.68k
      destroy(src);
130
1.68k
    }
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
127
7.79k
    static void move(storage& dst, storage& src) noexcept {
128
7.79k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
7.79k
      destroy(src);
130
7.79k
    }
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
127
11.8k
    static void move(storage& dst, storage& src) noexcept {
128
11.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.8k
      destroy(src);
130
11.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
127
11.8k
    static void move(storage& dst, storage& src) noexcept {
128
11.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.8k
      destroy(src);
130
11.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
127
11.8k
    static void move(storage& dst, storage& src) noexcept {
128
11.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.8k
      destroy(src);
130
11.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
127
11.8k
    static void move(storage& dst, storage& src) noexcept {
128
11.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.8k
      destroy(src);
130
11.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
127
11.8k
    static void move(storage& dst, storage& src) noexcept {
128
11.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.8k
      destroy(src);
130
11.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
127
13.2k
    static void move(storage& dst, storage& src) noexcept {
128
13.2k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
13.2k
      destroy(src);
130
13.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()::$_7>::move(ofats::any_detail::storage&, ofats::any_detail::storage&)
Line
Count
Source
127
11.8k
    static void move(storage& dst, storage& src) noexcept {
128
11.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.8k
      destroy(src);
130
11.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
127
11.8k
    static void move(storage& dst, storage& src) noexcept {
128
11.8k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.8k
      destroy(src);
130
11.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&)
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
127
3.31k
    static void move(storage& dst, storage& src) noexcept {
128
3.31k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
3.31k
      destroy(src);
130
3.31k
    }
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
127
59.5k
    static void move(storage& dst, storage& src) noexcept {
128
59.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
59.5k
      destroy(src);
130
59.5k
    }
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&)
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> >, bool>::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> >, bool)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)#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)
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
127
4.13k
    static void move(storage& dst, storage& src) noexcept {
128
4.13k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
4.13k
      destroy(src);
130
4.13k
    }
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
127
4.13k
    static void move(storage& dst, storage& src) noexcept {
128
4.13k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
4.13k
      destroy(src);
130
4.13k
    }
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
127
4.13k
    static void move(storage& dst, storage& src) noexcept {
128
4.13k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
4.13k
      destroy(src);
130
4.13k
    }
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
127
8.27k
    static void move(storage& dst, storage& src) noexcept {
128
8.27k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
8.27k
      destroy(src);
130
8.27k
    }
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
127
8.27k
    static void move(storage& dst, storage& src) noexcept {
128
8.27k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
8.27k
      destroy(src);
130
8.27k
    }
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
127
8.27k
    static void move(storage& dst, storage& src) noexcept {
128
8.27k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
8.27k
      destroy(src);
130
8.27k
    }
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
127
8.27k
    static void move(storage& dst, storage& src) noexcept {
128
8.27k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
8.27k
      destroy(src);
130
8.27k
    }
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
127
8.27k
    static void move(storage& dst, storage& src) noexcept {
128
8.27k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
8.27k
      destroy(src);
130
8.27k
    }
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
127
8.27k
    static void move(storage& dst, storage& src) noexcept {
128
8.27k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
8.27k
      destroy(src);
130
8.27k
    }
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&)
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
127
12
    static void move(storage& dst, storage& src) noexcept {
128
12
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
12
      destroy(src);
130
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
127
8
    static void move(storage& dst, storage& src) noexcept {
128
8
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
8
      destroy(src);
130
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
127
4
    static void move(storage& dst, storage& src) noexcept {
128
4
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
4
      destroy(src);
130
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
127
4
    static void move(storage& dst, storage& src) noexcept {
128
4
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
4
      destroy(src);
130
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> >, bool>::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)
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
127
5.52k
    static void move(storage& dst, storage& src) noexcept {
128
5.52k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
5.52k
      destroy(src);
130
5.52k
    }
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
127
5.52k
    static void move(storage& dst, storage& src) noexcept {
128
5.52k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
5.52k
      destroy(src);
130
5.52k
    }
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
127
16.5k
    static void move(storage& dst, storage& src) noexcept {
128
16.5k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
16.5k
      destroy(src);
130
16.5k
    }
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
127
11.0k
    static void move(storage& dst, storage& src) noexcept {
128
11.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.0k
      destroy(src);
130
11.0k
    }
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
127
11.0k
    static void move(storage& dst, storage& src) noexcept {
128
11.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.0k
      destroy(src);
130
11.0k
    }
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
127
11.0k
    static void move(storage& dst, storage& src) noexcept {
128
11.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.0k
      destroy(src);
130
11.0k
    }
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
127
11.0k
    static void move(storage& dst, storage& src) noexcept {
128
11.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.0k
      destroy(src);
130
11.0k
    }
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
127
11.0k
    static void move(storage& dst, storage& src) noexcept {
128
11.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.0k
      destroy(src);
130
11.0k
    }
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
127
11.0k
    static void move(storage& dst, storage& src) noexcept {
128
11.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.0k
      destroy(src);
130
11.0k
    }
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
127
11.0k
    static void move(storage& dst, storage& src) noexcept {
128
11.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.0k
      destroy(src);
130
11.0k
    }
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
127
11.0k
    static void move(storage& dst, storage& src) noexcept {
128
11.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.0k
      destroy(src);
130
11.0k
    }
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
127
11.0k
    static void move(storage& dst, storage& src) noexcept {
128
11.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.0k
      destroy(src);
130
11.0k
    }
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
127
11.0k
    static void move(storage& dst, storage& src) noexcept {
128
11.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.0k
      destroy(src);
130
11.0k
    }
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
127
11.0k
    static void move(storage& dst, storage& src) noexcept {
128
11.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.0k
      destroy(src);
130
11.0k
    }
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
127
11.0k
    static void move(storage& dst, storage& src) noexcept {
128
11.0k
      create(dst, std::move(*static_cast<T*>(static_cast<void*>(&src.buf_))));
129
11.0k
      destroy(src);
130
11.0k
    }
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&)
131
132
12.1M
    static R call(storage& s, ArgTypes... args) {
133
12.1M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
12.1M
                         std::forward<ArgTypes>(args)...);
135
12.1M
    }
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
132
195k
    static R call(storage& s, ArgTypes... args) {
133
195k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
195k
                         std::forward<ArgTypes>(args)...);
135
195k
    }
ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)#1}>::call(ofats::any_detail::storage&, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
132
40.8k
    static R call(storage& s, ArgTypes... args) {
133
40.8k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
40.8k
                         std::forward<ArgTypes>(args)...);
135
40.8k
    }
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)
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
132
1.74M
    static R call(storage& s, ArgTypes... args) {
133
1.74M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
1.74M
                         std::forward<ArgTypes>(args)...);
135
1.74M
    }
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
132
1.74M
    static R call(storage& s, ArgTypes... args) {
133
1.74M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
1.74M
                         std::forward<ArgTypes>(args)...);
135
1.74M
    }
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
132
11.8k
    static R call(storage& s, ArgTypes... args) {
133
11.8k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
11.8k
                         std::forward<ArgTypes>(args)...);
135
11.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
132
7.76k
    static R call(storage& s, ArgTypes... args) {
133
7.76k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
7.76k
                         std::forward<ArgTypes>(args)...);
135
7.76k
    }
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
132
3.15k
    static R call(storage& s, ArgTypes... args) {
133
3.15k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
3.15k
                         std::forward<ArgTypes>(args)...);
135
3.15k
    }
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
132
1.67k
    static R call(storage& s, ArgTypes... args) {
133
1.67k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
1.67k
                         std::forward<ArgTypes>(args)...);
135
1.67k
    }
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
132
1.56k
    static R call(storage& s, ArgTypes... args) {
133
1.56k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
1.56k
                         std::forward<ArgTypes>(args)...);
135
1.56k
    }
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
132
6.01k
    static R call(storage& s, ArgTypes... args) {
133
6.01k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
6.01k
                         std::forward<ArgTypes>(args)...);
135
6.01k
    }
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
132
4.10k
    static R call(storage& s, ArgTypes... args) {
133
4.10k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
4.10k
                         std::forward<ArgTypes>(args)...);
135
4.10k
    }
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
132
34.7k
    static R call(storage& s, ArgTypes... args) {
133
34.7k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
34.7k
                         std::forward<ArgTypes>(args)...);
135
34.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
132
16.0k
    static R call(storage& s, ArgTypes... args) {
133
16.0k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
16.0k
                         std::forward<ArgTypes>(args)...);
135
16.0k
    }
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
132
5.11k
    static R call(storage& s, ArgTypes... args) {
133
5.11k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
5.11k
                         std::forward<ArgTypes>(args)...);
135
5.11k
    }
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
132
8.89k
    static R call(storage& s, ArgTypes... args) {
133
8.89k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
8.89k
                         std::forward<ArgTypes>(args)...);
135
8.89k
    }
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
132
7.87k
    static R call(storage& s, ArgTypes... args) {
133
7.87k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
7.87k
                         std::forward<ArgTypes>(args)...);
135
7.87k
    }
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
132
1.00k
    static R call(storage& s, ArgTypes... args) {
133
1.00k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
1.00k
                         std::forward<ArgTypes>(args)...);
135
1.00k
    }
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
132
34.7k
    static R call(storage& s, ArgTypes... args) {
133
34.7k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
34.7k
                         std::forward<ArgTypes>(args)...);
135
34.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
132
5.93k
    static R call(storage& s, ArgTypes... args) {
133
5.93k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
5.93k
                         std::forward<ArgTypes>(args)...);
135
5.93k
    }
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
132
23.2k
    static R call(storage& s, ArgTypes... args) {
133
23.2k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
23.2k
                         std::forward<ArgTypes>(args)...);
135
23.2k
    }
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
132
10.1k
    static R call(storage& s, ArgTypes... args) {
133
10.1k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
10.1k
                         std::forward<ArgTypes>(args)...);
135
10.1k
    }
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
132
1.65k
    static R call(storage& s, ArgTypes... args) {
133
1.65k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
1.65k
                         std::forward<ArgTypes>(args)...);
135
1.65k
    }
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
132
79.4k
    static R call(storage& s, ArgTypes... args) {
133
79.4k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
79.4k
                         std::forward<ArgTypes>(args)...);
135
79.4k
    }
Unexecuted instantiation: ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)#1}>::call(ofats::any_detail::storage&, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
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)
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
132
1.31M
    static R call(storage& s, ArgTypes... args) {
133
1.31M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
1.31M
                         std::forward<ArgTypes>(args)...);
135
1.31M
    }
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
132
1.31M
    static R call(storage& s, ArgTypes... args) {
133
1.31M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
1.31M
                         std::forward<ArgTypes>(args)...);
135
1.31M
    }
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
132
4.13k
    static R call(storage& s, ArgTypes... args) {
133
4.13k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
4.13k
                         std::forward<ArgTypes>(args)...);
135
4.13k
    }
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
132
64.9k
    static R call(storage& s, ArgTypes... args) {
133
64.9k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
64.9k
                         std::forward<ArgTypes>(args)...);
135
64.9k
    }
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
132
167k
    static R call(storage& s, ArgTypes... args) {
133
167k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
167k
                         std::forward<ArgTypes>(args)...);
135
167k
    }
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
132
10.4k
    static R call(storage& s, ArgTypes... args) {
133
10.4k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
10.4k
                         std::forward<ArgTypes>(args)...);
135
10.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>::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
132
6.69k
    static R call(storage& s, ArgTypes... args) {
133
6.69k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
6.69k
                         std::forward<ArgTypes>(args)...);
135
6.69k
    }
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
132
789
    static R call(storage& s, ArgTypes... args) {
133
789
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
789
                         std::forward<ArgTypes>(args)...);
135
789
    }
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
132
64.9k
    static R call(storage& s, ArgTypes... args) {
133
64.9k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
64.9k
                         std::forward<ArgTypes>(args)...);
135
64.9k
    }
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
132
4.13k
    static R call(storage& s, ArgTypes... args) {
133
4.13k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
4.13k
                         std::forward<ArgTypes>(args)...);
135
4.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
132
5.11k
    static R call(storage& s, ArgTypes... args) {
133
5.11k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
5.11k
                         std::forward<ArgTypes>(args)...);
135
5.11k
    }
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
132
2.35k
    static R call(storage& s, ArgTypes... args) {
133
2.35k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
2.35k
                         std::forward<ArgTypes>(args)...);
135
2.35k
    }
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
132
342
    static R call(storage& s, ArgTypes... args) {
133
342
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
342
                         std::forward<ArgTypes>(args)...);
135
342
    }
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
132
10.6k
    static R call(storage& s, ArgTypes... args) {
133
10.6k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
10.6k
                         std::forward<ArgTypes>(args)...);
135
10.6k
    }
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
132
19.8k
    static R call(storage& s, ArgTypes... args) {
133
19.8k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
19.8k
                         std::forward<ArgTypes>(args)...);
135
19.8k
    }
Http.cpp:ofats::any_detail::handler_traits<void*, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)
Line
Count
Source
132
51.3k
    static R call(storage& s, ArgTypes... args) {
133
51.3k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
51.3k
                         std::forward<ArgTypes>(args)...);
135
51.3k
    }
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
132
2.40M
    static R call(storage& s, ArgTypes... args) {
133
2.40M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
2.40M
                         std::forward<ArgTypes>(args)...);
135
2.40M
    }
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
132
2.40M
    static R call(storage& s, ArgTypes... args) {
133
2.40M
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
2.40M
                         std::forward<ArgTypes>(args)...);
135
2.40M
    }
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
132
11.0k
    static R call(storage& s, ArgTypes... args) {
133
11.0k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
11.0k
                         std::forward<ArgTypes>(args)...);
135
11.0k
    }
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
132
73.5k
    static R call(storage& s, ArgTypes... args) {
133
73.5k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
73.5k
                         std::forward<ArgTypes>(args)...);
135
73.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>::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
132
31.1k
    static R call(storage& s, ArgTypes... args) {
133
31.1k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
31.1k
                         std::forward<ArgTypes>(args)...);
135
31.1k
    }
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
132
11.5k
    static R call(storage& s, ArgTypes... args) {
133
11.5k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
11.5k
                         std::forward<ArgTypes>(args)...);
135
11.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>::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
132
4.96k
    static R call(storage& s, ArgTypes... args) {
133
4.96k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
4.96k
                         std::forward<ArgTypes>(args)...);
135
4.96k
    }
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
132
380
    static R call(storage& s, ArgTypes... args) {
133
380
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
380
                         std::forward<ArgTypes>(args)...);
135
380
    }
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
132
73.5k
    static R call(storage& s, ArgTypes... args) {
133
73.5k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
73.5k
                         std::forward<ArgTypes>(args)...);
135
73.5k
    }
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
132
34.7k
    static R call(storage& s, ArgTypes... args) {
133
34.7k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
34.7k
                         std::forward<ArgTypes>(args)...);
135
34.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> >, 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
132
13.6k
    static R call(storage& s, ArgTypes... args) {
133
13.6k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
13.6k
                         std::forward<ArgTypes>(args)...);
135
13.6k
    }
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
132
8.91k
    static R call(storage& s, ArgTypes... args) {
133
8.91k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
8.91k
                         std::forward<ArgTypes>(args)...);
135
8.91k
    }
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
132
4.18k
    static R call(storage& s, ArgTypes... args) {
133
4.18k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
4.18k
                         std::forward<ArgTypes>(args)...);
135
4.18k
    }
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
132
1.08k
    static R call(storage& s, ArgTypes... args) {
133
1.08k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
1.08k
                         std::forward<ArgTypes>(args)...);
135
1.08k
    }
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
132
34.7k
    static R call(storage& s, ArgTypes... args) {
133
34.7k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
34.7k
                         std::forward<ArgTypes>(args)...);
135
34.7k
    }
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
132
5.52k
    static R call(storage& s, ArgTypes... args) {
133
5.52k
      return std::invoke(*static_cast<T*>(static_cast<void*>(&s.buf_)),
134
5.52k
                         std::forward<ArgTypes>(args)...);
135
5.52k
    }
136
  };
137
138
  template <class T>
139
  struct large_handler : handler_base<large_handler<T>> {
140
    template <class... Args>
141
142k
    static void create(storage& s, Args&&... args) {
142
142k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
142k
    }
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> > >::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(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>::create<{lambda(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>(ofats::any_detail::storage&, {lambda(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}&&)
Line
Count
Source
141
11.8k
    static void create(storage& s, Args&&... args) {
142
11.8k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
11.8k
    }
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
141
42.3k
    static void create(storage& s, Args&&... args) {
142
42.3k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
42.3k
    }
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
141
11.8k
    static void create(storage& s, Args&&... args) {
142
11.8k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
11.8k
    }
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
141
1.48k
    static void create(storage& s, Args&&... args) {
142
1.48k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
1.48k
    }
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
141
23.2k
    static void create(storage& s, Args&&... args) {
142
23.2k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
23.2k
    }
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
141
13.0k
    static void create(storage& s, Args&&... args) {
142
13.0k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
13.0k
    }
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> > >::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(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>::create<{lambda(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>(ofats::any_detail::storage&, {lambda(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}&&)
Line
Count
Source
141
4.13k
    static void create(storage& s, Args&&... args) {
142
4.13k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
4.13k
    }
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
141
4.13k
    static void create(storage& s, Args&&... args) {
142
4.13k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
4.13k
    }
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
141
4.13k
    static void create(storage& s, Args&&... args) {
142
4.13k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
4.13k
    }
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> > >::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(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>::create<{lambda(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>(ofats::any_detail::storage&, {lambda(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}&&)
Line
Count
Source
141
11.0k
    static void create(storage& s, Args&&... args) {
142
11.0k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
11.0k
    }
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
141
11.0k
    static void create(storage& s, Args&&... args) {
142
11.0k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
11.0k
    }
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
141
4.18k
    static void create(storage& s, Args&&... args) {
142
4.18k
      s.ptr_ = new T(std::forward<Args>(args)...);
143
4.18k
    }
144
145
142k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
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> > >::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(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
145
11.8k
    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
145
42.3k
    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
145
11.8k
    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
145
1.48k
    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
145
23.2k
    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
145
13.0k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
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> > >::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(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
145
4.13k
    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
145
4.13k
    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
145
4.13k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
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> > >::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(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>::destroy(ofats::any_detail::storage&)
Line
Count
Source
145
11.0k
    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
145
11.0k
    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
145
4.18k
    static void destroy(storage& s) noexcept { delete static_cast<T*>(s.ptr_); }
146
147
208k
    static void move(storage& dst, storage& src) noexcept {
148
208k
      dst.ptr_ = src.ptr_;
149
208k
    }
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> > >::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(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
147
11.8k
    static void move(storage& dst, storage& src) noexcept {
148
11.8k
      dst.ptr_ = src.ptr_;
149
11.8k
    }
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
147
89.4k
    static void move(storage& dst, storage& src) noexcept {
148
89.4k
      dst.ptr_ = src.ptr_;
149
89.4k
    }
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
147
23.7k
    static void move(storage& dst, storage& src) noexcept {
148
23.7k
      dst.ptr_ = src.ptr_;
149
23.7k
    }
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}>)
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
147
27.2k
    static void move(storage& dst, storage& src) noexcept {
148
27.2k
      dst.ptr_ = src.ptr_;
149
27.2k
    }
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}>)
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> > >::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(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
147
4.13k
    static void move(storage& dst, storage& src) noexcept {
148
4.13k
      dst.ptr_ = src.ptr_;
149
4.13k
    }
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
147
4.13k
    static void move(storage& dst, storage& src) noexcept {
148
4.13k
      dst.ptr_ = src.ptr_;
149
4.13k
    }
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
147
8.27k
    static void move(storage& dst, storage& src) noexcept {
148
8.27k
      dst.ptr_ = src.ptr_;
149
8.27k
    }
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> > >::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(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>::move(ofats::any_detail::storage&, ofats::any_detail::storage)
Line
Count
Source
147
11.0k
    static void move(storage& dst, storage& src) noexcept {
148
11.0k
      dst.ptr_ = src.ptr_;
149
11.0k
    }
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
147
22.0k
    static void move(storage& dst, storage& src) noexcept {
148
22.0k
      dst.ptr_ = src.ptr_;
149
22.0k
    }
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
147
6.76k
    static void move(storage& dst, storage& src) noexcept {
148
6.76k
      dst.ptr_ = src.ptr_;
149
6.76k
    }
150
151
747k
    static R call(storage& s, ArgTypes... args) {
152
747k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
747k
                         std::forward<ArgTypes>(args)...);
154
747k
    }
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> > >::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(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>::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
151
37.1k
    static R call(storage& s, ArgTypes... args) {
152
37.1k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
37.1k
                         std::forward<ArgTypes>(args)...);
154
37.1k
    }
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
151
200k
    static R call(storage& s, ArgTypes... args) {
152
200k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
200k
                         std::forward<ArgTypes>(args)...);
154
200k
    }
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
151
49.3k
    static R call(storage& s, ArgTypes... args) {
152
49.3k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
49.3k
                         std::forward<ArgTypes>(args)...);
154
49.3k
    }
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
151
1.48k
    static R call(storage& s, ArgTypes... args) {
152
1.48k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
1.48k
                         std::forward<ArgTypes>(args)...);
154
1.48k
    }
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
151
22.6k
    static R call(storage& s, ArgTypes... args) {
152
22.6k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
22.6k
                         std::forward<ArgTypes>(args)...);
154
22.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
151
13.0k
    static R call(storage& s, ArgTypes... args) {
152
13.0k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
13.0k
                         std::forward<ArgTypes>(args)...);
154
13.0k
    }
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> > >::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(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>::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
151
64.9k
    static R call(storage& s, ArgTypes... args) {
152
64.9k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
64.9k
                         std::forward<ArgTypes>(args)...);
154
64.9k
    }
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
151
66.5k
    static R call(storage& s, ArgTypes... args) {
152
66.5k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
66.5k
                         std::forward<ArgTypes>(args)...);
154
66.5k
    }
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
151
66.5k
    static R call(storage& s, ArgTypes... args) {
152
66.5k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
66.5k
                         std::forward<ArgTypes>(args)...);
154
66.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> > >::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(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>::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
151
108k
    static R call(storage& s, ArgTypes... args) {
152
108k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
108k
                         std::forward<ArgTypes>(args)...);
154
108k
    }
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
151
113k
    static R call(storage& s, ArgTypes... args) {
152
113k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
113k
                         std::forward<ArgTypes>(args)...);
154
113k
    }
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
151
3.70k
    static R call(storage& s, ArgTypes... args) {
152
3.70k
      return std::invoke(*static_cast<T*>(s.ptr_),
153
3.70k
                         std::forward<ArgTypes>(args)...);
154
3.70k
    }
155
  };
156
157
  template <class T>
158
  using handler = std::conditional_t<is_small_object_v<T>, small_handler<T>,
159
                                     large_handler<T>>;
160
};
161
162
template <class T>
163
struct is_in_place_type : std::false_type {};
164
165
template <class T>
166
struct is_in_place_type<std::in_place_type_t<T>> : std::true_type {};
167
168
template <class T>
169
inline constexpr auto is_in_place_type_v = is_in_place_type<T>::value;
170
171
template <class R, bool is_noexcept, class... ArgTypes>
172
class any_invocable_impl {
173
  template <class T>
174
  using handler =
175
      typename any_detail::handler_traits<R, ArgTypes...>::template handler<T>;
176
177
  using storage = any_detail::storage;
178
  using action = any_detail::action;
179
  using handle_func = void (*)(any_detail::action, any_detail::storage*,
180
                               any_detail::storage*);
181
  using call_func = R (*)(any_detail::storage&, ArgTypes...);
182
183
 public:
184
  using result_type = R;
185
186
18.4M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, char const*>::any_invocable_impl()
Line
Count
Source
186
17.2k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::any_invocable_impl()
Line
Count
Source
186
5.15M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false>::any_invocable_impl()
Line
Count
Source
186
5.25M
  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
186
5.15M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::any_invocable_impl()
Line
Count
Source
186
1.28M
  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> >, bool>::any_invocable_impl()
Line
Count
Source
186
1.28M
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::any_invocable_impl()
Line
Count
Source
186
31.1k
  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
186
17.8k
  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
186
42.3k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::any_invocable_impl()
Line
Count
Source
186
42.3k
  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
186
11.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
186
5.93k
  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
186
11.8k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::any_invocable_impl()
Line
Count
Source
186
17.2k
  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
186
8.27k
  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
186
4.13k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::any_invocable_impl()
Line
Count
Source
186
4.13k
  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
186
8.27k
  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
186
4.13k
  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
186
8.27k
  any_invocable_impl() noexcept = default;
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::any_invocable_impl()
Line
Count
Source
186
16
  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
186
22.0k
  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
186
22.0k
  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
186
11.0k
  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
186
22.0k
  any_invocable_impl() noexcept = default;
187
758k
  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
187
22.9k
  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
187
35.6k
  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
187
17.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
187
35.6k
  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
187
23.7k
  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
187
17.8k
  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
187
5.93k
  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> >, bool>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
187
1.48k
  any_invocable_impl(std::nullptr_t) noexcept {}
ofats::any_detail::any_invocable_impl<void, false>::any_invocable_impl(decltype(nullptr))
Line
Count
Source
187
236k
  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
187
236k
  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
187
4.13k
  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
187
8.27k
  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
187
8.27k
  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
187
4.13k
  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
187
4.13k
  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
187
8.27k
  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
187
22.0k
  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
187
22.0k
  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
187
11.0k
  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
187
11.0k
  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
187
22.0k
  any_invocable_impl(std::nullptr_t) noexcept {}
188
989k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
989k
    if (rhs.handle_) {
190
482k
      handle_ = rhs.handle_;
191
482k
      handle_(action::move, &storage_, &rhs.storage_);
192
482k
      call_ = rhs.call_;
193
482k
      rhs.handle_ = nullptr;
194
482k
    }
195
989k
  }
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<void, false, uWS::Loop*>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>&&)
Line
Count
Source
188
31.1k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
31.1k
    if (rhs.handle_) {
190
31.1k
      handle_ = rhs.handle_;
191
31.1k
      handle_(action::move, &storage_, &rhs.storage_);
192
31.1k
      call_ = rhs.call_;
193
31.1k
      rhs.handle_ = nullptr;
194
31.1k
    }
195
31.1k
  }
ofats::any_detail::any_invocable_impl<void, false>::any_invocable_impl(ofats::any_detail::any_invocable_impl<void, false>&&)
Line
Count
Source
188
113k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
113k
    if (rhs.handle_) {
190
113k
      handle_ = rhs.handle_;
191
113k
      handle_(action::move, &storage_, &rhs.storage_);
192
113k
      call_ = rhs.call_;
193
113k
      rhs.handle_ = nullptr;
194
113k
    }
195
113k
  }
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
188
71.2k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
71.2k
    if (rhs.handle_) {
190
11.8k
      handle_ = rhs.handle_;
191
11.8k
      handle_(action::move, &storage_, &rhs.storage_);
192
11.8k
      call_ = rhs.call_;
193
11.8k
      rhs.handle_ = nullptr;
194
11.8k
    }
195
71.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> >, 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
188
35.6k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
35.6k
    if (rhs.handle_) {
190
5.93k
      handle_ = rhs.handle_;
191
5.93k
      handle_(action::move, &storage_, &rhs.storage_);
192
5.93k
      call_ = rhs.call_;
193
5.93k
      rhs.handle_ = nullptr;
194
5.93k
    }
195
35.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>::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
188
35.6k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
35.6k
    if (rhs.handle_) {
190
0
      handle_ = rhs.handle_;
191
0
      handle_(action::move, &storage_, &rhs.storage_);
192
0
      call_ = rhs.call_;
193
0
      rhs.handle_ = nullptr;
194
0
    }
195
35.6k
  }
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
188
47.4k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
47.4k
    if (rhs.handle_) {
190
11.8k
      handle_ = rhs.handle_;
191
11.8k
      handle_(action::move, &storage_, &rhs.storage_);
192
11.8k
      call_ = rhs.call_;
193
11.8k
      rhs.handle_ = nullptr;
194
11.8k
    }
195
47.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
188
71.2k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
71.2k
    if (rhs.handle_) {
190
11.8k
      handle_ = rhs.handle_;
191
11.8k
      handle_(action::move, &storage_, &rhs.storage_);
192
11.8k
      call_ = rhs.call_;
193
11.8k
      rhs.handle_ = nullptr;
194
11.8k
    }
195
71.2k
  }
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
188
89.4k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
89.4k
    if (rhs.handle_) {
190
89.4k
      handle_ = rhs.handle_;
191
89.4k
      handle_(action::move, &storage_, &rhs.storage_);
192
89.4k
      call_ = rhs.call_;
193
89.4k
      rhs.handle_ = nullptr;
194
89.4k
    }
195
89.4k
  }
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
188
84.7k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
84.7k
    if (rhs.handle_) {
190
84.7k
      handle_ = rhs.handle_;
191
84.7k
      handle_(action::move, &storage_, &rhs.storage_);
192
84.7k
      call_ = rhs.call_;
193
84.7k
      rhs.handle_ = nullptr;
194
84.7k
    }
195
84.7k
  }
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
188
45.8k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
45.8k
    if (rhs.handle_) {
190
0
      handle_ = rhs.handle_;
191
0
      handle_(action::move, &storage_, &rhs.storage_);
192
0
      call_ = rhs.call_;
193
0
      rhs.handle_ = nullptr;
194
0
    }
195
45.8k
  }
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
188
3.15k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
3.15k
    if (rhs.handle_) {
190
3.15k
      handle_ = rhs.handle_;
191
3.15k
      handle_(action::move, &storage_, &rhs.storage_);
192
3.15k
      call_ = rhs.call_;
193
3.15k
      rhs.handle_ = nullptr;
194
3.15k
    }
195
3.15k
  }
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
188
5.93k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
5.93k
    if (rhs.handle_) {
190
0
      handle_ = rhs.handle_;
191
0
      handle_(action::move, &storage_, &rhs.storage_);
192
0
      call_ = rhs.call_;
193
0
      rhs.handle_ = nullptr;
194
0
    }
195
5.93k
  }
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
188
24.8k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
24.8k
    if (rhs.handle_) {
190
8.27k
      handle_ = rhs.handle_;
191
8.27k
      handle_(action::move, &storage_, &rhs.storage_);
192
8.27k
      call_ = rhs.call_;
193
8.27k
      rhs.handle_ = nullptr;
194
8.27k
    }
195
24.8k
  }
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
188
12.4k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
12.4k
    if (rhs.handle_) {
190
4.13k
      handle_ = rhs.handle_;
191
4.13k
      handle_(action::move, &storage_, &rhs.storage_);
192
4.13k
      call_ = rhs.call_;
193
4.13k
      rhs.handle_ = nullptr;
194
4.13k
    }
195
12.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
188
12.4k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
12.4k
    if (rhs.handle_) {
190
0
      handle_ = rhs.handle_;
191
0
      handle_(action::move, &storage_, &rhs.storage_);
192
0
      call_ = rhs.call_;
193
0
      rhs.handle_ = nullptr;
194
0
    }
195
12.4k
  }
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
188
16.5k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
16.5k
    if (rhs.handle_) {
190
8.27k
      handle_ = rhs.handle_;
191
8.27k
      handle_(action::move, &storage_, &rhs.storage_);
192
8.27k
      call_ = rhs.call_;
193
8.27k
      rhs.handle_ = nullptr;
194
8.27k
    }
195
16.5k
  }
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
188
24.8k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
24.8k
    if (rhs.handle_) {
190
8.27k
      handle_ = rhs.handle_;
191
8.27k
      handle_(action::move, &storage_, &rhs.storage_);
192
8.27k
      call_ = rhs.call_;
193
8.27k
      rhs.handle_ = nullptr;
194
8.27k
    }
195
24.8k
  }
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
188
4.13k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
4.13k
    if (rhs.handle_) {
190
4.13k
      handle_ = rhs.handle_;
191
4.13k
      handle_(action::move, &storage_, &rhs.storage_);
192
4.13k
      call_ = rhs.call_;
193
4.13k
      rhs.handle_ = nullptr;
194
4.13k
    }
195
4.13k
  }
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
188
8.27k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
8.27k
    if (rhs.handle_) {
190
8.27k
      handle_ = rhs.handle_;
191
8.27k
      handle_(action::move, &storage_, &rhs.storage_);
192
8.27k
      call_ = rhs.call_;
193
8.27k
      rhs.handle_ = nullptr;
194
8.27k
    }
195
8.27k
  }
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
188
8.27k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
8.27k
    if (rhs.handle_) {
190
0
      handle_ = rhs.handle_;
191
0
      handle_(action::move, &storage_, &rhs.storage_);
192
0
      call_ = rhs.call_;
193
0
      rhs.handle_ = nullptr;
194
0
    }
195
8.27k
  }
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
188
28
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
28
    if (rhs.handle_) {
190
28
      handle_ = rhs.handle_;
191
28
      handle_(action::move, &storage_, &rhs.storage_);
192
28
      call_ = rhs.call_;
193
28
      rhs.handle_ = nullptr;
194
28
    }
195
28
  }
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
188
66.2k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
66.2k
    if (rhs.handle_) {
190
22.0k
      handle_ = rhs.handle_;
191
22.0k
      handle_(action::move, &storage_, &rhs.storage_);
192
22.0k
      call_ = rhs.call_;
193
22.0k
      rhs.handle_ = nullptr;
194
22.0k
    }
195
66.2k
  }
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
188
33.1k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
33.1k
    if (rhs.handle_) {
190
11.0k
      handle_ = rhs.handle_;
191
11.0k
      handle_(action::move, &storage_, &rhs.storage_);
192
11.0k
      call_ = rhs.call_;
193
11.0k
      rhs.handle_ = nullptr;
194
11.0k
    }
195
33.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>::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
188
33.1k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
33.1k
    if (rhs.handle_) {
190
0
      handle_ = rhs.handle_;
191
0
      handle_(action::move, &storage_, &rhs.storage_);
192
0
      call_ = rhs.call_;
193
0
      rhs.handle_ = nullptr;
194
0
    }
195
33.1k
  }
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
188
44.1k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
44.1k
    if (rhs.handle_) {
190
22.0k
      handle_ = rhs.handle_;
191
22.0k
      handle_(action::move, &storage_, &rhs.storage_);
192
22.0k
      call_ = rhs.call_;
193
22.0k
      rhs.handle_ = nullptr;
194
22.0k
    }
195
44.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> > >::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
188
66.2k
  any_invocable_impl(any_invocable_impl&& rhs) noexcept {
189
66.2k
    if (rhs.handle_) {
190
22.0k
      handle_ = rhs.handle_;
191
22.0k
      handle_(action::move, &storage_, &rhs.storage_);
192
22.0k
      call_ = rhs.call_;
193
22.0k
      rhs.handle_ = nullptr;
194
22.0k
    }
195
66.2k
  }
196
197
197k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
197k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
197k
    return *this;
200
197k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::operator=(ofats::any_detail::any_invocable_impl<bool, false, unsigned long>&&)
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
197
23.7k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
23.7k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
23.7k
    return *this;
200
23.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>::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
197
11.8k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
11.8k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
11.8k
    return *this;
200
11.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>::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
197
11.8k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
11.8k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
11.8k
    return *this;
200
11.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
197
23.7k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
23.7k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
23.7k
    return *this;
200
23.7k
  }
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
197
26.4k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
26.4k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
26.4k
    return *this;
200
26.4k
  }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::operator=(ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>&&)
Line
Count
Source
197
3.15k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
3.15k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
3.15k
    return *this;
200
3.15k
  }
ofats::any_detail::any_invocable_impl<void, false, char const*>::operator=(ofats::any_detail::any_invocable_impl<void, false, char const*>&&)
Line
Count
Source
197
5.93k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
5.93k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
5.93k
    return *this;
200
5.93k
  }
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
197
8.27k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
8.27k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
8.27k
    return *this;
200
8.27k
  }
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
197
4.13k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
4.13k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
4.13k
    return *this;
200
4.13k
  }
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
197
4.13k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
4.13k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
4.13k
    return *this;
200
4.13k
  }
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
197
8.27k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
8.27k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
8.27k
    return *this;
200
8.27k
  }
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>*>&&)
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
197
22.0k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
22.0k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
22.0k
    return *this;
200
22.0k
  }
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
197
11.0k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
11.0k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
11.0k
    return *this;
200
11.0k
  }
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
197
11.0k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
11.0k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
11.0k
    return *this;
200
11.0k
  }
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
197
22.0k
  any_invocable_impl& operator=(any_invocable_impl&& rhs) noexcept {
198
22.0k
    any_invocable_impl{std::move(rhs)}.swap(*this);
199
22.0k
    return *this;
200
22.0k
  }
201
  any_invocable_impl& operator=(std::nullptr_t) noexcept {
202
    destroy();
203
    return *this;
204
  }
205
206
20.1M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::~any_invocable_impl()
Line
Count
Source
206
17.2k
  ~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
206
83.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
206
59.3k
  ~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
206
118k
  ~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
206
118k
  ~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
206
59.3k
  ~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
206
68.7k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::~any_invocable_impl()
Line
Count
Source
206
127k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false>::~any_invocable_impl()
Line
Count
Source
206
5.60M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::~any_invocable_impl()
Line
Count
Source
206
62.3k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void, false, char const*>::~any_invocable_impl()
Line
Count
Source
206
29.1k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::~any_invocable_impl()
Line
Count
Source
206
131k
  ~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
206
5.16M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::~any_invocable_impl()
Line
Count
Source
206
5.38M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::~any_invocable_impl()
Line
Count
Source
206
1.28M
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::~any_invocable_impl()
Line
Count
Source
206
1.28M
  ~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
206
28.9k
  ~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
206
20.6k
  ~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
206
41.3k
  ~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
206
41.3k
  ~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
206
20.6k
  ~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
206
12.4k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::~any_invocable_impl()
Line
Count
Source
206
8.27k
  ~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, uWS::HttpResponse<true>*, uWS::HttpRequest*>::~any_invocable_impl()
Line
Count
Source
206
12.4k
  ~any_invocable_impl() { destroy(); }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::~any_invocable_impl()
Line
Count
Source
206
28
  ~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
206
77.3k
  ~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
206
55.2k
  ~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
206
110k
  ~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
206
110k
  ~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
206
55.2k
  ~any_invocable_impl() { destroy(); }
207
208
860k
  void swap(any_invocable_impl& rhs) noexcept {
209
860k
    if (handle_) {
210
162k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
162k
      } else {
218
162k
        rhs.swap(*this);
219
162k
      }
220
698k
    } else if (rhs.handle_) {
221
178k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
178k
      handle_ = rhs.handle_;
223
178k
      call_ = rhs.call_;
224
178k
      rhs.handle_ = nullptr;
225
178k
    }
226
860k
  }
ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::swap(ofats::any_detail::any_invocable_impl<void, false, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>&)
Line
Count
Source
208
7.79k
  void swap(any_invocable_impl& rhs) noexcept {
209
7.79k
    if (handle_) {
210
3.15k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
3.15k
      } else {
218
3.15k
        rhs.swap(*this);
219
3.15k
      }
220
4.63k
    } else if (rhs.handle_) {
221
4.63k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
4.63k
      handle_ = rhs.handle_;
223
4.63k
      call_ = rhs.call_;
224
4.63k
      rhs.handle_ = nullptr;
225
4.63k
    }
226
7.79k
  }
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::swap(ofats::any_detail::any_invocable_impl<bool, false, unsigned long>&)
Line
Count
Source
208
236k
  void swap(any_invocable_impl& rhs) noexcept {
209
236k
    if (handle_) {
210
0
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
0
      } else {
218
0
        rhs.swap(*this);
219
0
      }
220
236k
    } else if (rhs.handle_) {
221
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
0
      handle_ = rhs.handle_;
223
0
      call_ = rhs.call_;
224
0
      rhs.handle_ = nullptr;
225
0
    }
226
236k
  }
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
208
35.6k
  void swap(any_invocable_impl& rhs) noexcept {
209
35.6k
    if (handle_) {
210
11.8k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
11.8k
      } else {
218
11.8k
        rhs.swap(*this);
219
11.8k
      }
220
23.7k
    } else if (rhs.handle_) {
221
11.8k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
11.8k
      handle_ = rhs.handle_;
223
11.8k
      call_ = rhs.call_;
224
11.8k
      rhs.handle_ = nullptr;
225
11.8k
    }
226
35.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>::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
208
17.8k
  void swap(any_invocable_impl& rhs) noexcept {
209
17.8k
    if (handle_) {
210
5.93k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
5.93k
      } else {
218
5.93k
        rhs.swap(*this);
219
5.93k
      }
220
11.8k
    } else if (rhs.handle_) {
221
5.93k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
5.93k
      handle_ = rhs.handle_;
223
5.93k
      call_ = rhs.call_;
224
5.93k
      rhs.handle_ = nullptr;
225
5.93k
    }
226
17.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>::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
208
11.8k
  void swap(any_invocable_impl& rhs) noexcept {
209
11.8k
    if (handle_) {
210
0
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
0
      } else {
218
0
        rhs.swap(*this);
219
0
      }
220
11.8k
    } else if (rhs.handle_) {
221
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
0
      handle_ = rhs.handle_;
223
0
      call_ = rhs.call_;
224
0
      rhs.handle_ = nullptr;
225
0
    }
226
11.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
208
23.7k
  void swap(any_invocable_impl& rhs) noexcept {
209
23.7k
    if (handle_) {
210
11.8k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
11.8k
      } else {
218
11.8k
        rhs.swap(*this);
219
11.8k
      }
220
11.8k
    } else if (rhs.handle_) {
221
11.8k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
11.8k
      handle_ = rhs.handle_;
223
11.8k
      call_ = rhs.call_;
224
11.8k
      rhs.handle_ = nullptr;
225
11.8k
    }
226
23.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> > >::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
208
35.6k
  void swap(any_invocable_impl& rhs) noexcept {
209
35.6k
    if (handle_) {
210
11.8k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
11.8k
      } else {
218
11.8k
        rhs.swap(*this);
219
11.8k
      }
220
23.7k
    } else if (rhs.handle_) {
221
11.8k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
11.8k
      handle_ = rhs.handle_;
223
11.8k
      call_ = rhs.call_;
224
11.8k
      rhs.handle_ = nullptr;
225
11.8k
    }
226
35.6k
  }
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>::swap(ofats::any_detail::any_invocable_impl<void, false>&)
Line
Count
Source
208
288k
  void swap(any_invocable_impl& rhs) noexcept {
209
288k
    if (handle_) {
210
26.4k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
26.4k
      } else {
218
26.4k
        rhs.swap(*this);
219
26.4k
      }
220
262k
    } else if (rhs.handle_) {
221
40.9k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
40.9k
      handle_ = rhs.handle_;
223
40.9k
      call_ = rhs.call_;
224
40.9k
      rhs.handle_ = nullptr;
225
40.9k
    }
226
288k
  }
ofats::any_detail::any_invocable_impl<void, false, char const*>::swap(ofats::any_detail::any_invocable_impl<void, false, char const*>&)
Line
Count
Source
208
5.93k
  void swap(any_invocable_impl& rhs) noexcept {
209
5.93k
    if (handle_) {
210
0
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
0
      } else {
218
0
        rhs.swap(*this);
219
0
      }
220
5.93k
    } else if (rhs.handle_) {
221
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
0
      handle_ = rhs.handle_;
223
0
      call_ = rhs.call_;
224
0
      rhs.handle_ = nullptr;
225
0
    }
226
5.93k
  }
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
208
16.5k
  void swap(any_invocable_impl& rhs) noexcept {
209
16.5k
    if (handle_) {
210
8.27k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
8.27k
      } else {
218
8.27k
        rhs.swap(*this);
219
8.27k
      }
220
8.27k
    } else if (rhs.handle_) {
221
8.27k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
8.27k
      handle_ = rhs.handle_;
223
8.27k
      call_ = rhs.call_;
224
8.27k
      rhs.handle_ = nullptr;
225
8.27k
    }
226
16.5k
  }
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
208
8.27k
  void swap(any_invocable_impl& rhs) noexcept {
209
8.27k
    if (handle_) {
210
4.13k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
4.13k
      } else {
218
4.13k
        rhs.swap(*this);
219
4.13k
      }
220
4.13k
    } else if (rhs.handle_) {
221
4.13k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
4.13k
      handle_ = rhs.handle_;
223
4.13k
      call_ = rhs.call_;
224
4.13k
      rhs.handle_ = nullptr;
225
4.13k
    }
226
8.27k
  }
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
208
4.13k
  void swap(any_invocable_impl& rhs) noexcept {
209
4.13k
    if (handle_) {
210
0
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
0
      } else {
218
0
        rhs.swap(*this);
219
0
      }
220
4.13k
    } else if (rhs.handle_) {
221
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
0
      handle_ = rhs.handle_;
223
0
      call_ = rhs.call_;
224
0
      rhs.handle_ = nullptr;
225
0
    }
226
4.13k
  }
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
208
8.27k
  void swap(any_invocable_impl& rhs) noexcept {
209
8.27k
    if (handle_) {
210
4.13k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
4.13k
      } else {
218
4.13k
        rhs.swap(*this);
219
4.13k
      }
220
4.13k
    } else if (rhs.handle_) {
221
4.13k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
4.13k
      handle_ = rhs.handle_;
223
4.13k
      call_ = rhs.call_;
224
4.13k
      rhs.handle_ = nullptr;
225
4.13k
    }
226
8.27k
  }
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
208
16.5k
  void swap(any_invocable_impl& rhs) noexcept {
209
16.5k
    if (handle_) {
210
8.27k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
8.27k
      } else {
218
8.27k
        rhs.swap(*this);
219
8.27k
      }
220
8.27k
    } else if (rhs.handle_) {
221
8.27k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
8.27k
      handle_ = rhs.handle_;
223
8.27k
      call_ = rhs.call_;
224
8.27k
      rhs.handle_ = nullptr;
225
8.27k
    }
226
16.5k
  }
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>*>&)
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
208
44.1k
  void swap(any_invocable_impl& rhs) noexcept {
209
44.1k
    if (handle_) {
210
22.0k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
22.0k
      } else {
218
22.0k
        rhs.swap(*this);
219
22.0k
      }
220
22.0k
    } else if (rhs.handle_) {
221
22.0k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
22.0k
      handle_ = rhs.handle_;
223
22.0k
      call_ = rhs.call_;
224
22.0k
      rhs.handle_ = nullptr;
225
22.0k
    }
226
44.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>::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
208
22.0k
  void swap(any_invocable_impl& rhs) noexcept {
209
22.0k
    if (handle_) {
210
11.0k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
11.0k
      } else {
218
11.0k
        rhs.swap(*this);
219
11.0k
      }
220
11.0k
    } else if (rhs.handle_) {
221
11.0k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
11.0k
      handle_ = rhs.handle_;
223
11.0k
      call_ = rhs.call_;
224
11.0k
      rhs.handle_ = nullptr;
225
11.0k
    }
226
22.0k
  }
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
208
11.0k
  void swap(any_invocable_impl& rhs) noexcept {
209
11.0k
    if (handle_) {
210
0
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
0
      } else {
218
0
        rhs.swap(*this);
219
0
      }
220
11.0k
    } else if (rhs.handle_) {
221
0
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
0
      handle_ = rhs.handle_;
223
0
      call_ = rhs.call_;
224
0
      rhs.handle_ = nullptr;
225
0
    }
226
11.0k
  }
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
208
22.0k
  void swap(any_invocable_impl& rhs) noexcept {
209
22.0k
    if (handle_) {
210
11.0k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
11.0k
      } else {
218
11.0k
        rhs.swap(*this);
219
11.0k
      }
220
11.0k
    } else if (rhs.handle_) {
221
11.0k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
11.0k
      handle_ = rhs.handle_;
223
11.0k
      call_ = rhs.call_;
224
11.0k
      rhs.handle_ = nullptr;
225
11.0k
    }
226
22.0k
  }
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
208
44.1k
  void swap(any_invocable_impl& rhs) noexcept {
209
44.1k
    if (handle_) {
210
22.0k
      if (rhs.handle_) {
211
0
        storage tmp;
212
0
        handle_(action::move, &tmp, &storage_);
213
0
        rhs.handle_(action::move, &storage_, &rhs.storage_);
214
0
        handle_(action::move, &rhs.storage_, &tmp);
215
0
        std::swap(handle_, rhs.handle_);
216
0
        std::swap(call_, rhs.call_);
217
22.0k
      } else {
218
22.0k
        rhs.swap(*this);
219
22.0k
      }
220
22.0k
    } else if (rhs.handle_) {
221
22.0k
      rhs.handle_(action::move, &storage_, &rhs.storage_);
222
22.0k
      handle_ = rhs.handle_;
223
22.0k
      call_ = rhs.call_;
224
22.0k
      rhs.handle_ = nullptr;
225
22.0k
    }
226
44.1k
  }
227
228
12.9M
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<void, false>::operator bool() const
Line
Count
Source
228
4.96M
  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
228
67.2k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::operator bool() const
Line
Count
Source
228
13.0k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
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
228
74.3k
  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
228
21.3k
  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
228
11.6k
  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
228
42.5k
  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
228
42.3k
  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
228
145k
  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
228
6.56M
  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
228
129k
  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
228
167k
  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
228
7.48k
  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
228
75.4k
  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
228
4.13k
  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
228
64.9k
  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
228
147k
  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
228
216k
  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
228
44.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>*, std::__1::basic_string_view<char, std::__1::char_traits<char> > >::operator bool() const
Line
Count
Source
228
10.6k
  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
228
128k
  explicit operator bool() const noexcept { return handle_ != nullptr; }
229
230
 protected:
231
  template <class F, class... Args>
232
2.97M
  void create(Args&&... args) {
233
2.97M
    using hdl = handler<F>;
234
2.97M
    hdl::create(storage_, std::forward<Args>(args)...);
235
2.97M
    handle_ = &hdl::handle;
236
2.97M
    call_ = &hdl::call;
237
2.97M
  }
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
232
635k
  void create(Args&&... args) {
233
635k
    using hdl = handler<F>;
234
635k
    hdl::create(storage_, std::forward<Args>(args)...);
235
635k
    handle_ = &hdl::handle;
236
635k
    call_ = &hdl::call;
237
635k
  }
void ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)#1}, {lambda(us_socket_t*, char*, int)#1}>({lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
232
635k
  void create(Args&&... args) {
233
635k
    using hdl = handler<F>;
234
635k
    hdl::create(storage_, std::forward<Args>(args)...);
235
635k
    handle_ = &hdl::handle;
236
635k
    call_ = &hdl::call;
237
635k
  }
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}&&)
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
232
5.93k
  void create(Args&&... args) {
233
5.93k
    using hdl = handler<F>;
234
5.93k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.93k
    handle_ = &hdl::handle;
236
5.93k
    call_ = &hdl::call;
237
5.93k
  }
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
232
5.93k
  void create(Args&&... args) {
233
5.93k
    using hdl = handler<F>;
234
5.93k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.93k
    handle_ = &hdl::handle;
236
5.93k
    call_ = &hdl::call;
237
5.93k
  }
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
232
11.8k
  void create(Args&&... args) {
233
11.8k
    using hdl = handler<F>;
234
11.8k
    hdl::create(storage_, std::forward<Args>(args)...);
235
11.8k
    handle_ = &hdl::handle;
236
11.8k
    call_ = &hdl::call;
237
11.8k
  }
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<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::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}, {lambda(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>({lambda(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}&&)
Line
Count
Source
232
11.8k
  void create(Args&&... args) {
233
11.8k
    using hdl = handler<F>;
234
11.8k
    hdl::create(storage_, std::forward<Args>(args)...);
235
11.8k
    handle_ = &hdl::handle;
236
11.8k
    call_ = &hdl::call;
237
11.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
232
42.3k
  void create(Args&&... args) {
233
42.3k
    using hdl = handler<F>;
234
42.3k
    hdl::create(storage_, std::forward<Args>(args)...);
235
42.3k
    handle_ = &hdl::handle;
236
42.3k
    call_ = &hdl::call;
237
42.3k
  }
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
232
11.8k
  void create(Args&&... args) {
233
11.8k
    using hdl = handler<F>;
234
11.8k
    hdl::create(storage_, std::forward<Args>(args)...);
235
11.8k
    handle_ = &hdl::handle;
236
11.8k
    call_ = &hdl::call;
237
11.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
232
5.93k
  void create(Args&&... args) {
233
5.93k
    using hdl = handler<F>;
234
5.93k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.93k
    handle_ = &hdl::handle;
236
5.93k
    call_ = &hdl::call;
237
5.93k
  }
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
232
5.93k
  void create(Args&&... args) {
233
5.93k
    using hdl = handler<F>;
234
5.93k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.93k
    handle_ = &hdl::handle;
236
5.93k
    call_ = &hdl::call;
237
5.93k
  }
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
232
3.15k
  void create(Args&&... args) {
233
3.15k
    using hdl = handler<F>;
234
3.15k
    hdl::create(storage_, std::forward<Args>(args)...);
235
3.15k
    handle_ = &hdl::handle;
236
3.15k
    call_ = &hdl::call;
237
3.15k
  }
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
232
1.67k
  void create(Args&&... args) {
233
1.67k
    using hdl = handler<F>;
234
1.67k
    hdl::create(storage_, std::forward<Args>(args)...);
235
1.67k
    handle_ = &hdl::handle;
236
1.67k
    call_ = &hdl::call;
237
1.67k
  }
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
232
3.15k
  void create(Args&&... args) {
233
3.15k
    using hdl = handler<F>;
234
3.15k
    hdl::create(storage_, std::forward<Args>(args)...);
235
3.15k
    handle_ = &hdl::handle;
236
3.15k
    call_ = &hdl::call;
237
3.15k
  }
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
232
1.48k
  void create(Args&&... args) {
233
1.48k
    using hdl = handler<F>;
234
1.48k
    hdl::create(storage_, std::forward<Args>(args)...);
235
1.48k
    handle_ = &hdl::handle;
236
1.48k
    call_ = &hdl::call;
237
1.48k
  }
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
232
5.93k
  void create(Args&&... args) {
233
5.93k
    using hdl = handler<F>;
234
5.93k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.93k
    handle_ = &hdl::handle;
236
5.93k
    call_ = &hdl::call;
237
5.93k
  }
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
232
5.93k
  void create(Args&&... args) {
233
5.93k
    using hdl = handler<F>;
234
5.93k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.93k
    handle_ = &hdl::handle;
236
5.93k
    call_ = &hdl::call;
237
5.93k
  }
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
232
5.93k
  void create(Args&&... args) {
233
5.93k
    using hdl = handler<F>;
234
5.93k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.93k
    handle_ = &hdl::handle;
236
5.93k
    call_ = &hdl::call;
237
5.93k
  }
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
232
5.93k
  void create(Args&&... args) {
233
5.93k
    using hdl = handler<F>;
234
5.93k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.93k
    handle_ = &hdl::handle;
236
5.93k
    call_ = &hdl::call;
237
5.93k
  }
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
232
5.93k
  void create(Args&&... args) {
233
5.93k
    using hdl = handler<F>;
234
5.93k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.93k
    handle_ = &hdl::handle;
236
5.93k
    call_ = &hdl::call;
237
5.93k
  }
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
232
8.89k
  void create(Args&&... args) {
233
8.89k
    using hdl = handler<F>;
234
8.89k
    hdl::create(storage_, std::forward<Args>(args)...);
235
8.89k
    handle_ = &hdl::handle;
236
8.89k
    call_ = &hdl::call;
237
8.89k
  }
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
232
5.93k
  void create(Args&&... args) {
233
5.93k
    using hdl = handler<F>;
234
5.93k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.93k
    handle_ = &hdl::handle;
236
5.93k
    call_ = &hdl::call;
237
5.93k
  }
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
232
5.93k
  void create(Args&&... args) {
233
5.93k
    using hdl = handler<F>;
234
5.93k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.93k
    handle_ = &hdl::handle;
236
5.93k
    call_ = &hdl::call;
237
5.93k
  }
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
232
5.93k
  void create(Args&&... args) {
233
5.93k
    using hdl = handler<F>;
234
5.93k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.93k
    handle_ = &hdl::handle;
236
5.93k
    call_ = &hdl::call;
237
5.93k
  }
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
232
1.65k
  void create(Args&&... args) {
233
1.65k
    using hdl = handler<F>;
234
1.65k
    hdl::create(storage_, std::forward<Args>(args)...);
235
1.65k
    handle_ = &hdl::handle;
236
1.65k
    call_ = &hdl::call;
237
1.65k
  }
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
232
23.2k
  void create(Args&&... args) {
233
23.2k
    using hdl = handler<F>;
234
23.2k
    hdl::create(storage_, std::forward<Args>(args)...);
235
23.2k
    handle_ = &hdl::handle;
236
23.2k
    call_ = &hdl::call;
237
23.2k
  }
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
232
23.2k
  void create(Args&&... args) {
233
23.2k
    using hdl = handler<F>;
234
23.2k
    hdl::create(storage_, std::forward<Args>(args)...);
235
23.2k
    handle_ = &hdl::handle;
236
23.2k
    call_ = &hdl::call;
237
23.2k
  }
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
232
13.0k
  void create(Args&&... args) {
233
13.0k
    using hdl = handler<F>;
234
13.0k
    hdl::create(storage_, std::forward<Args>(args)...);
235
13.0k
    handle_ = &hdl::handle;
236
13.0k
    call_ = &hdl::call;
237
13.0k
  }
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
232
1.65k
  void create(Args&&... args) {
233
1.65k
    using hdl = handler<F>;
234
1.65k
    hdl::create(storage_, std::forward<Args>(args)...);
235
1.65k
    handle_ = &hdl::handle;
236
1.65k
    call_ = &hdl::call;
237
1.65k
  }
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
232
403k
  void create(Args&&... args) {
233
403k
    using hdl = handler<F>;
234
403k
    hdl::create(storage_, std::forward<Args>(args)...);
235
403k
    handle_ = &hdl::handle;
236
403k
    call_ = &hdl::call;
237
403k
  }
void ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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> >, bool)#1}, {lambda(us_socket_t*, char*, int)#1}>({lambda(us_socket_t*, char*, int)#1}&&)
Line
Count
Source
232
403k
  void create(Args&&... args) {
233
403k
    using hdl = handler<F>;
234
403k
    hdl::create(storage_, std::forward<Args>(args)...);
235
403k
    handle_ = &hdl::handle;
236
403k
    call_ = &hdl::call;
237
403k
  }
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}&&)
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
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.13k
  }
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
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.13k
  }
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
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.13k
  }
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<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::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}, {lambda(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>({lambda(uWS::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}&&)
Line
Count
Source
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.13k
  }
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
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.13k
  }
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
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.13k
  }
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
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.13k
  }
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
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.13k
  }
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
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.13k
  }
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
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.13k
  }
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
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.13k
  }
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
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.13k
  }
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
232
4.13k
  void create(Args&&... args) {
233
4.13k
    using hdl = handler<F>;
234
4.13k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.13k
    handle_ = &hdl::handle;
236
4.13k
    call_ = &hdl::call;
237
4.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
232
4
  void create(Args&&... args) {
233
4
    using hdl = handler<F>;
234
4
    hdl::create(storage_, std::forward<Args>(args)...);
235
4
    handle_ = &hdl::handle;
236
4
    call_ = &hdl::call;
237
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
232
4
  void create(Args&&... args) {
233
4
    using hdl = handler<F>;
234
4
    hdl::create(storage_, std::forward<Args>(args)...);
235
4
    handle_ = &hdl::handle;
236
4
    call_ = &hdl::call;
237
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
232
4
  void create(Args&&... args) {
233
4
    using hdl = handler<F>;
234
4
    hdl::create(storage_, std::forward<Args>(args)...);
235
4
    handle_ = &hdl::handle;
236
4
    call_ = &hdl::call;
237
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
232
4
  void create(Args&&... args) {
233
4
    using hdl = handler<F>;
234
4
    hdl::create(storage_, std::forward<Args>(args)...);
235
4
    handle_ = &hdl::handle;
236
4
    call_ = &hdl::call;
237
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
232
245k
  void create(Args&&... args) {
233
245k
    using hdl = handler<F>;
234
245k
    hdl::create(storage_, std::forward<Args>(args)...);
235
245k
    handle_ = &hdl::handle;
236
245k
    call_ = &hdl::call;
237
245k
  }
Http.cpp:void ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::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
232
245k
  void create(Args&&... args) {
233
245k
    using hdl = handler<F>;
234
245k
    hdl::create(storage_, std::forward<Args>(args)...);
235
245k
    handle_ = &hdl::handle;
236
245k
    call_ = &hdl::call;
237
245k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
11.0k
  void create(Args&&... args) {
233
11.0k
    using hdl = handler<F>;
234
11.0k
    hdl::create(storage_, std::forward<Args>(args)...);
235
11.0k
    handle_ = &hdl::handle;
236
11.0k
    call_ = &hdl::call;
237
11.0k
  }
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<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::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}, {lambda(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}>({lambda(uWS::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}&&)
Line
Count
Source
232
11.0k
  void create(Args&&... args) {
233
11.0k
    using hdl = handler<F>;
234
11.0k
    hdl::create(storage_, std::forward<Args>(args)...);
235
11.0k
    handle_ = &hdl::handle;
236
11.0k
    call_ = &hdl::call;
237
11.0k
  }
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
232
11.0k
  void create(Args&&... args) {
233
11.0k
    using hdl = handler<F>;
234
11.0k
    hdl::create(storage_, std::forward<Args>(args)...);
235
11.0k
    handle_ = &hdl::handle;
236
11.0k
    call_ = &hdl::call;
237
11.0k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
4.18k
  void create(Args&&... args) {
233
4.18k
    using hdl = handler<F>;
234
4.18k
    hdl::create(storage_, std::forward<Args>(args)...);
235
4.18k
    handle_ = &hdl::handle;
236
4.18k
    call_ = &hdl::call;
237
4.18k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
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
232
5.52k
  void create(Args&&... args) {
233
5.52k
    using hdl = handler<F>;
234
5.52k
    hdl::create(storage_, std::forward<Args>(args)...);
235
5.52k
    handle_ = &hdl::handle;
236
5.52k
    call_ = &hdl::call;
237
5.52k
  }
238
239
20.1M
  void destroy() noexcept {
240
20.1M
    if (handle_) {
241
2.97M
      handle_(action::destroy, &storage_, nullptr);
242
2.97M
      handle_ = nullptr;
243
2.97M
    }
244
20.1M
  }
ofats::any_detail::any_invocable_impl<void, false, us_listen_socket_t*>::destroy()
Line
Count
Source
239
17.2k
  void destroy() noexcept {
240
17.2k
    if (handle_) {
241
17.2k
      handle_(action::destroy, &storage_, nullptr);
242
17.2k
      handle_ = nullptr;
243
17.2k
    }
244
17.2k
  }
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
239
83.0k
  void destroy() noexcept {
240
83.0k
    if (handle_) {
241
17.8k
      handle_(action::destroy, &storage_, nullptr);
242
17.8k
      handle_ = nullptr;
243
17.8k
    }
244
83.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
239
59.3k
  void destroy() noexcept {
240
59.3k
    if (handle_) {
241
0
      handle_(action::destroy, &storage_, nullptr);
242
0
      handle_ = nullptr;
243
0
    }
244
59.3k
  }
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
239
118k
  void destroy() noexcept {
240
118k
    if (handle_) {
241
11.8k
      handle_(action::destroy, &storage_, nullptr);
242
11.8k
      handle_ = nullptr;
243
11.8k
    }
244
118k
  }
EpollHelloWorld.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::destroy()
Line
Count
Source
239
118k
  void destroy() noexcept {
240
118k
    if (handle_) {
241
11.8k
      handle_(action::destroy, &storage_, nullptr);
242
11.8k
      handle_ = nullptr;
243
11.8k
    }
244
118k
  }
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
239
59.3k
  void destroy() noexcept {
240
59.3k
    if (handle_) {
241
5.93k
      handle_(action::destroy, &storage_, nullptr);
242
5.93k
      handle_ = nullptr;
243
5.93k
    }
244
59.3k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*, us_socket_context_t*>::destroy()
Line
Count
Source
239
68.7k
  void destroy() noexcept {
240
68.7k
    if (handle_) {
241
0
      handle_(action::destroy, &storage_, nullptr);
242
0
      handle_ = nullptr;
243
0
    }
244
68.7k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::destroy()
Line
Count
Source
239
127k
  void destroy() noexcept {
240
127k
    if (handle_) {
241
42.3k
      handle_(action::destroy, &storage_, nullptr);
242
42.3k
      handle_ = nullptr;
243
42.3k
    }
244
127k
  }
ofats::any_detail::any_invocable_impl<void, false>::destroy()
Line
Count
Source
239
5.60M
  void destroy() noexcept {
240
5.60M
    if (handle_) {
241
106k
      handle_(action::destroy, &storage_, nullptr);
242
106k
      handle_ = nullptr;
243
106k
    }
244
5.60M
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::destroy()
Line
Count
Source
239
62.3k
  void destroy() noexcept {
240
62.3k
    if (handle_) {
241
31.1k
      handle_(action::destroy, &storage_, nullptr);
242
31.1k
      handle_ = nullptr;
243
31.1k
    }
244
62.3k
  }
ofats::any_detail::any_invocable_impl<void, false, char const*>::destroy()
Line
Count
Source
239
29.1k
  void destroy() noexcept {
240
29.1k
    if (handle_) {
241
0
      handle_(action::destroy, &storage_, nullptr);
242
0
      handle_ = nullptr;
243
0
    }
244
29.1k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::destroy()
Line
Count
Source
239
131k
  void destroy() noexcept {
240
131k
    if (handle_) {
241
42.3k
      handle_(action::destroy, &storage_, nullptr);
242
42.3k
      handle_ = nullptr;
243
42.3k
    }
244
131k
  }
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
239
5.16M
  void destroy() noexcept {
240
5.16M
    if (handle_) {
241
3.15k
      handle_(action::destroy, &storage_, nullptr);
242
3.15k
      handle_ = nullptr;
243
3.15k
    }
244
5.16M
  }
ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::destroy()
Line
Count
Source
239
5.38M
  void destroy() noexcept {
240
5.38M
    if (handle_) {
241
0
      handle_(action::destroy, &storage_, nullptr);
242
0
      handle_ = nullptr;
243
0
    }
244
5.38M
  }
ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::destroy()
Line
Count
Source
239
1.28M
  void destroy() noexcept {
240
1.28M
    if (handle_) {
241
1.28M
      handle_(action::destroy, &storage_, nullptr);
242
1.28M
      handle_ = nullptr;
243
1.28M
    }
244
1.28M
  }
ofats::any_detail::any_invocable_impl<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::destroy()
Line
Count
Source
239
1.28M
  void destroy() noexcept {
240
1.28M
    if (handle_) {
241
1.28M
      handle_(action::destroy, &storage_, nullptr);
242
1.28M
      handle_ = nullptr;
243
1.28M
    }
244
1.28M
  }
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
239
28.9k
  void destroy() noexcept {
240
28.9k
    if (handle_) {
241
8.27k
      handle_(action::destroy, &storage_, nullptr);
242
8.27k
      handle_ = nullptr;
243
8.27k
    }
244
28.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> >, int, int>::destroy()
Line
Count
Source
239
20.6k
  void destroy() noexcept {
240
20.6k
    if (handle_) {
241
0
      handle_(action::destroy, &storage_, nullptr);
242
0
      handle_ = nullptr;
243
0
    }
244
20.6k
  }
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
239
41.3k
  void destroy() noexcept {
240
41.3k
    if (handle_) {
241
8.27k
      handle_(action::destroy, &storage_, nullptr);
242
8.27k
      handle_ = nullptr;
243
8.27k
    }
244
41.3k
  }
EpollEchoServerPubSub.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<true, true, test()::PerSocketData>*>::destroy()
Line
Count
Source
239
41.3k
  void destroy() noexcept {
240
41.3k
    if (handle_) {
241
8.27k
      handle_(action::destroy, &storage_, nullptr);
242
8.27k
      handle_ = nullptr;
243
8.27k
    }
244
41.3k
  }
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
239
20.6k
  void destroy() noexcept {
240
20.6k
    if (handle_) {
241
4.13k
      handle_(action::destroy, &storage_, nullptr);
242
4.13k
      handle_ = nullptr;
243
4.13k
    }
244
20.6k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*, us_socket_context_t*>::destroy()
Line
Count
Source
239
12.4k
  void destroy() noexcept {
240
12.4k
    if (handle_) {
241
0
      handle_(action::destroy, &storage_, nullptr);
242
0
      handle_ = nullptr;
243
0
    }
244
12.4k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::destroy()
Line
Count
Source
239
8.27k
  void destroy() noexcept {
240
8.27k
    if (handle_) {
241
4.13k
      handle_(action::destroy, &storage_, nullptr);
242
4.13k
      handle_ = nullptr;
243
4.13k
    }
244
8.27k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, int>::destroy()
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::destroy()
Line
Count
Source
239
12.4k
  void destroy() noexcept {
240
12.4k
    if (handle_) {
241
4.13k
      handle_(action::destroy, &storage_, nullptr);
242
4.13k
      handle_ = nullptr;
243
4.13k
    }
244
12.4k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::destroy()
Line
Count
Source
239
28
  void destroy() noexcept {
240
28
    if (handle_) {
241
0
      handle_(action::destroy, &storage_, nullptr);
242
0
      handle_ = nullptr;
243
0
    }
244
28
  }
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
239
77.3k
  void destroy() noexcept {
240
77.3k
    if (handle_) {
241
22.0k
      handle_(action::destroy, &storage_, nullptr);
242
22.0k
      handle_ = nullptr;
243
22.0k
    }
244
77.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> >, int, int>::destroy()
Line
Count
Source
239
55.2k
  void destroy() noexcept {
240
55.2k
    if (handle_) {
241
0
      handle_(action::destroy, &storage_, nullptr);
242
0
      handle_ = nullptr;
243
0
    }
244
55.2k
  }
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
239
110k
  void destroy() noexcept {
240
110k
    if (handle_) {
241
22.0k
      handle_(action::destroy, &storage_, nullptr);
242
22.0k
      handle_ = nullptr;
243
22.0k
    }
244
110k
  }
EpollEchoServer.cpp:ofats::any_detail::any_invocable_impl<void, false, uWS::WebSocket<false, true, test()::PerSocketData>*>::destroy()
Line
Count
Source
239
110k
  void destroy() noexcept {
240
110k
    if (handle_) {
241
22.0k
      handle_(action::destroy, &storage_, nullptr);
242
22.0k
      handle_ = nullptr;
243
22.0k
    }
244
110k
  }
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
239
55.2k
  void destroy() noexcept {
240
55.2k
    if (handle_) {
241
11.0k
      handle_(action::destroy, &storage_, nullptr);
242
11.0k
      handle_ = nullptr;
243
11.0k
    }
244
55.2k
  }
245
246
12.9M
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
12.9M
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
12.9M
  }
ofats::any_detail::any_invocable_impl<void, false>::call()
Line
Count
Source
246
89.2k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
89.2k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
89.2k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::Loop*>::call(uWS::Loop*)
Line
Count
Source
246
10.9M
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
10.9M
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
10.9M
  }
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<void*, false, void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool>::call(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
246
92.2k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
92.2k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
92.2k
  }
ofats::any_detail::any_invocable_impl<void*, false, void*, uWS::HttpRequest*>::call(void*, uWS::HttpRequest*)
Line
Count
Source
246
295k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
295k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
295k
  }
ofats::any_detail::any_invocable_impl<bool, false, uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*>::call(uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)
Line
Count
Source
246
200k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
200k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
200k
  }
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
246
6.01k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
6.01k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
6.01k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<bool, false, unsigned long>::call(unsigned long)
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
246
71.8k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
71.8k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
71.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>::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, uWS::OpCode)
Line
Count
Source
246
16.0k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
16.0k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
16.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> > >::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
246
9.90k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
9.90k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
9.90k
  }
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
246
39.8k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
39.8k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
39.8k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<false>*, uWS::HttpRequest*>::call(uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
246
200k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
200k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
200k
  }
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, us_listen_socket_t*>::call(us_listen_socket_t*)
Line
Count
Source
246
17.2k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
17.2k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
17.2k
  }
Unexecuted instantiation: ofats::any_detail::any_invocable_impl<void, false, char const*>::call(char const*)
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<bool, false, uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*>::call(uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)
Line
Count
Source
246
66.5k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
66.5k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
66.5k
  }
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
246
129k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
129k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
129k
  }
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
246
167k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
167k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
167k
  }
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
246
7.48k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
7.48k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
7.48k
  }
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
246
75.4k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
75.4k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
75.4k
  }
ofats::any_detail::any_invocable_impl<void, false, uWS::HttpResponse<true>*, uWS::HttpRequest*>::call(uWS::HttpResponse<true>*, uWS::HttpRequest*)
Line
Count
Source
246
66.5k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
66.5k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
66.5k
  }
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<bool, false, uWS::HttpRouter<StaticData::RouterData>*>::call(uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
246
18.4k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
18.4k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
18.4k
  }
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
246
216k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
216k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
216k
  }
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
246
44.7k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
44.7k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
44.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> > >::call(uWS::WebSocket<false, true, test()::PerSocketData>*, std::__1::basic_string_view<char, std::__1::char_traits<char> >)
Line
Count
Source
246
10.6k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
10.6k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
10.6k
  }
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
246
128k
  R call(ArgTypes... args) noexcept(is_noexcept) {
247
128k
    return call_(storage_, std::forward<ArgTypes>(args)...);
248
128k
  }
249
250
  friend bool operator==(const any_invocable_impl& f, std::nullptr_t) noexcept {
251
    return !f;
252
  }
253
  friend bool operator==(std::nullptr_t, const any_invocable_impl& f) noexcept {
254
    return !f;
255
  }
256
  friend bool operator!=(const any_invocable_impl& f, std::nullptr_t) noexcept {
257
    return static_cast<bool>(f);
258
  }
259
  friend bool operator!=(std::nullptr_t, const any_invocable_impl& f) noexcept {
260
    return static_cast<bool>(f);
261
  }
262
263
  friend void swap(any_invocable_impl& lhs, any_invocable_impl& rhs) noexcept {
264
    lhs.swap(rhs);
265
  }
266
267
 private:
268
  storage storage_;
269
  handle_func handle_ = nullptr;
270
  call_func call_;
271
};
272
273
template <class T>
274
using remove_cvref_t = std::remove_cv_t<std::remove_reference_t<T>>;
275
276
template <class AI, class F, bool noex, class R, class FCall, class... ArgTypes>
277
using can_convert = std::conjunction<
278
    std::negation<std::is_same<remove_cvref_t<F>, AI>>,
279
    std::negation<any_detail::is_in_place_type<remove_cvref_t<F>>>,
280
    std::is_invocable_r<R, FCall, ArgTypes...>,
281
    std::bool_constant<(!noex ||
282
                        std::is_nothrow_invocable_r_v<R, FCall, ArgTypes...>)>,
283
    std::is_constructible<std::decay_t<F>, F>>;
284
285
}  // namespace any_detail
286
287
template <class Signature>
288
class any_invocable;
289
290
#define __OFATS_ANY_INVOCABLE(cv, ref, noex, inv_quals)                        \
291
  template <class R, class... ArgTypes>                                        \
292
  class any_invocable<R(ArgTypes...) cv ref noexcept(noex)>                    \
293
      : public any_detail::any_invocable_impl<R, noex, ArgTypes...> {          \
294
    using base_type = any_detail::any_invocable_impl<R, noex, ArgTypes...>;    \
295
                                                                               \
296
   public:                                                                     \
297
    using base_type::base_type;                                                \
298
                                                                               \
299
    template <                                                                 \
300
        class F,                                                               \
301
        class = std::enable_if_t<any_detail::can_convert<                      \
302
            any_invocable, F, noex, R, F inv_quals, ArgTypes...>::value>>      \
303
2.97M
    any_invocable(F&& f) {                                                     \
304
2.97M
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
2.97M
    }                                                                          \
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
303
635k
    any_invocable(F&& f) {                                                     \
304
635k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
635k
    }                                                                          \
ofats::any_invocable<void* (void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>::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> >, bool)#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> >, bool)#1}&&)
Line
Count
Source
303
635k
    any_invocable(F&& f) {                                                     \
304
635k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
635k
    }                                                                          \
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}&&)
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
303
5.93k
    any_invocable(F&& f) {                                                     \
304
5.93k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.93k
    }                                                                          \
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
303
5.93k
    any_invocable(F&& f) {                                                     \
304
5.93k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.93k
    }                                                                          \
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
303
11.8k
    any_invocable(F&& f) {                                                     \
304
11.8k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
11.8k
    }                                                                          \
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<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::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#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::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}&&)
Line
Count
Source
303
11.8k
    any_invocable(F&& f) {                                                     \
304
11.8k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
11.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
303
42.3k
    any_invocable(F&& f) {                                                     \
304
42.3k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
42.3k
    }                                                                          \
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
303
11.8k
    any_invocable(F&& f) {                                                     \
304
11.8k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
11.8k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<test()::$_0, void>(test()::$_0&&)
Line
Count
Source
303
5.93k
    any_invocable(F&& f) {                                                     \
304
5.93k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.93k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<test()::$_1, void>(test()::$_1&&)
Line
Count
Source
303
5.93k
    any_invocable(F&& f) {                                                     \
304
5.93k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.93k
    }                                                                          \
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
303
3.15k
    any_invocable(F&& f) {                                                     \
304
3.15k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
3.15k
    }                                                                          \
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
303
1.67k
    any_invocable(F&& f) {                                                     \
304
1.67k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
1.67k
    }                                                                          \
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
303
3.15k
    any_invocable(F&& f) {                                                     \
304
3.15k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
3.15k
    }                                                                          \
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
303
1.48k
    any_invocable(F&& f) {                                                     \
304
1.48k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
1.48k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<test()::$_2, void>(test()::$_2&&)
Line
Count
Source
303
5.93k
    any_invocable(F&& f) {                                                     \
304
5.93k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.93k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_3, void>(test()::$_3&&)
Line
Count
Source
303
5.93k
    any_invocable(F&& f) {                                                     \
304
5.93k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.93k
    }                                                                          \
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
303
5.93k
    any_invocable(F&& f) {                                                     \
304
5.93k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.93k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_5, void>(test()::$_5&&)
Line
Count
Source
303
5.93k
    any_invocable(F&& f) {                                                     \
304
5.93k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.93k
    }                                                                          \
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
303
5.93k
    any_invocable(F&& f) {                                                     \
304
5.93k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.93k
    }                                                                          \
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
303
8.89k
    any_invocable(F&& f) {                                                     \
304
8.89k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
8.89k
    }                                                                          \
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
303
5.93k
    any_invocable(F&& f) {                                                     \
304
5.93k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.93k
    }                                                                          \
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
303
5.93k
    any_invocable(F&& f) {                                                     \
304
5.93k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.93k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (us_listen_socket_t*)>::any_invocable<test()::$_9, void>(test()::$_9&&)
Line
Count
Source
303
5.93k
    any_invocable(F&& f) {                                                     \
304
5.93k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.93k
    }                                                                          \
AsyncEpollHelloWorld.cpp:ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::any_invocable<test()::$_0, void>(test()::$_0&&)
Line
Count
Source
303
1.65k
    any_invocable(F&& f) {                                                     \
304
1.65k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
1.65k
    }                                                                          \
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
303
23.2k
    any_invocable(F&& f) {                                                     \
304
23.2k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
23.2k
    }                                                                          \
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
303
23.2k
    any_invocable(F&& f) {                                                     \
304
23.2k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
23.2k
    }                                                                          \
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
303
13.0k
    any_invocable(F&& f) {                                                     \
304
13.0k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
13.0k
    }                                                                          \
AsyncEpollHelloWorld.cpp:ofats::any_invocable<void (us_listen_socket_t*)>::any_invocable<test()::$_1, void>(test()::$_1&&)
Line
Count
Source
303
1.65k
    any_invocable(F&& f) {                                                     \
304
1.65k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
1.65k
    }                                                                          \
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
303
403k
    any_invocable(F&& f) {                                                     \
304
403k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
403k
    }                                                                          \
ofats::any_invocable<void* (void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>::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> >, bool)#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> >, bool)#1}&&)
Line
Count
Source
303
403k
    any_invocable(F&& f) {                                                     \
304
403k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
403k
    }                                                                          \
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}&&)
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
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.13k
    }                                                                          \
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
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.13k
    }                                                                          \
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
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.13k
    }                                                                          \
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<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::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#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::WebSocket<true, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}&&)
Line
Count
Source
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.13k
    }                                                                          \
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
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.13k
    }                                                                          \
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
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.13k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*)>::any_invocable<test()::$_0, void>(test()::$_0&&)
Line
Count
Source
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.13k
    }                                                                          \
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
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.13k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*)>::any_invocable<test()::$_2, void>(test()::$_2&&)
Line
Count
Source
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.13k
    }                                                                          \
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
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.13k
    }                                                                          \
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
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.13k
    }                                                                          \
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
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.13k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (us_listen_socket_t*)>::any_invocable<test()::$_6, void>(test()::$_6&&)
Line
Count
Source
303
4.13k
    any_invocable(F&& f) {                                                     \
304
4.13k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.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
303
4
    any_invocable(F&& f) {                                                     \
304
4
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
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
303
4
    any_invocable(F&& f) {                                                     \
304
4
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
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
303
4
    any_invocable(F&& f) {                                                     \
304
4
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
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
303
4
    any_invocable(F&& f) {                                                     \
304
4
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
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
303
245k
    any_invocable(F&& f) {                                                     \
304
245k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
245k
    }                                                                          \
Http.cpp:ofats::any_invocable<void* (void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>::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
303
245k
    any_invocable(F&& f) {                                                     \
304
245k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
245k
    }                                                                          \
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
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
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
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
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
303
11.0k
    any_invocable(F&& f) {                                                     \
304
11.0k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
11.0k
    }                                                                          \
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<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::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#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::WebSocket<false, true, test()::PerSocketData>*, int, std::__1::basic_string_view<char, std::__1::char_traits<char> >)#1}&&)
Line
Count
Source
303
11.0k
    any_invocable(F&& f) {                                                     \
304
11.0k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
11.0k
    }                                                                          \
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
303
11.0k
    any_invocable(F&& f) {                                                     \
304
11.0k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
11.0k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_0, void>(test()::$_0&&)
Line
Count
Source
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
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
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_2, void>(test()::$_2&&)
Line
Count
Source
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
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
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
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
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
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
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_6, void>(test()::$_6&&)
Line
Count
Source
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
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
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::any_invocable<test()::$_8, void>(test()::$_8&&)
Line
Count
Source
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
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
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
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
303
4.18k
    any_invocable(F&& f) {                                                     \
304
4.18k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
4.18k
    }                                                                          \
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
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
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
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (us_listen_socket_t*)>::any_invocable<test()::$_12, void>(test()::$_12&&)
Line
Count
Source
303
5.52k
    any_invocable(F&& f) {                                                     \
304
5.52k
      base_type::template create<std::decay_t<F>>(std::forward<F>(f));         \
305
5.52k
    }                                                                          \
306
                                                                               \
307
    template <class T, class... Args, class VT = std::decay_t<T>,              \
308
              class = std::enable_if_t<                                        \
309
                  std::is_move_constructible_v<VT> &&                          \
310
                  std::is_constructible_v<VT, Args...> &&                      \
311
                  std::is_invocable_r_v<R, VT inv_quals, ArgTypes...> &&       \
312
                  (!noex || std::is_nothrow_invocable_r_v<R, VT inv_quals,     \
313
                                                          ArgTypes...>)>>      \
314
    explicit any_invocable(std::in_place_type_t<T>, Args&&... args) {          \
315
      base_type::template create<VT>(std::forward<Args>(args)...);             \
316
    }                                                                          \
317
                                                                               \
318
    template <                                                                 \
319
        class T, class U, class... Args, class VT = std::decay_t<T>,           \
320
        class = std::enable_if_t<                                              \
321
            std::is_move_constructible_v<VT> &&                                \
322
            std::is_constructible_v<VT, std::initializer_list<U>&, Args...> && \
323
            std::is_invocable_r_v<R, VT inv_quals, ArgTypes...> &&             \
324
            (!noex ||                                                          \
325
             std::is_nothrow_invocable_r_v<R, VT inv_quals, ArgTypes...>)>>    \
326
    explicit any_invocable(std::in_place_type_t<T>,                            \
327
                           std::initializer_list<U> il, Args&&... args) {      \
328
      base_type::template create<VT>(il, std::forward<Args>(args)...);         \
329
    }                                                                          \
330
                                                                               \
331
    template <class F, class FDec = std::decay_t<F>>                           \
332
    std::enable_if_t<!std::is_same_v<FDec, any_invocable> &&                   \
333
                         std::is_move_constructible_v<FDec>,                   \
334
                     any_invocable&>                                           \
335
500k
    operator=(F&& f) {                                                         \
336
500k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
337
500k
      return *this;                                                            \
338
500k
    }                                                                          \
_ZN5ofats13any_invocableIFvNSt3__117basic_string_viewIcNS1_11char_traitsIcEEEEbEEaSIDnDnEENS1_9enable_ifIXaantsr3stdE9is_same_vIT0_S7_Esr3stdE23is_move_constructible_vISA_EERS7_E4typeEOT_
Line
Count
Source
335
1.48k
    operator=(F&& f) {                                                         \
336
1.48k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
337
1.48k
      return *this;                                                            \
338
1.48k
    }                                                                          \
Unexecuted instantiation: _ZN5ofats13any_invocableIFbmEEaSIZN3uWS16HttpResponseDataILb0EE14callOnWritableEmEUlmE_S7_EENSt3__19enable_ifIXaantsr3stdE9is_same_vIT0_S2_Esr3stdE23is_move_constructible_vISA_EERS2_E4typeEOT_
EpollHelloWorld.cpp:_ZN5ofats13any_invocableIFvPN3uWS9WebSocketILb0ELb1EZ4testvE13PerSocketDataEEiNSt3__117basic_string_viewIcNS6_11char_traitsIcEEEEEEaSIZNS1_12TemplatedAppILb0EE2wsIS3_EEOSF_NS6_12basic_stringIcS9_NS6_9allocatorIcEEEEONSF_17WebSocketBehaviorIT_EEEUlS5_iSA_E_SQ_EENS6_9enable_ifIXaantsr3stdE9is_same_vIT0_SC_Esr3stdE23is_move_constructible_vISS_EERSC_E4typeEOSN_
Line
Count
Source
335
11.8k
    operator=(F&& f) {                                                         \
336
11.8k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
337
11.8k
      return *this;                                                            \
338
11.8k
    }                                                                          \
_ZN5ofats13any_invocableIFvvEEaSIDnDnEENSt3__19enable_ifIXaantsr3stdE9is_same_vIT0_S2_Esr3stdE23is_move_constructible_vIS6_EERS2_E4typeEOT_
Line
Count
Source
335
236k
    operator=(F&& f) {                                                         \
336
236k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
337
236k
      return *this;                                                            \
338
236k
    }                                                                          \
_ZN5ofats13any_invocableIFbmEEaSIDnDnEENSt3__19enable_ifIXaantsr3stdE9is_same_vIT0_S2_Esr3stdE23is_move_constructible_vIS6_EERS2_E4typeEOT_
Line
Count
Source
335
236k
    operator=(F&& f) {                                                         \
336
236k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
337
236k
      return *this;                                                            \
338
236k
    }                                                                          \
Unexecuted instantiation: _ZN5ofats13any_invocableIFbmEEaSIZN3uWS16HttpResponseDataILb1EE14callOnWritableEmEUlmE_S7_EENSt3__19enable_ifIXaantsr3stdE9is_same_vIT0_S2_Esr3stdE23is_move_constructible_vISA_EERS2_E4typeEOT_
EpollEchoServerPubSub.cpp:_ZN5ofats13any_invocableIFvPN3uWS9WebSocketILb1ELb1EZ4testvE13PerSocketDataEEiNSt3__117basic_string_viewIcNS6_11char_traitsIcEEEEEEaSIZNS1_12TemplatedAppILb1EE2wsIS3_EEOSF_NS6_12basic_stringIcS9_NS6_9allocatorIcEEEEONSF_17WebSocketBehaviorIT_EEEUlS5_iSA_E_SQ_EENS6_9enable_ifIXaantsr3stdE9is_same_vIT0_SC_Esr3stdE23is_move_constructible_vISS_EERSC_E4typeEOSN_
Line
Count
Source
335
4.13k
    operator=(F&& f) {                                                         \
336
4.13k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
337
4.13k
      return *this;                                                            \
338
4.13k
    }                                                                          \
EpollEchoServer.cpp:_ZN5ofats13any_invocableIFvPN3uWS9WebSocketILb0ELb1EZ4testvE13PerSocketDataEEiNSt3__117basic_string_viewIcNS6_11char_traitsIcEEEEEEaSIZNS1_12TemplatedAppILb0EE2wsIS3_EEOSF_NS6_12basic_stringIcS9_NS6_9allocatorIcEEEEONSF_17WebSocketBehaviorIT_EEEUlS5_iSA_E_SQ_EENS6_9enable_ifIXaantsr3stdE9is_same_vIT0_SC_Esr3stdE23is_move_constructible_vISS_EERSC_E4typeEOSN_
Line
Count
Source
335
11.0k
    operator=(F&& f) {                                                         \
336
11.0k
      any_invocable{std::forward<F>(f)}.swap(*this);                           \
337
11.0k
      return *this;                                                            \
338
11.0k
    }                                                                          \
339
    template <class F>                                                         \
340
    any_invocable& operator=(std::reference_wrapper<F> f) {                    \
341
      any_invocable{f}.swap(*this);                                            \
342
      return *this;                                                            \
343
    }                                                                          \
344
                                                                               \
345
12.9M
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
12.9M
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
12.9M
    }                                                                          \
ofats::any_invocable<void ()>::operator()()
Line
Count
Source
345
89.2k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
89.2k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
89.2k
    }                                                                          \
ofats::any_invocable<void (uWS::Loop*)>::operator()(uWS::Loop*)
Line
Count
Source
345
10.9M
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
10.9M
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
10.9M
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (uWS::HttpResponse<false>*, int)>::operator()(uWS::HttpResponse<false>*, int)
ofats::any_invocable<void* (void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)>::operator()(void*, std::__1::basic_string_view<char, std::__1::char_traits<char> >, bool)
Line
Count
Source
345
92.2k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
92.2k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
92.2k
    }                                                                          \
ofats::any_invocable<void* (void*, uWS::HttpRequest*)>::operator()(void*, uWS::HttpRequest*)
Line
Count
Source
345
295k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
295k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
295k
    }                                                                          \
ofats::any_invocable<bool (uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)>::operator()(uWS::HttpRouter<uWS::HttpContextData<false>::RouterData>*)
Line
Count
Source
345
200k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
200k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
200k
    }                                                                          \
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
345
6.01k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
6.01k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
6.01k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<bool (unsigned long)>::operator()(unsigned long)
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
345
71.8k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
71.8k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
71.8k
    }                                                                          \
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
345
16.0k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
16.0k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
16.0k
    }                                                                          \
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
345
9.90k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
9.90k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
9.90k
    }                                                                          \
EpollHelloWorld.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
345
39.8k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
39.8k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
39.8k
    }                                                                          \
ofats::any_invocable<void (uWS::HttpResponse<false>*, uWS::HttpRequest*)>::operator()(uWS::HttpResponse<false>*, uWS::HttpRequest*)
Line
Count
Source
345
200k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
200k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
200k
    }                                                                          \
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 (us_listen_socket_t*)>::operator()(us_listen_socket_t*)
Line
Count
Source
345
17.2k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
17.2k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
17.2k
    }                                                                          \
Unexecuted instantiation: ofats::any_invocable<void (char const*)>::operator()(char const*)
Unexecuted instantiation: ofats::any_invocable<void (uWS::HttpResponse<true>*, int)>::operator()(uWS::HttpResponse<true>*, int)
ofats::any_invocable<bool (uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)>::operator()(uWS::HttpRouter<uWS::HttpContextData<true>::RouterData>*)
Line
Count
Source
345
66.5k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
66.5k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
66.5k
    }                                                                          \
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
345
129k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
129k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
129k
    }                                                                          \
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
345
167k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
167k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
167k
    }                                                                          \
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
345
7.48k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
7.48k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
7.48k
    }                                                                          \
EpollEchoServerPubSub.cpp:ofats::any_invocable<void (uWS::WebSocket<true, true, test()::PerSocketData>*)>::operator()(uWS::WebSocket<true, true, test()::PerSocketData>*)
Line
Count
Source
345
75.4k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
75.4k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
75.4k
    }                                                                          \
ofats::any_invocable<void (uWS::HttpResponse<true>*, uWS::HttpRequest*)>::operator()(uWS::HttpResponse<true>*, uWS::HttpRequest*)
Line
Count
Source
345
66.5k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
66.5k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
66.5k
    }                                                                          \
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<bool (uWS::HttpRouter<StaticData::RouterData>*)>::operator()(uWS::HttpRouter<StaticData::RouterData>*)
Line
Count
Source
345
18.4k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
18.4k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
18.4k
    }                                                                          \
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
345
216k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
216k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
216k
    }                                                                          \
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
345
44.7k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
44.7k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
44.7k
    }                                                                          \
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
345
10.6k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
10.6k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
10.6k
    }                                                                          \
EpollEchoServer.cpp:ofats::any_invocable<void (uWS::WebSocket<false, true, test()::PerSocketData>*)>::operator()(uWS::WebSocket<false, true, test()::PerSocketData>*)
Line
Count
Source
345
128k
    R operator()(ArgTypes... args) cv ref noexcept(noex) {                     \
346
128k
      return base_type::call(std::forward<ArgTypes>(args)...);                 \
347
128k
    }                                                                          \
348
  };
349
350
// cv -> {`empty`, const}
351
// ref -> {`empty`, &, &&}
352
// noex -> {true, false}
353
// inv_quals -> (is_empty(ref) ? & : ref)
354
__OFATS_ANY_INVOCABLE(, , false, &)               // 000
355
__OFATS_ANY_INVOCABLE(, , true, &)                // 001
356
__OFATS_ANY_INVOCABLE(, &, false, &)              // 010
357
__OFATS_ANY_INVOCABLE(, &, true, &)               // 011
358
__OFATS_ANY_INVOCABLE(, &&, false, &&)            // 020
359
__OFATS_ANY_INVOCABLE(, &&, true, &&)             // 021
360
__OFATS_ANY_INVOCABLE(const, , false, const&)     // 100
361
__OFATS_ANY_INVOCABLE(const, , true, const&)      // 101
362
__OFATS_ANY_INVOCABLE(const, &, false, const&)    // 110
363
__OFATS_ANY_INVOCABLE(const, &, true, const&)     // 111
364
__OFATS_ANY_INVOCABLE(const, &&, false, const&&)  // 120
365
__OFATS_ANY_INVOCABLE(const, &&, true, const&&)   // 121
366
367
#undef __OFATS_ANY_INVOCABLE
368
369
}  // namespace ofats
370
371
/* We, uWebSockets define our own type */
372
namespace uWS {
373
  template <class T>
374
  using MoveOnlyFunction = ofats::any_invocable<T>;
375
}
376
377
#endif  // _ANY_INVOKABLE_H_