Home
last modified time | relevance | path

Searched refs:c2Value (Results 1 – 3 of 3) sorted by relevance

/hardware/google/av/media/sfplugin/
DReflectedParamUpdater.cpp45 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()
[all …]
DCCodecConfig.cpp98 C2Type c2Value; in withC2Mappers() local
99 if (v.get(&sdkValue) && C2Mapper::map(sdkValue, &c2Value)) { in withC2Mappers()
100 return c2Value; in withC2Mappers()
106 C2Type c2Value; in withC2Mappers() local
108 if (v.get((C2ValueType*)&c2Value) && C2Mapper::map(c2Value, &sdkValue)) { in withC2Mappers()
1068 C2Value c2Value; in getSdkFormatForDomain() local
1072 if (it->second.find(&c2Value)) { in getSdkFormatForDomain()
1073 item = cm.mapToMessage(c2Value); in getSdkFormatForDomain()
1289 C2Value c2Value; in relaxValues() local
1292 (void)item.find(&c2Value); in relaxValues()
[all …]
/hardware/google/av/media/sfplugin/tests/
DReflectedParamUpdater_test.cpp178 C2Value c2Value; in TEST_F() local
183 EXPECT_EQ(true, msg["int.value"].find(&c2Value)); in TEST_F()
184 EXPECT_EQ(true, c2Value.get(&int32Value)); in TEST_F()
188 EXPECT_EQ(true, msg["vendor.long.value"].find(&c2Value)); in TEST_F()
189 EXPECT_EQ(true, c2Value.get(&int64Value)); in TEST_F()