MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / SendData

Method SendData

Dependencies/tracy/client/TracyProfiler.cpp:3055–3060  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3053}
3054
3055bool Profiler::SendData( const char* data, size_t len )
3056{
3057 const lz4sz_t lz4sz = LZ4_compress_fast_continue( (LZ4_stream_t*)m_stream, data, m_lz4Buf + sizeof( lz4sz_t ), (int)len, LZ4Size, 1 );
3058 memcpy( m_lz4Buf, &lz4sz, sizeof( lz4sz ) );
3059 return m_sock->Send( m_lz4Buf, lz4sz + sizeof( lz4sz_t ) ) != -1;
3060}
3061
3062void Profiler::SendString( uint64_t str, const char* ptr, size_t len, QueueType type )
3063{

Callers

nothing calls this directly

Calls 2

SendMethod · 0.80

Tested by

no test coverage detected