| 625 | } |
| 626 | |
| 627 | inline uint64_t ToLittleEndian(const uint32_t* buf) { |
| 628 | return (((uint64_t)ntohl(buf[0])) << 32) | ntohl(buf[1]); |
| 629 | } |
| 630 | |
| 631 | SpanDB* SpanDB::Open() { |
| 632 | // Remove old rpcz directory even if crash occurs. |
no outgoing calls
no test coverage detected