HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 701 - 725 of 2856) sorted by null

<<21222324252627282930>>

  /external/chromium_org/base/process/
process_metrics_unittest.cc 275 base::SystemMemoryInfoKB info; local
276 EXPECT_TRUE(base::GetSystemMemoryInfo(&info));
279 EXPECT_GT(info.total, 0);
280 EXPECT_GT(info.free, 0);
281 EXPECT_GT(info.buffers, 0);
282 EXPECT_GT(info.cached, 0);
283 EXPECT_GT(info.active_anon, 0);
284 EXPECT_GT(info.inactive_anon, 0);
285 EXPECT_GT(info.active_file, 0);
286 EXPECT_GT(info.inactive_file, 0)
    [all...]
  /external/chromium_org/base/test/
test_file_util_win.cc 84 PermissionInfo* info = reinterpret_cast<PermissionInfo*>(new char[*length]); local
85 info->security_descriptor = security_descriptor;
86 memcpy(&info->dacl, dacl, dacl->AclSize);
88 return info;
93 // |info| is the pointer to the blob.
95 // Either |info| or |length| may be NULL/0, in which case nothing happens.
97 void* info, size_t length) {
98 if (!info || !length)
101 PermissionInfo* perm = reinterpret_cast<PermissionInfo*>(info);
108 char* char_array = reinterpret_cast<char*>(info);
    [all...]
  /external/chromium_org/base/threading/
platform_thread_win.cc 33 THREADNAME_INFO info; local
34 info.dwType = 0x1000;
35 info.szName = name;
36 info.dwThreadID = thread_id;
37 info.dwFlags = 0;
40 RaiseException(kVCThreadNameException, 0, sizeof(info)/sizeof(DWORD),
41 reinterpret_cast<DWORD_PTR*>(&info));
212 // Debug info for bug 127931.
  /external/chromium_org/chrome/browser/autocomplete/
extension_app_provider.cc 218 history::URLRow info; local
219 url_db->GetRowForURL(url, &info);
221 400 * (1.0 - (std::pow(static_cast<double>(2), -info.typed_count())));
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_file_system_helper_unittest.cc 213 for (std::list<BrowsingDataFileSystemHelper::FileSystemInfo>::iterator info =
214 file_system_info_list_->begin(); info != file_system_info_list_->end();
215 ++info) {
216 if (info->origin == kOrigin1) {
219 EXPECT_FALSE(ContainsKey(info->usage_map, kPersistent));
220 EXPECT_TRUE(ContainsKey(info->usage_map, kTemporary));
222 info->usage_map[fileapi::kFileSystemTypeTemporary]);
223 } else if (info->origin == kOrigin2) {
226 EXPECT_TRUE(ContainsKey(info->usage_map, kPersistent));
227 EXPECT_FALSE(ContainsKey(info->usage_map, kTemporary))
256 BrowsingDataFileSystemHelper::FileSystemInfo info = local
284 std::list<BrowsingDataFileSystemHelper::FileSystemInfo>::iterator info = local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/display/
overscan_calibrator.cc 73 ash::internal::DisplayInfo info = ash::Shell::GetInstance()-> local
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
file_browser_handler_api.cc 322 fileapi::FileSystemInfo info = local
324 file_system_name_ = info.name;
325 file_system_root_ = info.root_url;
  /external/chromium_org/chrome/browser/chromeos/login/
wallpaper_manager_browsertest.cc 166 // Saves wallpaper info to local state for user |kTestUser1|.
167 WallpaperInfo info = { local
173 wallpaper_manager->SetUserWallpaperInfo(kTestUser1, info, true);
247 // Saves wallpaper info to local state for user |kTestUser1|.
248 WallpaperInfo info = { local
254 wallpaper_manager->SetUserWallpaperInfo(kTestUser1, info, true);
277 // wallpaper info directly to simulate the wallpaper migration. See
278 // crosbug.com/38429 for details about why we modify wallpaper info this way.
279 WallpaperInfo info = { local
289 WallpaperManager::Get()->SetUserWallpaperInfo(kTestUser1, info, true)
358 WallpaperInfo info = { local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
permissions_updater_unittest.cc 67 UpdatedExtensionPermissionsInfo* info = variable
70 extension_ = info->extension;
71 permissions_ = info->permissions;
72 reason_ = info->reason;
  /external/chromium_org/chrome/browser/guestview/
guestview.cc 195 extensions::EventFilteringInfo info; local
196 info.SetURL(GURL());
197 info.SetInstanceID(guest_instance_id_);
204 extensions::EventRouter::USER_GESTURE_UNKNOWN, info);
  /external/chromium_org/chrome/browser/media/
webrtc_logging_handler_host.cc 270 std::string info; local
273 info = it->first + ": " + it->second + '\n';
274 circular_buffer_->Write(info.c_str(), info.length());
278 info = base::SysInfo::OperatingSystemName() + " " +
281 circular_buffer_->Write(info.c_str(), info.length());
283 info = "Linux distribution: " + base::GetLinuxDistro() + '\n';
284 circular_buffer_->Write(info.c_str(), info.length())
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
iphoto_file_util.cc 251 base::PlatformFileInfo info; local
252 if (!base::GetFileInfo(it->second, &info))
255 info.size, info.last_modified));
266 base::PlatformFileInfo info; local
267 if (!base::GetFileInfo(it->second, &info))
270 info.size, info.last_modified));
picasa_file_util.cc 236 base::PlatformFileInfo info; local
238 // Simply skip files that we can't get info on.
239 if (fileapi::NativeFileUtil::GetFileInfo(it->second, &info) !=
245 it->first, DirectoryEntry::FILE, info.size, info.last_modified));
  /external/chromium_org/chrome/browser/
memory_details_mac.cc 148 ProcessMemoryInformation info; local
149 info.pid = *it;
150 info.process_type = content::PROCESS_TYPE_UNKNOWN;
158 if (process_info.GetProcInfo(info.pid, &proc_info)) {
169 info.product_name = version_info->product_name();
170 info.version = version_info->product_version();
172 info.product_name = process_data_[index].name;
173 info.version = base::string16();
176 // Memory info.
177 process_info.GetCommittedKBytesOfPID(info.pid, &info.committed)
208 ProcessMemoryInformation info; local
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
password_store_win.cc 52 // Holds info associated with in-flight GetIE7Login requests.
91 IE7PasswordInfo info; local
92 info.url_hash = ie7_password::GetUrlHash(UTF8ToWide(form.origin.spec()));
93 WebDataService::Handle handle = web_data_service_->GetIE7Login(info, this);
106 IE7PasswordInfo info = r->GetValue(); local
108 if (!info.encrypted_data.empty()) {
112 web_data_service_->RemoveIE7Login(info);
116 info.encrypted_data,
124 autofill->date_created = info.date_created;
  /external/chromium_org/chrome/browser/storage_monitor/
storage_monitor_chromeos.cc 46 // in |info|.
49 StorageInfo* info) {
50 DCHECK(info);
70 *info = StorageInfo(StorageInfo::MakeDeviceId(type, unique_id),
296 StorageInfo info; local
297 if (!GetDeviceInfo(mount_info, has_dcim, &info))
300 if (info.device_id().empty())
303 mount_map_.insert(std::make_pair(mount_info.mount_path, info));
305 receiver()->ProcessAttach(info);
  /external/chromium_org/chrome/common/extensions/api/input_ime/
input_components_handler.cc 38 InputComponents* info = static_cast<InputComponents*>( local
40 return info ? &info->input_components : NULL;
51 scoped_ptr<InputComponents> info(new InputComponents);
197 info->input_components.push_back(InputComponentInfo());
198 info->input_components.back().name = name_str;
199 info->input_components.back().type = type;
200 info->input_components.back().id = id_str;
201 info->input_components.back().description = description_str;
202 info->input_components.back().languages = languages
    [all...]
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
app_launch_info.cc 54 AppLaunchInfo* info = static_cast<AppLaunchInfo*>( local
56 return info ? *info : g_empty_app_launch_info.Get();
100 const AppLaunchInfo& info = GetAppLaunchInfo(extension); local
101 if (info.launch_local_path_.empty())
102 return info.launch_web_url_;
104 return extension->url().Resolve(info.launch_local_path_);
304 scoped_ptr<AppLaunchInfo> info(new AppLaunchInfo);
305 if (!info->Parse(extension, error))
307 extension->SetManifestData(keys::kLaunch, info.release())
    [all...]
externally_connectable.cc 64 scoped_ptr<ExternallyConnectableInfo> info = local
68 if (!info)
70 if (!info->matches.is_empty()) {
75 extension->SetManifestData(keys::kExternallyConnectable, info.release());
  /external/chromium_org/chrome/renderer/
chrome_content_renderer_client_unittest.cc 70 void AddContentTypeHandler(content::WebPluginInfo* info,
78 info->mime_types.push_back(mime_type_info);
125 WebPluginInfo info; local
128 "application/x-foo", info));
132 WebPluginInfo info; local
133 AddContentTypeHandler(&info, "application/x-foo", "www.foo.com");
136 "application/x-foo", info));
  /external/chromium_org/chrome/renderer/extensions/
event_bindings.cc 272 EventFilteringInfo info = local
277 event_name, info, context()->GetRenderView()->GetRoutingID());
290 EventFilteringInfo info; local
294 info.SetURL(GURL(*v8::String::Utf8Value(url_value)));
300 info.SetInstanceID(instance_id_value->IntegerValue());
306 info.SetServiceType(*v8::String::Utf8Value(service_type_value));
308 return info;
  /external/chromium_org/chrome/test/mini_installer_test/
installer_path_provider.cc 22 base::FileEnumerator::FileInfo info; member in struct:__anon7030::FilePathInfo
27 return a.info.GetLastModifiedTime() > b.info.GetLastModifiedTime();
43 entry.info = files.GetInfo();
  /external/chromium_org/chrome_frame/
function_stub_unittest.cc 123 MEMORY_BASIC_INFORMATION info = {}; local
124 EXPECT_NE(0u, ::VirtualQuery(stub_->code(), &info, sizeof(info)));
127 EXPECT_NE(0u, info.Protect & kExecutableMask);
urlmon_bind_status_callback.cc 374 base::win::ScopedComPtr<BindContextInfo> info; local
375 BindContextInfo::FromBindContext(bind_ctx_, info.Receive());
376 DCHECK(info);
377 if (info) {
378 info->SetToSwitch(data_sniffer_.cache_);
  /external/chromium_org/chrome_frame/test/
exception_barrier_unittest.cc 29 MEMORY_BASIC_INFORMATION info = { 0 }; local
30 // Note that we pass the address of the info struct just as a handy
32 ASSERT_NE(0u, ::VirtualQuery(&info, &info, sizeof(info)));
35 // We use the address of info as a lower bound, this assumes that if this
39 reinterpret_cast<EXCEPTION_REGISTRATION*>(&info);
43 reinterpret_cast<char*>(info.BaseAddress) + info.RegionSize);
63 ASSERT_NE(0u, ::VirtualQuery(curr->handler, &info, sizeof(info)))
    [all...]

Completed in 1717 milliseconds

<<21222324252627282930>>