HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 1101 - 1125 of 2798) sorted by null

<<41424344454647484950>>

  /external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
file_browser_handler.cc 118 FileBrowserHandlerInfo* info = static_cast<FileBrowserHandlerInfo*>( local
120 if (info)
121 return &info->file_browser_handlers;
276 scoped_ptr<FileBrowserHandlerInfo> info(new FileBrowserHandlerInfo);
279 &info->file_browser_handlers,
284 extension->SetManifestData(keys::kFileBrowserHandlers, info.release());
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
content_scripts_handler.cc 335 ContentScriptsInfo* info = static_cast<ContentScriptsInfo*>( local
337 return info ? info->content_scripts
  /external/chromium_org/chrome/common/extensions/permissions/
permission_set_unittest.cc 52 PermissionsInfo* info = PermissionsInfo::GetInstance(); local
53 APIPermissionSet apis = info->GetAll();
56 EXPECT_EQ(i->id(), i->info()->id());
62 PermissionsInfo* info = PermissionsInfo::GetInstance(); local
63 EXPECT_EQ(APIPermission::kTab, info->GetByName("tabs")->id());
65 info->GetByName("management")->id());
66 EXPECT_FALSE(info->GetByName("alsdkfjasldkfj"));
71 PermissionsInfo* info = PermissionsInfo::GetInstance(); local
72 APIPermissionSet apis = info->GetAll();
80 EXPECT_EQ(count, info->get_permission_count())
105 PermissionsInfo* info = PermissionsInfo::GetInstance(); local
739 PermissionsInfo* info = PermissionsInfo::GetInstance(); local
    [all...]
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_connector.cc 403 const printing::PrinterBasicInfo& info) {
406 task.printer_info = info;
463 const printing::PrinterBasicInfo& info) {
466 if (IsSamePrinter(it->second->GetPrinterName(), info.printer_name)) {
476 info.printer_name.c_str(),
509 LOG(ERROR) << "CP_CONNECTOR: Failed to get printer info"
523 const printing::PrinterBasicInfo& info = pending_tasks_.front().printer_info; local
524 DCHECK(IsSamePrinter(info.printer_name, printer_name));
533 info.printer_name, mime_boundary, std::string(), &post_data);
535 info.printer_description, mime_boundary, std::string(), &post_data)
    [all...]
  /external/chromium_org/chrome/test/automation/
proxy_launcher.cc 58 base::FileEnumerator::FileInfo info = en.GetInfo(); local
59 if (info.IsDirectory()) {
413 // No default browser check, it would create an info-bar (if we are not the
  /external/chromium_org/cloud_print/gcp20/prototype/
privet_http_server.cc 48 return request == "/privet/info"/* ||
103 const net::HttpServerRequestInfo& info) {
104 VLOG(1) << "Processing HTTP request: " << info.path;
105 GURL url("http://host" + info.path);
107 if (!ValidateRequestMethod(connection_id, url.path(), info.method))
112 info.headers.find("x-privet-token");
113 if (iter == info.headers.end()) {
121 if (url.path() != "/privet/info" &&
132 ProcessHttpRequest(url, info.data, &response);
139 const net::HttpServerRequestInfo& info) {
207 DeviceInfo info; local
    [all...]
  /external/chromium_org/content/browser/dom_storage/
dom_storage_context_impl.cc 97 LocalStorageUsageInfo info; local
98 info.origin = DOMStorageArea::OriginFromDatabaseFileName(path);
101 info.data_size = find_info.GetSize();
102 info.last_modified = find_info.GetLastModifiedTime();
104 infos->push_back(info);
121 SessionStorageUsageInfo info; local
122 info.persistent_namespace_id = it->first;
123 info.origin = *origin_it;
124 infos->push_back(info);
  /external/chromium_org/content/browser/download/
save_file_manager.cc 137 SaveFileCreateInfo* info = new SaveFileCreateInfo(file_full_path, local
141 info->render_process_id = render_process_host_id;
142 info->render_view_id = render_view_id;
149 this, info));
211 // The IO thread created |info|, but the file thread (this method) uses it
212 // to create a SaveFile which will hold and finally destroy |info|. It will
213 // then passes |info| to the UI thread for reporting saving status.
214 void SaveFileManager::StartSave(SaveFileCreateInfo* info) {
216 DCHECK(info);
218 SaveFile* save_file = new SaveFile(info, false)
    [all...]
  /external/chromium_org/content/browser/loader/
async_resource_handler.cc 185 const ResourceRequestInfo* info = ResourceRequestInfo::ForRequest(request_); local
186 if (info->GetResourceType() == ResourceType::MAIN_FRAME && host_zoom_map) {
189 info->GetRouteID(),
buffered_resource_handler.cc 304 ResourceRequestInfoImpl* info = ResourceRequestInfoImpl::ForRequest(request_); local
311 info->GetChildID(),
312 info->GetRouteID()));
316 if (!info->allow_download())
346 info->set_is_download(true);
439 ResourceRequestInfoImpl* info = ResourceRequestInfoImpl::ForRequest(request_); local
444 info->GetChildID(), info->GetRouteID(), info->GetContext(),
resource_loader.cc 114 ResourceRequestInfoImpl* info = GetRequestInfo(); local
115 info->set_was_ignored_by_handler(true);
124 ResourceRequestInfoImpl* info = GetRequestInfo(); local
150 info->GetRequestID(), progress.position(), progress.size());
242 ResourceRequestInfoImpl* info = GetRequestInfo(); local
244 if (info->process_type() != PROCESS_TYPE_PLUGIN &&
246 CanRequestURL(info->GetChildID(), new_url)) {
267 info->GetRequestID(), new_url, response.get(), defer)) {
327 ResourceRequestInfoImpl* info = GetRequestInfo(); local
331 if (!info->GetAssociatedRenderView(&render_process_id, &render_view_id)
353 ResourceRequestInfoImpl* info = GetRequestInfo(); local
480 ResourceRequestInfoImpl* info = GetRequestInfo(); local
515 ResourceRequestInfoImpl* info = GetRequestInfo(); local
613 ResourceRequestInfoImpl* info = GetRequestInfo(); local
636 ResourceRequestInfoImpl* info = GetRequestInfo(); local
648 ResourceRequestInfoImpl* info = GetRequestInfo(); local
    [all...]
resource_scheduler_unittest.cc 145 ResourceRequestInfoImpl* info = new ResourceRequestInfoImpl( local
164 info->AssociateWithRequest(url_request.get());
193 const ResourceRequestInfoImpl* info = ResourceRequestInfoImpl::ForRequest( local
195 const GlobalRequestID& id = info->GetGlobalRequestID();
  /external/chromium_org/content/browser/net/
sqlite_persistent_cookie_store_unittest.cc 291 base::PlatformFileInfo info; local
292 ASSERT_TRUE(file_util::GetFileInfo(path, &info));
293 int64 base_size = info.size;
307 ASSERT_TRUE(file_util::GetFileInfo(path, &info));
308 ASSERT_GT(info.size, base_size);
  /external/chromium_org/content/browser/renderer_host/media/
audio_input_renderer_host.cc 231 const StreamDeviceInfo* info = media_stream_manager_-> local
233 if (!info) {
240 device_id = info->device.id;
audio_renderer_host.cc 306 const StreamDeviceInfo* info = media_stream_manager_-> local
308 if (!info) {
315 input_device_id = info->device.id;
  /external/chromium_org/content/browser/
storage_partition_impl_map.cc 109 const ResourceRequestInfoImpl* info = variable
111 if (!info)
113 return info->requested_blob_data();
  /external/chromium_org/content/browser/worker_host/
worker_service_impl.cc 151 WorkerDocumentSet::DocumentInfoSet::const_iterator info = local
154 for (; info != first_instance->worker_document_set()->documents().end();
155 ++info) {
157 info->render_process_id(), info->render_view_id());
429 // instance but it does not contain our filter info), then it means the
576 WorkerDocumentSet::DocumentInfoSet::const_iterator info =
578 *render_process_id = info->render_process_id();
579 *render_view_id = info->render_view_id();
614 WorkerService::WorkerInfo info; local
    [all...]
  /external/chromium_org/content/common/gpu/client/
gpu_channel_host.cc 295 GpuListenerInfo info; local
296 info.listener = listener;
297 info.loop = loop;
298 listeners_[route_id] = info;
319 const GpuListenerInfo& info = it->second; local
320 info.loop->PostTask(
324 info.listener,
345 const GpuListenerInfo& info = it->second; local
346 info.loop->PostTask(
348 base::Bind(&IPC::Listener::OnChannelError, info.listener))
    [all...]
  /external/chromium_org/content/renderer/media/android/
audio_decoder_android.cc 254 // The fmt chunk has basic info about the format of the audio
524 struct media::WebAudioMediaCodecInfo info; local
526 DVLOG(1) << "Reading audio file info from fd " << input_fd;
527 ssize_t nread = HANDLE_EINTR(read(input_fd, &info, sizeof(info)));
529 << " 0: number of channels = " << info.channel_count << "\n"
530 << " 1: sample rate = " << info.sample_rate << "\n"
531 << " 2: number of frames = " << info.number_of_frames << "\n";
533 if (nread != sizeof(info))
536 unsigned number_of_channels = info.channel_count
    [all...]
  /external/chromium_org/content/renderer/media/
peer_connection_tracker.cc 266 PeerConnectionInfo info; local
268 info.lid = GetNextLocalID();
269 info.servers = SerializeServers(servers);
270 info.constraints = SerializeMediaConstraints(constraints);
271 info.url = frame->document().url().spec();
273 new PeerConnectionTrackerHost_AddPeerConnection(info));
277 peer_connection_id_map_[pc_handler] = info.lid;
  /external/chromium_org/content/renderer/pepper/
pepper_video_capture_host.cc 160 PP_VideoCaptureDeviceInfo_Dev info = { local
168 int uv_width = info.width / 2;
169 int uv_height = info.height / 2;
170 size_t size = info.width * info.height + 2 * uv_width * uv_height;
246 info, buffer_host_resources, size)));
ppb_file_ref_impl.cc 101 PP_FileInfo* info) {
102 DCHECK(info);
103 ppapi::PlatformFileInfoToPepperFileInfo(file_info, file_system_type, info);
109 linked_ptr<PP_FileInfo> info,
126 file_info, PP_FILESYSTEMTYPE_EXTERNAL, info.get());
132 linked_ptr<PP_FileInfo> info,
150 &GetFileInfoCallback, task_runner, file, info, callback))) {
159 linked_ptr<PP_FileInfo> info,
165 PlatformFileInfoToPPFileInfo(file_info, file_system_type, info.get());
217 PPB_FileRef_Impl::PPB_FileRef_Impl(const PPB_FileRef_CreateInfo& info,
289 PPB_FileRef_CreateInfo info; local
    [all...]
quota_file_io_unittest.cc 412 base::PlatformFileInfo info; local
413 EXPECT_TRUE(base::GetPlatformFileInfo(file_, &info));
414 return info.size;
  /external/chromium_org/gpu/command_buffer/client/
program_info_manager.cc 196 // Updates the program info after a successful link.
209 // Uniform info by index.
246 const VertexAttrib& info = attrib_infos_[ii]; local
247 if (info.name == name) {
248 return info.location;
264 const UniformInfo& info = uniform_infos_[ii]; local
265 if (info.name == name ||
266 (info.is_array &&
267 info.name.compare(0, info.name.size() - 3, name) == 0))
389 Program* info = &it->second; local
410 Program* info = GetProgramInfo(gl, program); local
420 Program* info = GetProgramInfo(gl, program); local
430 Program* info = GetProgramInfo(gl, program); local
442 Program* info = GetProgramInfo(gl, program); local
477 Program* info = GetProgramInfo(gl, program); local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
common_decoder.cc 114 // A struct to hold info about each command.
142 const CommandInfo& info = g_command_info[command]; local
143 unsigned int info_arg_count = static_cast<unsigned int>(info.arg_count);
144 if ((info.arg_flags == cmd::kFixed && arg_count == info_arg_count) ||
145 (info.arg_flags == cmd::kAtLeastN && arg_count >= info_arg_count)) {

Completed in 860 milliseconds

<<41424344454647484950>>