Searched defs:safe_strtou64 (Results 1 - 2 of 2) sorted by relevance

/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.h388 // safe_strtou64()
410 LIBPROTOBUF_EXPORT bool safe_strtou64(const string& str, uint64* value);
417 inline bool safe_strtou64(const char* str, uint64* value) { function in namespace:google::protobuf
418 return safe_strtou64(string(str), value);
420 inline bool safe_strtou64(StringPiece str, uint64* value) { function in namespace:google::protobuf
421 return safe_strtou64(str.ToString(), value);
H A Dstrutil.cc1357 bool safe_strtou64(const string& str, uint64* value) { function

Completed in 85 milliseconds