/external/chromium_org/chrome/browser/ |
memory_details_win.cc | 109 ProcessMemoryInformation info; local 110 info.pid = pid; 111 if (info.pid == GetCurrentProcessId()) 112 info.process_type = content::PROCESS_TYPE_BROWSER; 114 info.process_type = content::PROCESS_TYPE_UNKNOWN; 118 metrics->GetCommittedKBytes(&info.committed); 119 metrics->GetWorkingSetKBytes(&info.working_set); 126 info.version = ASCIIToWide(version_info.Version()); 130 if (child_info[child].pid != info.pid) 132 info.titles = child_info[child].titles [all...] |
/external/chromium_org/chrome/browser/net/ |
resource_prefetch_predictor_observer.cc | 55 const content::ResourceRequestInfo* info = local 57 if (!info) { 63 if (!info->GetAssociatedRenderView(&render_process_id, &render_view_id)) { 73 summary->resource_type = info->GetResourceType();
|
/external/chromium_org/chrome/browser/signin/ |
local_auth.cc | 130 ProfileInfoCache& info = local 132 info.SetLocalAuthCredentialsOfProfileAtIndex(info_index, encoded); 139 ProfileInfoCache& info = local 141 size_t info_index = info.GetIndexOfProfileWithPath(profile->GetPath()); 154 ProfileInfoCache& info = local 158 info.GetLocalAuthCredentialsOfProfileAtIndex(info_index); 191 ProfileInfoCache& info = local 193 size_t info_index = info.GetIndexOfProfileWithPath(profile->GetPath());
|
/external/chromium_org/chrome/browser/storage_monitor/ |
storage_monitor.cc | 23 virtual void ProcessAttach(const StorageInfo& info) OVERRIDE; 33 void StorageMonitor::ReceiverImpl::ProcessAttach(const StorageInfo& info) { 34 notifications_->ProcessAttach(info); 139 void StorageMonitor::ProcessAttach(const StorageInfo& info) { 142 if (ContainsKey(storage_map_, info.device_id())) { 147 storage_map_.insert(std::make_pair(info.device_id(), info)); 150 DVLOG(1) << "StorageAttached with name " << UTF16ToUTF8(info.name()) 151 << " and id " << info.device_id(); 152 if (StorageInfo::IsRemovableDevice(info.device_id())) 159 StorageInfo info; local [all...] |
test_volume_mount_watcher_win.cc | 56 StorageInfo* info) { 57 DCHECK(info); 77 *info = StorageInfo(device_id, base::string16(), path.value(), storage_label, 98 StorageInfo info(device_id, device_name, device_path.value(), 101 HandleDeviceAttachEventOnUIThread(device_path, info); 133 StorageInfo info; local 134 bool success = GetMassStorageDeviceDetails(device_path, &info); 135 *removable = StorageInfo::IsRemovableDevice(info.device_id());
|
/external/chromium_org/chrome/browser/ui/views/ |
select_file_dialog_extension_unittest.cc | 95 ui::SelectedFileInfo info; local 96 SelectFileDialogExtension::OnFileSelected(kDefaultRoutingID, info,
|
/external/chromium_org/chrome/browser/ui/webui/extensions/ |
pack_extension_handler.cc | 164 ui::SelectFileDialog::FileTypeInfo info; local 178 info.extensions.push_back(std::vector<base::FilePath::StringType>()); 179 info.extensions.front().push_back(FILE_PATH_LITERAL("pem")); 180 info.extension_description_overrides.push_back( 183 info.include_all_files = true; 195 &info,
|
/external/chromium_org/chrome/common/extensions/api/commands/ |
commands_handler.cc | 32 CommandsInfo* info = static_cast<CommandsInfo*>( local 34 return info ? info->browser_action_command.get() : NULL; 39 CommandsInfo* info = static_cast<CommandsInfo*>( local 41 return info ? info->page_action_command.get() : NULL; 46 CommandsInfo* info = static_cast<CommandsInfo*>( local 48 return info ? info->script_badge_command.get() : NULL; 53 CommandsInfo* info = static_cast<CommandsInfo*> local [all...] |
/external/chromium_org/chrome/common/extensions/api/file_handlers/ |
file_handlers_parser.cc | 31 FileHandlers* info = static_cast<FileHandlers*>( local 33 return info ? &info->file_handlers : NULL; 114 scoped_ptr<FileHandlers> info(new FileHandlers); 129 if (!LoadFileHandler(iter.key(), *handler, &info->file_handlers, error)) 139 info->file_handlers.begin(); 140 iter < info->file_handlers.end(); 152 extension->SetManifestData(keys::kFileHandlers, info.release());
|
/external/chromium_org/chrome/common/extensions/api/speech/ |
tts_engine_manifest_handler.cc | 39 TtsVoices* info = static_cast<TtsVoices*>( local 41 return info ? &info->voices : NULL; 52 scoped_ptr<TtsVoices> info(new TtsVoices); 140 info->voices.push_back(voice_data); 143 extension->SetManifestData(keys::kTtsVoices, info.release());
|
/external/chromium_org/chrome/common/extensions/api/url_handlers/ |
url_handlers_parser.cc | 52 UrlHandlers* info = static_cast<UrlHandlers*>( local 54 return info ? &info->handlers : NULL; 136 scoped_ptr<UrlHandlers> info(new UrlHandlers); 155 if (!ParseUrlHandler(iter.key(), *handler, &info->handlers, error)) { 161 extension->SetManifestData(mkeys::kUrlHandlers, info.release());
|
/external/chromium_org/chrome/common/extensions/ |
mime_types_handler.cc | 75 MimeTypesHandlerInfo* info = static_cast<MimeTypesHandlerInfo*>( local 77 if (info) 78 return &info->handler_; 97 scoped_ptr<MimeTypesHandlerInfo> info(new MimeTypesHandlerInfo); 98 info->handler_.set_extension_id(extension->id()); 105 info->handler_.AddMIMEType(filter); 108 extension->SetManifestData(keys::kMimeTypesHandler, info.release());
|
/external/chromium_org/chrome/renderer/extensions/ |
runtime_custom_bindings.cc | 60 ExtensionMsg_ExternalConnectionInfo info; local 66 info.source_id = extension->id(); 68 info.target_id = *v8::String::Utf8Value(args[0]->ToString()); 69 info.source_url = context()->GetURL(); 75 renderview->GetRoutingID(), info, channel_name, include_tls_channel_id,
|
safe_builtins.cc | 156 static void Apply(const v8::FunctionCallbackInfo<v8::Value>& info) { 157 CHECK(info.Length() == 5 && 158 info[0]->IsFunction() && // function 159 // info[1] could be an object or a string 160 info[2]->IsObject() && // args 161 info[3]->IsInt32() && // first_arg_index 162 info[4]->IsInt32()); // args_length 163 v8::Local<v8::Function> function = info[0].As<v8::Function>(); 165 if (info[1]->IsObject()) { 166 recv = info[1]->ToObject() 197 info[1], local [all...] |
/external/chromium_org/chrome/renderer/ |
security_filter_peer.cc | 75 const webkit_glue::ResourceResponseInfo& info, 83 const webkit_glue::ResourceResponseInfo& info) { 145 const webkit_glue::ResourceResponseInfo& info) { 146 ProcessResponseInfo(info, &response_info_, mime_type_); 197 const webkit_glue::ResourceResponseInfo& info) { 212 webkit_glue::ResourceResponseInfo info; local 213 ProcessResponseInfo(info, &info, mime_type_); 214 info.security_info = security_info; 215 info.content_length = static_cast<int>(data_.size()) [all...] |
/external/chromium_org/chrome/test/chromedriver/ |
commands.cc | 41 base::DictionaryValue info; local 42 info.Set("build", build.DeepCopy()); 43 info.Set("os", os.DeepCopy()); 45 Status(kOk), scoped_ptr<base::Value>(info.DeepCopy()), std::string()); 182 "Session info: chrome=" + session->chrome->GetVersion());
|
/external/chromium_org/chrome_frame/ |
vtable_patch_manager_unittest.cc | 56 MEMORY_BASIC_INFORMATION info; local 57 ASSERT_TRUE(::VirtualQuery(vtable, &info, sizeof(info))); 58 vtable_protection_ = info.Protect;
|
/external/chromium_org/chromeos/process_proxy/ |
process_proxy_registry.cc | 42 // This should be called with empty info only. 99 // Save info for newly created proxy. We cannot do this before ProcessProxy is 101 ProcessProxyInfo& info = proxy_map_[*pid]; local 102 info.proxy.swap(proxy); 103 info.watcher_thread.reset(watcher_thread.release()); 104 info.process_id = *pid; 105 info.callback = callback;
|
/external/chromium_org/components/nacl/browser/ |
pnacl_host_unittest.cc | 73 base::PlatformFileInfo info; local 74 EXPECT_TRUE(base::GetPlatformFileInfo(fd, &info)); 75 EXPECT_FALSE(info.is_directory); 76 EXPECT_EQ(0LL, info.size); 86 base::PlatformFileInfo info; local 87 EXPECT_TRUE(base::GetPlatformFileInfo(fd, &info)); 88 EXPECT_FALSE(info.is_directory); 89 EXPECT_EQ(16LL, info.size); 109 nacl::PnaclCacheInfo info; local 110 info.pexe_url = GURL("http://www.google.com") 132 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 155 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 168 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 181 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 217 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 237 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 254 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 271 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 288 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 307 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 326 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 352 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 370 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 383 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local 408 nacl::PnaclCacheInfo info = GetTestCacheInfo(); local [all...] |
/external/chromium_org/content/browser/gpu/ |
gpu_surface_tracker.cc | 92 const SurfaceInfo& info = it->second; local 93 if (info.renderer_id == renderer_id && 94 info.render_widget_id == render_widget_id) { 123 const SurfaceInfo& info = it->second; local 124 if (!info.handle.is_transport()) 126 *renderer_id = info.renderer_id; 127 *render_widget_id = info.render_widget_id; 135 SurfaceInfo& info = surface_map_[surface_id]; local 136 info.handle = handle; 138 info.surface_ref = new SurfaceRefPluginWindow(handle.handle) 170 SurfaceInfo& info = it->second; local [all...] |
/external/chromium_org/content/browser/loader/ |
certificate_resource_handler.cc | 112 const ResourceRequestInfo* info = GetRequestInfo(); local 115 info->GetChildID(), info->GetRouteID());
|
cross_site_resource_handler.cc | 87 // Cleanup back-pointer stored on the request info. 113 ResourceRequestInfoImpl* info = GetRequestInfo(); local 121 info->GetContext(), request()->original_url(), request()->url()); 124 HasPendingCrossSiteRequest(info->GetChildID(), info->GetRouteID()); 138 if (!swap_needed || info->IsDownload() || 167 ResourceRequestInfoImpl* info = GetRequestInfo(); local 174 info->GetChildID(), info->GetRouteID())) { 204 ResourceRequestInfoImpl* info = GetRequestInfo() local 247 ResourceRequestInfoImpl* info = GetRequestInfo(); local [all...] |
/external/chromium_org/content/browser/ |
plugin_process_host.h | 65 virtual void SetPluginInfo(const WebPluginInfo& info) = 0; 84 bool Init(const WebPluginInfo& info); 116 const WebPluginInfo& info() const { return info_; } function in class:content::PluginProcessHost
|
/external/chromium_org/content/browser/renderer_host/media/ |
audio_input_device_manager_unittest.cc | 251 const StreamDeviceInfo* info = manager_->GetOpenedDeviceInfoById( local 253 DCHECK(info); 254 EXPECT_EQ(iter->device.id, info->device.id); 280 const StreamDeviceInfo* info = local 282 DCHECK(!info);
|
/external/chromium_org/content/child/npapi/ |
plugin_lib.cc | 36 WebPluginInfo info; local 37 if (!PluginList::Singleton()->ReadPluginInfo(filename, &info)) 40 return new PluginLib(info); 66 PluginLib::PluginLib(const WebPluginInfo& info) 67 : web_plugin_info_(info),
|