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

<<21222324252627282930>>

  /external/chromium_org/chrome_frame/
urlmon_moniker.cc 140 base::win::ScopedComPtr<BindContextInfo> info; local
141 BindContextInfo::FromBindContext(bind_context, info.Receive());
142 DCHECK(info);
143 if (info && info->chrome_request()) {
208 base::win::ScopedComPtr<BindContextInfo> info; local
209 BindContextInfo::FromBindContext(bind_ctx, info.Receive());
210 DCHECK(info);
211 if (info) {
212 if (info->is_switching())
    [all...]
  /external/chromium_org/components/nacl/browser/
pnacl_translation_cache_unittest.cc 126 nacl::PnaclCacheInfo info; local
127 info.pexe_url = GURL("http://www.google.com");
128 info.abi_version = 0;
129 info.opt_level = 0;
131 base::Time::FromString(test_time.c_str(), &info.last_modified);
135 PnaclTranslationCache::GetKey(info));
137 info.pexe_url = GURL("http://www.google.com/?foo=bar");
140 PnaclTranslationCache::GetKey(info));
142 info.pexe_url = GURL("https://user:host@www.google.com:443/");
145 PnaclTranslationCache::GetKey(info));
    [all...]
  /external/chromium_org/components/policy/core/common/
config_dir_policy_loader.cc 95 base::PlatformFileInfo info; local
101 if (!base::GetFileInfo(path, &info) || !info.is_directory)
110 if (base::GetFileInfo(config_file, &info) && !info.is_directory)
111 last_modification = std::max(last_modification, info.last_modified);
  /external/chromium_org/content/browser/devtools/
devtools_netlog_observer.cc 96 ResourceInfo* info = GetResourceInfo(entry.source().id); local
97 if (!info)
114 info->request_headers.clear();
118 info->request_headers.push_back(std::make_pair(it.name(), it.value()));
120 info->request_headers_text = request_line + request_headers.ToString();
134 info->request_headers.clear();
138 info->request_headers.push_back(std::make_pair(it->first, it->second));
140 info->request_headers_text = "";
153 info->http_status_code = response_headers->response_code();
154 info->http_status_text = response_headers->GetStatusText()
    [all...]
  /external/chromium_org/content/browser/download/
download_resource_handler.cc 51 scoped_ptr<DownloadCreateInfo> info,
56 DownloadManager* download_manager = info->request_handle.GetDownloadManager();
65 download_manager->StartDownload(info.Pass(), stream.Pass(), started_cb);
136 scoped_ptr<DownloadCreateInfo> info(
153 info->download_id = download_id_;
154 info->url_chain = request()->url_chain();
155 info->referrer_url = GURL(request()->referrer());
156 info->mime_type = response->head.mime_type;
157 info->remote_address = request()->GetSocketAddress().host();
159 &info->content_disposition)
435 const ResourceRequestInfo* info = GetRequestInfo(); local
443 const ResourceRequestInfo* info = GetRequestInfo(); local
    [all...]
  /external/chromium_org/content/browser/gpu/
gpu_internals_ui.cc 154 base::DictionaryValue* info = new base::DictionaryValue(); local
155 info->Set("basic_info", basic_info);
168 info->Set("performance_info", perf_info);
173 info->Set("diagnostics", dx_info);
176 return info;
299 // Run callback immediately in case the info is ready and no update in the
333 // Get GPU Info.
344 // Send GPU Info to javascript.
  /external/chromium_org/content/browser/loader/
redirect_to_file_resource_handler.cc 177 const ResourceRequestInfo* info = GetRequestInfo(); local
179 info->GetChildID(), info->GetRequestID(), deletable_file_.get());
resource_request_info_impl.cc 33 ResourceRequestInfoImpl* info = local
56 info->AssociateWithRequest(request);
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_flash_file_message_filter.cc 136 base::PlatformFileInfo info; local
137 if (!base::GetPlatformFileInfo(file_handle, &info) || info.is_directory) {
212 base::PlatformFileInfo info; local
213 bool result = base::GetFileInfo(full_path, &info);
214 context->reply_msg = PpapiPluginMsg_FlashFile_QueryFileReply(info);
236 base::FileEnumerator::FileInfo info = enumerator.GetInfo(); local
238 info.GetName(),
239 info.IsDirectory()
pepper_internal_file_ref_backend.cc 232 ppapi::FileRefCreateInfo info; local
233 info.file_system_type = fs_type_;
234 info.file_system_plugin_resource = fs_host_->pp_resource();
237 info.internal_path = path;
238 info.display_name = ppapi::GetNameForInternalFilePath(path);
239 infos.push_back(info);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
MediaResourceGetter.java 77 NetworkInfo info = mConnectivityManager.getActiveNetworkInfo(); local
78 if (info == null) {
81 switch (info.getType()) {
  /external/chromium_org/content/renderer/
skia_benchmarking_extension.cc 92 " @returns [{ 'cmd': {String}, 'info': [String, ...] }, ...]"
256 SkTDArray<SkString*>* info = canvas.getCommandInfo(i); local
257 DCHECK(info);
259 v8::Local<v8::Array> v8_info = v8::Array::New(isolate, info->count());
260 for (int j = 0; j < info->count(); ++j) {
261 const SkString* info_str = (*info)[j];
266 cmd->Set(v8::String::NewFromUtf8(isolate, "info"), v8_info);
295 // Gather per-op timing info by drawing into a BenchmarkingCanvas.
  /external/chromium_org/content/test/net/
url_request_mock_http_job.cc 131 void URLRequestMockHTTPJob::GetResponseInfo(net::HttpResponseInfo* info) {
133 GetResponseInfoConst(info);
145 net::HttpResponseInfo* info) const {
160 info->headers = new net::HttpResponseHeaders(raw_headers);
164 net::HttpResponseInfo info; local
165 GetResponseInfoConst(&info);
166 return info.headers.get() && info.headers->GetMimeType(mime_type);
170 net::HttpResponseInfo info; local
171 GetResponseInfoConst(&info);
179 net::HttpResponseInfo info; local
    [all...]
url_request_slow_download_job.cc 228 void URLRequestSlowDownloadJob::GetResponseInfo(net::HttpResponseInfo* info) {
230 GetResponseInfoConst(info);
240 net::HttpResponseInfo* info) const {
265 info->headers = new net::HttpResponseHeaders(raw_headers);
269 net::HttpResponseInfo info; local
270 GetResponseInfoConst(&info);
271 return info.headers.get() && info.headers->GetMimeType(mime_type);
  /external/chromium_org/extensions/common/manifest_handlers/
background_info.cc 39 BackgroundInfo* info = static_cast<BackgroundInfo*>( local
41 if (!info)
43 return *info;
58 const BackgroundInfo& info = GetBackgroundInfo(extension); local
59 if (info.background_scripts_.empty())
60 return info.background_url_;
66 const BackgroundInfo& info = GetBackgroundInfo(extension); local
67 return !info.background_scripts_.empty();
244 scoped_ptr<BackgroundInfo> info(new BackgroundInfo);
245 if (!info->Parse(extension, error)
    [all...]
shared_module_info.cc 32 SharedModuleInfo* info = static_cast<SharedModuleInfo*>( local
34 if (!info)
36 return *info;
89 const SharedModuleInfo& info = GetSharedModuleInfo(extension); local
90 for (size_t i = 0; i < info.imports_.size(); i++) {
91 if (info.imports_[i].extension_id == other_id)
197 scoped_ptr<SharedModuleInfo> info(new SharedModuleInfo);
198 if (!info->Parse(extension, error))
200 extension->SetManifestData(kSharedModule, info.release());
  /external/chromium_org/gpu/command_buffer/client/
query_tracker.cc 32 bool QuerySyncManager::Alloc(QuerySyncManager::QueryInfo* info) {
33 DCHECK(info);
51 *info = free_queries_.front();
52 ++(info->bucket->used_query_count);
53 info->sync->Reset();
58 void QuerySyncManager::Free(const QuerySyncManager::QueryInfo& info) {
59 DCHECK_GT(info.bucket->used_query_count, 0u);
60 --(info.bucket->used_query_count);
61 free_queries_.push_back(info);
88 const QuerySyncManager::QueryInfo& info)
211 QuerySyncManager::QueryInfo info; local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
feature_info_unittest.cc 165 const FormatInfo& info = kFormatTypes[ii]; local
167 info_->GetTextureFormatValidator(info.format);
168 for (size_t jj = 0; jj < info.count; ++jj) {
169 EXPECT_TRUE(validator.IsValid(info.types[jj]));
218 const FormatInfo& info = kFormatTypes[ii]; local
220 info_->GetTextureFormatValidator(info.format);
221 for (size_t jj = 0; jj < info.count; ++jj) {
222 EXPECT_FALSE(validator.IsValid(info.types[jj]));
    [all...]
vertex_attrib_manager.cc 146 VertexAttrib& info = vertex_attribs_[index]; local
147 if (info.enabled() != enable) {
148 info.set_enabled(enable);
149 info.SetList(enable ? &enabled_vertex_attribs_ : &disabled_vertex_attribs_);
  /external/chromium_org/media/midi/
midi_manager_mac.cc 82 MIDIPortInfo info = GetPortInfoFromEndpoint(destination); local
83 AddOutputPort(info);
97 MIDIPortInfo info = GetPortInfoFromEndpoint(src); local
98 AddInputPort(info);
  /external/chromium_org/native_client_sdk/src/libraries/error_handling/
error_handling.c 146 EHStackInfo* info = (EHStackInfo*) arg; local
148 if (info) {
149 munmap(info->stack, info->size);
151 free(info);
212 // Create a TLS key for storing per thread stack info
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_html5fs.cc 145 PP_FileInfo info; local
147 fileref_resource_, &info, PP_BlockUntilComplete());
151 // Fill in known info here.
154 // Fill in the additional info from ppapi.
155 switch (info.type) {
166 stat->st_size = static_cast<off_t>(info.size);
167 stat->st_atime = info.last_access_time;
168 stat->st_mtime = info.last_modified_time;
169 stat->st_ctime = info.creation_time;
241 PP_FileInfo info; local
    [all...]
  /external/chromium_org/net/base/
upload_file_element_reader.cc 64 base::PlatformFileInfo info; local
65 if (!base::GetFileInfo(path, &info)) {
66 DLOG(WARNING) << "Failed to get file info of \"" << path.value() << "\"";
70 if (expected_modification_time.ToTimeT() != info.last_modified.ToTimeT()) {
upload_file_element_reader_unittest.cc 207 base::PlatformFileInfo info; local
208 ASSERT_TRUE(base::GetFileInfo(temp_file_path_, &info));
212 info.last_modified - base::TimeDelta::FromSeconds(1);
352 base::PlatformFileInfo info; local
353 ASSERT_TRUE(base::GetFileInfo(temp_file_path_, &info));
357 info.last_modified - base::TimeDelta::FromSeconds(1);
  /external/chromium_org/net/socket/
nss_ssl_util.cc 105 SSLCipherSuiteInfo info; local
106 if (SSL_GetCipherSuiteInfo(ssl_ciphers[i], &info,
107 sizeof(info)) == SECSuccess) {
108 bool enabled = info.effectiveKeyBits >= 80;
109 if (info.authAlgorithm == ssl_auth_ecdsa && disableECDSA)
115 if (info.symCipher == ssl_calg_camellia ||
116 info.symCipher == ssl_calg_seed ||
117 (info.symCipher == ssl_calg_3des && info.keaType != ssl_kea_rsa) ||
118 info.authAlgorithm == ssl_auth_dsa |
    [all...]

Completed in 1156 milliseconds

<<21222324252627282930>>