Home
last modified time | relevance | path

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

/external/protobuf/src/google/protobuf/stubs/
Dstrutil.h410 LIBPROTOBUF_EXPORT bool safe_strtou64(const string& str, uint64* value);
417 inline bool safe_strtou64(const char* str, uint64* value) { in safe_strtou64() function
418 return safe_strtou64(string(str), value); in safe_strtou64()
420 inline bool safe_strtou64(StringPiece str, uint64* value) { in safe_strtou64() function
421 return safe_strtou64(str.ToString(), value); in safe_strtou64()
Dstrutil.cc1357 bool safe_strtou64(const string& str, uint64* value) { in safe_strtou64() function
/external/protobuf/src/google/protobuf/util/internal/
Ddatapiece.cc152 if (type_ == TYPE_STRING) return StringToNumber<uint64>(safe_strtou64); in ToUint64()
Djson_stream_parser.cc543 if (!safe_strtou64(number, &result->uint_val)) { in ParseNumberHelper()
Dprotostream_objectwriter.cc930 if (!safe_strtou64(s_secs, &unsigned_seconds)) { in RenderDuration()