Lines Matching refs:get

56                     (void)c2Value.get(&int32Value);  in debugString()
60 (void)c2Value.get(&uint32Value); in debugString()
65 (void)c2Value.get((c2_cntr32_t*)&uint32Value); in debugString()
69 (void)c2Value.get(&int64Value); in debugString()
73 (void)c2Value.get(&uint64Value); in debugString()
78 (void)c2Value.get((c2_cntr64_t*)&uint64Value); in debugString()
82 (void)c2Value.get(&floatValue); in debugString()
103 s << (void*)bufValue.get(); in debugString()
327 if (param->get()->size() < offset + size) { in updateParamsFromMessage()
333 new (newParam) _C2Param(offset + size, param->get()->index()); in updateParamsFromMessage()
335 memcpy(newParam + 1, param->get() + 1, offset - sizeof(C2Param)); in updateParamsFromMessage()
338 } else if (param->get()->size() > offset + size) { in updateParamsFromMessage()
340 _C2ParamInspector::TrimParam(param->get(), offset + size); in updateParamsFromMessage()
345 memset((uint8_t *)(param->get()) + offset + size, 0, in updateParamsFromMessage()
350 memcpy((uint8_t *)(param->get()) + offset, ptr, size); in updateParamsFromMessage()
389 if ((param->second.find(&c2Value) && c2Value.get(&int32Value)) in parseMessageAndDoWork()
395 if ((param->second.find(&c2Value) && c2Value.get((uint32_t*)&int32Value)) in parseMessageAndDoWork()
401 if ((param->second.find(&c2Value) && c2Value.get((c2_cntr32_t*)&int32Value)) in parseMessageAndDoWork()
407 if ((param->second.find(&c2Value) && c2Value.get(&int64Value)) in parseMessageAndDoWork()
413 if ((param->second.find(&c2Value) && c2Value.get((uint64_t*)&int64Value)) in parseMessageAndDoWork()
419 if ((param->second.find(&c2Value) && c2Value.get((c2_cntr64_t*)&int64Value)) in parseMessageAndDoWork()
426 if (param->second.find(&c2Value) && c2Value.get(&tmp)) { in parseMessageAndDoWork()
472 [](const std::unique_ptr<C2Param>& p) -> C2Param* { return p.get(); }); in getParams()