Home | History | Annotate | Download | only in browser

Lines Matching defs:info

231                           ProcessMemoryInformation* info);
232 void AppendProcess(ListValue* child_data, ProcessMemoryInformation* info);
1005 std::string info;
1008 info = path.substr(pos + 1, path.length() - (pos + 1));
1018 response = AboutHistograms(info);
1026 response = AboutObjects(info);
1029 response = AboutStats(info);
1032 response = AboutTcmalloc(info);
1052 response = AboutNetwork(info);
1087 ProcessMemoryInformation* info) {
1088 DCHECK(data && info);
1091 data->SetInteger("ws_priv", static_cast<int>(info->working_set.priv));
1093 static_cast<int>(info->working_set.shareable));
1094 data->SetInteger("ws_shared", static_cast<int>(info->working_set.shared));
1095 data->SetInteger("comm_priv", static_cast<int>(info->committed.priv));
1096 data->SetInteger("comm_map", static_cast<int>(info->committed.mapped));
1097 data->SetInteger("comm_image", static_cast<int>(info->committed.image));
1098 data->SetInteger("pid", info->pid);
1099 data->SetString("version", info->version);
1100 data->SetInteger("processes", info->num_processes);
1106 ProcessMemoryInformation* info) {
1107 DCHECK(child_data && info);
1112 BindProcessMetrics(child, info);
1115 ChildProcessInfo::GetFullTypeNameInEnglish(info->type,
1116 info->renderer_type));
1117 if (info->is_diagnostics)
1122 for (size_t i = 0; i < info->titles.size(); ++i)
1123 titles->Append(new StringValue(info->titles[i]));
1166 // We log memory info as we record it.