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

  /system/core/debuggerd/client/
debuggerd_client.cpp 122 std::string pipe_size_str; local
124 if (android::base::ReadFileToString("/proc/sys/fs/pipe-max-size", &pipe_size_str)) {
125 pipe_size_str = android::base::Trim(pipe_size_str);
127 if (!android::base::ParseInt(pipe_size_str.c_str(), &pipe_buffer_size, 0)) {
128 LOG(FATAL) << "failed to parse pipe max size '" << pipe_size_str << "'";
  /system/core/debuggerd/
debuggerd_test.cpp 101 std::string pipe_size_str; local
103 if (!android::base::ReadFileToString("/proc/sys/fs/pipe-max-size", &pipe_size_str)) {
107 pipe_size_str = android::base::Trim(pipe_size_str);
109 if (!android::base::ParseInt(pipe_size_str.c_str(), &pipe_buffer_size, 0)) {

Completed in 60 milliseconds