HomeSort by relevance Sort by last modified time
    Searched defs:safe_strtou64 (Results 1 - 2 of 2) sorted by null

  /external/protobuf/src/google/protobuf/stubs/
strutil.h 388 // 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);
    [all...]
strutil.cc 1357 bool safe_strtou64(const string& str, uint64* value) { function
    [all...]

Completed in 545 milliseconds