Home
last modified time | relevance | path

Searched refs:isOK (Results 1 - 2 of 2) sorted by relevance

/base/security/security_guard/frameworks/common/utils/src/
H A Dsecurity_guard_utils.cpp35 bool isOK = StrToULL(str, tmp); in StrToU32() local
37 return isOK && (tmp <= UINT32_MAX); in StrToU32()
43 bool isOK = StrToLL(str, tmp, DEC_RADIX); in StrToI64() local
45 return isOK && (tmp >= INT64_MIN && tmp <= INT64_MAX); in StrToI64()
51 bool isOK; in StrToI64Hex() local
53 isOK = StrToLL(str, tmp, HEX_RADIX); in StrToI64Hex()
55 isOK = StrToLL(str, tmp, DEC_RADIX); in StrToI64Hex()
58 return isOK && (tmp >= INT64_MIN && tmp <= INT64_MAX); in StrToI64Hex()
/base/time/time_service/framework/js/napi/system_time/src/
H A Djs_systemtime.cpp40 bool isOK = false; member
93 asyncContext->isOK = TimeServiceClient::GetInstance()->SetTime(asyncContext->time, errorCode); in JSSystemTimeSetTime()
94 if (!asyncContext->isOK) { in JSSystemTimeSetTime()
144 asyncContext->isOK = TimeServiceClient::GetInstance()->SetTimeZone(asyncContext->timeZone, errorCode); in JSSystemTimeSetTimeZone()
145 if (!asyncContext->isOK) { in JSSystemTimeSetTimeZone()

Completed in 2 milliseconds