Lines Matching refs:c2Value

45         C2Value c2Value;  in debugString()  local
53 if (it.second.find(&c2Value)) { in debugString()
54 switch (c2Value.type()) { in debugString()
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()
390 C2Value c2Value; in parseMessageAndDoWork() local
396 if ((param->second.find(&c2Value) && c2Value.get(&int32Value)) in parseMessageAndDoWork()
402 if ((param->second.find(&c2Value) && c2Value.get((uint32_t*)&int32Value)) in parseMessageAndDoWork()
408 if ((param->second.find(&c2Value) && c2Value.get((c2_cntr32_t*)&int32Value)) in parseMessageAndDoWork()
414 if ((param->second.find(&c2Value) && c2Value.get(&int64Value)) in parseMessageAndDoWork()
420 if ((param->second.find(&c2Value) && c2Value.get((uint64_t*)&int64Value)) in parseMessageAndDoWork()
426 if ((param->second.find(&c2Value) && c2Value.get((c2_cntr64_t*)&int64Value)) in parseMessageAndDoWork()
433 if (param->second.find(&c2Value) && c2Value.get(&tmp)) { in parseMessageAndDoWork()
557 C2Value c2Value; in getParams() local
559 case C2FieldDescriptor::INT32: c2Value = *((int32_t *)data); break; in getParams()
560 case C2FieldDescriptor::UINT32: c2Value = *((uint32_t *)data); break; in getParams()
561 case C2FieldDescriptor::CNTR32: c2Value = *((c2_cntr32_t *)data); break; in getParams()
562 case C2FieldDescriptor::INT64: c2Value = *((int64_t *)data); break; in getParams()
563 case C2FieldDescriptor::UINT64: c2Value = *((uint64_t *)data); break; in getParams()
564 case C2FieldDescriptor::CNTR64: c2Value = *((c2_cntr64_t *)data); break; in getParams()
565 case C2FieldDescriptor::FLOAT: c2Value = *((float *)data); break; in getParams()
570 value.set(c2Value); in getParams()