Searched refs:stats_data (Results 1 - 6 of 6) sorted by relevance

/external/libchrome/base/process/
H A Dinternal_linux.cc70 bool ParseProcStats(const std::string& stats_data, argument
72 // |stats_data| may be empty if the process disappeared somehow.
74 if (stats_data.empty())
81 size_t open_parens_idx = stats_data.find(" (");
82 size_t close_parens_idx = stats_data.rfind(") ");
86 DLOG(WARNING) << "Failed to find matched parens in '" << stats_data << "'";
94 proc_stats->push_back(stats_data.substr(0, open_parens_idx));
97 stats_data.substr(open_parens_idx + 1,
102 stats_data.substr(close_parens_idx + 2), " ",
138 std::string stats_data; local
159 std::string stats_data; local
[all...]
H A Dprocess_iterator_linux.cc88 std::string stats_data; local
111 if (!internal::ReadProcStats(pid, &stats_data))
113 if (!internal::ParseProcStats(stats_data, &proc_stats))
H A Dinternal_linux.h43 // Takes |stats_data| and populates |proc_stats| with the values split by
46 bool ParseProcStats(const std::string& stats_data,
/external/libxcam/xcore/
H A Dx3a_stats_pool.cpp121 SmartPtr<X3aStatsData> stats_data = data.dynamic_cast_ptr<X3aStatsData> (); local
122 XCAM_ASSERT (stats_data.ptr ());
124 return new X3aStats (stats_data);
/external/libxcam/modules/isp/
H A Dx3a_statistics_queue.h64 explicit X3aIspStatistics (const SmartPtr<X3aIspStatsData> &stats_data);
H A Dx3a_statistics_queue.cpp109 X3aIspStatistics::X3aIspStatistics (const SmartPtr<X3aIspStatsData> &stats_data) argument
110 : X3aStats (SmartPtr<X3aStatsData> (stats_data))
250 SmartPtr<X3aIspStatsData> stats_data = data.dynamic_cast_ptr<X3aIspStatsData> (); local
251 XCAM_ASSERT (stats_data.ptr ());
253 return new X3aIspStatistics (stats_data);

Completed in 673 milliseconds