| 69 | } |
| 70 | |
| 71 | inline bool IsSupportedCommand(uint8_t command) { |
| 72 | pthread_once(&supported_cmd_map_once, InitSupportedCommandMap); |
| 73 | return butil::bit_array_get(supported_cmd_map, command); |
| 74 | } |
| 75 | |
| 76 | ParseResult ParseMemcacheMessage(butil::IOBuf* source, |
| 77 | Socket* socket, bool /*read_eof*/, const void */*arg*/) { |
no test coverage detected