Home
last modified time | relevance | path

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

/hardware/google/camera/devices/EmulatedCamera/hwl/
DEmulatedCameraProviderHWLImpl.cpp351 auto int_value = strtol(value.asCString(), nullptr, 10); in GetUInt8Value() local
352 if ((int_value >= 0) && (int_value <= UINT8_MAX) && (errno == 0)) { in GetUInt8Value()
353 *result = int_value; in GetUInt8Value()
381 auto int_value = strtol(value.asCString(), nullptr, 10); in GetInt32Value() local
382 if ((int_value >= INT32_MIN) && (int_value <= INT32_MAX) && (errno == 0)) { in GetInt32Value()
383 *result = int_value; in GetInt32Value()
410 auto int_value = strtoll(value.asCString(), nullptr, 10); in GetInt64Value() local
411 if ((int_value >= INT64_MIN) && (int_value <= INT64_MAX) && (errno == 0)) { in GetInt64Value()
412 *result = int_value; in GetInt64Value()