| 75 | } |
| 76 | |
| 77 | inline bool IsSupportedCommand(uint8_t command) { |
| 78 | pthread_once(&supported_cmd_map_once, InitSupportedCommandMap); |
| 79 | return butil::bit_array_get(supported_cmd_map, command); |
| 80 | } |
| 81 | |
| 82 | ParseResult ParseCouchbaseMessage(butil::IOBuf* source, Socket* socket, |
| 83 | bool /*read_eof*/, const void* /*arg*/) { |
no test coverage detected