Searched refs:parseKernelConfigInt (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/system/libvintf/ |
H A D | parse_string.cpp | 166 bool parseKernelConfigInt(const std::string &s, int64_t *i) { in parseKernelConfigInt() function 170 bool parseKernelConfigInt(const std::string &s, uint64_t *i) { in parseKernelConfigInt() function 179 return parseKernelConfigInt(s.substr(0, pos), &range->first) in parseRange() 180 && parseKernelConfigInt(s.substr(pos + 1), &range->second); in parseRange() 194 return parseKernelConfigInt(s, &kctv->mIntegerValue); in parseKernelConfigValue() 208 if (parseKernelConfigInt(s, &kctv->mIntegerValue)) { in parseKernelConfigTypedValue()
|
H A D | KernelConfigTypedValue.cpp | 76 return parseKernelConfigInt(s, &iv) && iv == mIntegerValue; in matchValue()
|
/aosp_15_r20/system/libvintf/include/vintf/ |
H A D | parse_string.h | 89 bool parseKernelConfigInt(const std::string& s, int64_t* i); 90 bool parseKernelConfigInt(const std::string& s, uint64_t* i);
|