Searched refs:maxLen_ (Results 1 – 2 of 2) sorted by relevance
/ohos5.0/base/hiviewdfx/hiview/base/event_raw/decoded/ |
H A D | decoded_param.cpp | 77 return RawDataDecoder::UnsignedVarintDecoded(rawData_, maxLen_, pos_, val_); in DecodeValue() 94 auto ret = RawDataDecoder::UnsignedVarintDecoded(rawData_, maxLen_, pos_, size); in DecodeValue() 97 ret = ret && RawDataDecoder::UnsignedVarintDecoded(rawData_, maxLen_, pos_, val); in DecodeValue() 120 return RawDataDecoder::SignedVarintDecoded(rawData_, maxLen_, pos_, val_); in DecodeValue() 137 auto ret = RawDataDecoder::UnsignedVarintDecoded(rawData_, maxLen_, pos_, size); in DecodeValue() 140 ret = ret && RawDataDecoder::SignedVarintDecoded(rawData_, maxLen_, pos_, val); in DecodeValue() 163 return RawDataDecoder::FloatingNumberDecoded(rawData_, maxLen_, pos_, val_); in DecodeValue() 180 auto ret = RawDataDecoder::UnsignedVarintDecoded(rawData_, maxLen_, pos_, size); in DecodeValue() 206 return RawDataDecoder::StringValueDecoded(rawData_, maxLen_, pos_, val_); in DecodeValue() 223 auto ret = RawDataDecoder::UnsignedVarintDecoded(rawData_, maxLen_, pos_, size); in DecodeValue() [all …]
|
/ohos5.0/base/hiviewdfx/hiview/base/event_raw/include/decoded/ |
H A D | decoded_param.h | 32 : rawData_(rawData), maxLen_(maxLen), pos_(pos), key_(key) in DecodedParam() 57 size_t maxLen_; variable
|