Searched refs:pcStrEnd (Results 1 - 3 of 3) sorted by relevance

/external/parameter-framework/parameter/
H A DIntegerParameterType.cpp373 char *pcStrEnd; local
378 iData = strtoll(strValue.c_str(), &pcStrEnd, 0);
381 iData = strtoull(strValue.c_str(), &pcStrEnd, 0);
385 if (errno || (*pcStrEnd != '\0')) {
H A DEnumParameterType.cpp107 char *pcStrEnd; local
110 iData = strtoll(strValue.c_str(), &pcStrEnd, 0);
113 bool bConversionSucceeded = !errno && (strValue.c_str() != pcStrEnd);
/external/parameter-framework/test/test-platform/
H A DTestPlatform.cpp256 char* pcStrEnd; local
261 uint32_t state = strtoul(pcState, &pcStrEnd, 0);
263 if (!errno && (*pcStrEnd == '\0')) {

Completed in 225 milliseconds