HomeSort by relevance Sort by last modified time
    Searched refs:my_strtoui (Results 1 - 4 of 4) sorted by null

  /external/google-breakpad/src/common/linux/
linux_libc_support_unittest.cc 74 ASSERT_FALSE(my_strtoui(&result, ""));
75 ASSERT_FALSE(my_strtoui(&result, "-1"));
76 ASSERT_FALSE(my_strtoui(&result, "-"));
77 ASSERT_FALSE(my_strtoui(&result, "a"));
78 ASSERT_FALSE(my_strtoui(&result, "23472893472938472987987398472398"));
80 ASSERT_TRUE(my_strtoui(&result, "0"));
82 ASSERT_TRUE(my_strtoui(&result, "1"));
84 ASSERT_TRUE(my_strtoui(&result, "12"));
86 ASSERT_TRUE(my_strtoui(&result, "123"));
88 ASSERT_TRUE(my_strtoui(&result, "0123"))
    [all...]
linux_libc_support.h 53 extern bool my_strtoui(int* result, const char* s);
linux_libc_support.cc 78 bool my_strtoui(int* result, const char* s) { function
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_ptrace_dumper.cc 179 my_strtoui(&info->tgid, line + 6);
181 my_strtoui(&info->ppid, line + 6);
328 if (my_strtoui(&tid, dent_name) &&

Completed in 42 milliseconds