Home
last modified time | relevance | path

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

/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/test/
DHidParserExample.cpp32 bool parseResult = hidParser.parse(p->data, p->len); in doParse() local
34 if (parseResult) { in doParse()
54 bool parseResult = hidParser.parse(p->data, p->len); in doParseAndFilter() local
56 if (parseResult) { in doParseAndFilter()
85 bool parseResult = hidParser.parse(p->data, p->len); in doDigest() local
87 if (!parseResult) { in doDigest()
/hardware/interfaces/automotive/vehicle/aidl/impl/fake_impl/hardware/src/
DFakeVehicleHardware.cpp2066 auto parseResult = parsePropOptions(options); in dumpSetProperties() local
2067 if (!parseResult.ok()) { in dumpSetProperties()
2068 return getErrorMsg(parseResult); in dumpSetProperties()
2070 VehiclePropValue prop = std::move(parseResult.value()); in dumpSetProperties()
2094 auto parseResult = parsePropOptions(options); in dumpGetPropertyWithArg() local
2095 if (!parseResult.ok()) { in dumpGetPropertyWithArg()
2096 return getErrorMsg(parseResult); in dumpGetPropertyWithArg()
2098 VehiclePropValue prop = std::move(parseResult.value()); in dumpGetPropertyWithArg()
2122 auto parseResult = parsePropOptions(options); in dumpSaveProperty() local
2123 if (!parseResult.ok()) { in dumpSaveProperty()
[all …]
/hardware/qcom/sm8150/data/ipacfg-mgr/ipacm/src/
DIPACM_ConntrackListener.cpp1308 int parseResult = nfct_parse_conntrack((nf_conntrack_msg_type) NFCT_T_ALL,nl_header, ct); in readConntrack() local
1309 if(parseResult != NFCT_T_ERROR && parseResult != 0) in readConntrack()
1312 ct_entries[index++].type = (nf_conntrack_msg_type)parseResult; in readConntrack()