MCPcopy Create free account
hub / github.com/boostorg/asio / context

Method context

include/boost/asio/detail/call_stack.hpp:41–47  ·  view source on GitHub ↗

Push the key on to the stack.

Source from the content-addressed store, hash-verified

39 public:
40 // Push the key on to the stack.
41 explicit context(Key* k)
42 : key_(k),
43 next_(call_stack<Key, Value>::top_)
44 {
45 value_ = reinterpret_cast<unsigned char*>(this);
46 call_stack<Key, Value>::top_ = this;
47 }
48
49 // Push the key/value pair on to the stack.
50 context(Key* k, Value& v)

Callers 15

transmit_fileFunction · 0.45
start_acceptMethod · 0.45
executorClass · 0.45
strand.hppFile · 0.45
create_implementationFunction · 0.45
buffer_registrationClass · 0.45
async_connectMethod · 0.45
io_object_implClass · 0.45
cancelMethod · 0.45
cancel_oneMethod · 0.45
async_waitMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected