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

<<41424344454647484950>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEECPublicKey.java 185 SubjectPublicKeyInfo info)
187 populateFromPubKeyInfo(info);
190 private void populateFromPubKeyInfo(SubjectPublicKeyInfo info)
193 // if (info.getAlgorithmId().getObjectId().equals(CryptoProObjectIdentifiers.gostR3410_2001))
195 // DERBitString bits = info.getPublicKeyData();
222 // gostParams = new GOST3410PublicKeyAlgParameters((ASN1Sequence)info.getAlgorithmId().getParameters());
243 X962Parameters params = new X962Parameters((ASN1Primitive)info.getAlgorithmId().getParameters());
285 DERBitString bits = info.getPublicKeyData();
328 SubjectPublicKeyInfo info; local
369 // info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(CryptoProObjectIdentifiers.gostR3410_2001, para (…)
    [all...]
  /external/chromium/base/
file_util.cc 188 base::PlatformFileInfo info; local
189 if (!GetFileInfo(file_path, &info))
191 *file_size = info.size;
281 FileEnumerator::FindInfo info; local
282 file_iter.GetFindInfo(&info);
284 LARGE_INTEGER li = { info.nFileSizeLow, info.nFileSizeHigh };
287 running_size += info.stat.st_size;
299 FileEnumerator::FindInfo info; local
300 file_iter.GetFindInfo(&info);
    [all...]
  /external/chromium/chrome/browser/autocomplete/
history_url_provider.cc 372 history::URLRow info; local
374 if (!db->GetRowForURL(match->destination_url, &info)) {
383 // |info| corresponds to the right URL.
384 info = history::URLRow(match->destination_url);
388 match->description = info.title();
390 info.title(),
392 if (!info.typed_count()) {
408 EnsureMatchPresent(info, string16::npos, false, matches, true);
513 history::URLRow info(search_base);
527 min_typed_count, can_add_search_base_to_matches, &info)) {
777 const history::URLRow& info = history_match.url_info; local
    [all...]
  /external/chromium/chrome/browser/
crash_handler_host_linux.cc 44 void CrashDumpTask(CrashHandlerHostLinux* handler, BreakpadInfo* info) {
48 HandleCrashDump(*info);
49 delete[] info->filename;
50 delete[] info->process_type;
51 delete[] info->crash_url;
52 delete[] info->guid;
53 delete[] info->distro;
54 delete info;
289 BreakpadInfo* info = new BreakpadInfo; local
291 info->process_type_length = process_type_.length()
    [all...]
memory_details.cc 92 ProcessMemoryInformation info; local
93 info.pid = base::GetProcId(iter->handle());
94 if (!info.pid)
97 info.type = iter->type();
98 info.renderer_type = iter->renderer_type();
99 info.titles.push_back(WideToUTF16Hack(iter->name()));
100 child_info.push_back(info);
  /external/chromium/chrome/browser/download/
save_file_manager.cc 146 SaveFileCreateInfo* info = new SaveFileCreateInfo(file_full_path, local
150 info->render_process_id = render_process_host_id;
151 info->render_view_id = render_view_id;
158 this, &SaveFileManager::OnRequireSaveJobFromOtherSource, info));
221 // The IO thread created |info|, but the file thread (this method) uses it
222 // to create a SaveFile which will hold and finally destroy |info|. It will
223 // then passes |info| to the UI thread for reporting saving status.
224 void SaveFileManager::StartSave(SaveFileCreateInfo* info) {
226 DCHECK(info);
227 SaveFile* save_file = new SaveFile(info);
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_management_api.cc 61 DictionaryValue* info = new DictionaryValue(); local
62 info->SetString(kIdKey, extension.id());
63 info->SetBoolean(kIsAppKey, extension.is_app());
64 info->SetString(kNameKey, extension.name());
65 info->SetBoolean(kEnabledKey, enabled);
66 info->SetBoolean(kMayDisableKey,
68 info->SetString(kVersionKey, extension.VersionString());
69 info->SetString(kDescriptionKey, extension.description());
70 info->SetString(kOptionsUrlKey,
72 info->SetString(kHomepageURLKey
    [all...]
extension_menu_manager_unittest.cc 465 DictionaryValue* info; local
466 ASSERT_TRUE(list->GetDictionary(0, &info));
469 ASSERT_TRUE(info->GetInteger("menuItemId", &tmp_id));
473 ASSERT_TRUE(info->GetString("mediaType", &tmp));
475 ASSERT_TRUE(info->GetString("srcUrl", &tmp));
477 ASSERT_TRUE(info->GetString("pageUrl", &tmp));
481 ASSERT_TRUE(info->GetString("selectionText", &tmp16));
485 ASSERT_TRUE(info->GetBoolean("editable", &bool_tmp));
  /external/chromium/chrome/browser/history/
text_database_manager.cc 175 // Delete any existing page info.
180 // Just save this info for later. We will save it when it expires or when all
221 PageInfo& info = found->second; local
222 if (info.has_body()) {
223 // This info is complete, write to the database.
224 AddPageData(url, info.url_id(), info.visit_id(), info.visit_time(),
225 title, info.body());
230 info.set_title(title)
257 PageInfo& info = found->second; local
    [all...]
url_database.cc 85 bool URLDatabase::GetURLRow(URLID url_id, URLRow* info) {
97 FillURLRow(statement, info);
110 URLRow info; local
111 FillURLRow(statement, &info);
112 urls->push_back(info);
117 URLID URLDatabase::GetRowForURL(const GURL& url, history::URLRow* info) {
128 if (info)
129 FillURLRow(statement, info);
134 const history::URLRow& info) {
142 statement.BindString16(0, info.title())
334 history::URLRow info; local
    [all...]
  /external/chromium/chrome/browser/net/
passive_log_collector.cc 203 SourceInfo& info = it->second; local
204 Action result = DoAddEntry(entry, &info);
210 info.is_alive = false;
211 if (info.reference_count == 0) {
214 AddToDeletionQueue(info.source_id);
217 DeleteSourceInfo(info.source_id);
233 LOG(WARNING) << "Tried to delete info for nonexistent source";
261 const SourceInfo& info = it->second; local
262 out->insert(out->end(), info.entries.begin(), info.entries.end())
308 SourceInfo& info = it->second; local
    [all...]
  /external/chromium/chrome/browser/profiles/
profile_manager.cc 229 ProfileInfo* info = iter->second.get(); local
230 if (info->created) {
232 observer->OnProfileCreated(info->profile.get());
235 info->observers.push_back(observer);
239 ProfileInfo* info = local
242 info->observers.push_back(observer);
279 ProfileInfo* info = new ProfileInfo(profile, created); local
281 (profiles_info_.insert(std::make_pair(profile->GetPath(), info))).first;
282 return info;
376 ProfileInfo* info = iter->second.get() local
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
client_side_detection_service.cc 290 ClientReportInfo* info = new ClientReportInfo; local
291 info->callback.swap(cb); // takes ownership of the callback.
292 info->phishing_url = GURL(request->url());
293 client_phishing_reports_[fetcher] = info;
343 scoped_ptr<ClientReportInfo> info(client_phishing_reports_[source]);
347 cache_[info->phishing_url] =
349 info->callback->Run(info->phishing_url, response.phishy());
352 << info->phishing_url << " status: " << status.status() << " "
354 info->callback->Run(info->phishing_url, false)
    [all...]
  /external/chromium/chrome/browser/ui/login/
login_prompt.cc 38 ResourceDispatcherHostRequestInfo* info = local
40 if (!info)
43 info->set_login_handler(NULL);
46 // Get the signon_realm under which this auth info should be stored.
85 DCHECK(auth_info_) << "LoginHandler constructed with NULL auth info";
232 // Only handle notification for the identical auth info.
462 // Info about who/where/what is asking for authentication.
login_prompt_browsertest.cc 59 const AuthInfo& info = i->second; local
60 handler->SetAuth(WideToUTF16Hack(info.username_),
61 WideToUTF16Hack(info.password_));
351 LOG(INFO) <<
357 LOG(INFO) << "Waiting for initial AUTH_NEEDED";
371 LOG(INFO) << "Waiting for initial AUTH_SUPPLIED";
377 LOG(INFO) << "Waiting for secondary AUTH_NEEDED";
393 LOG(INFO) << "Waiting for secondary AUTH_SUPPLIED";
398 LOG(INFO) << "Waiting for additional AUTH_NEEDED";
409 LOG(INFO) << "Waiting for LOAD_STOP"
    [all...]
  /external/chromium/chrome/browser/ui/views/
about_ipc_dialog.cc 167 NMLISTVIEW* info = reinterpret_cast<NM_LISTVIEW*>(lparam); local
168 if (wparam == IDC_Messages && info->hdr.code == LVN_ITEMCHANGED) {
169 if (info->uChanged & LVIF_STATE) {
170 bool checked = (info->uNewState >> 12) == 2;
171 OnCheck(static_cast<int>(info->lParam), checked);
accessibility_event_router_views_unittest.cc 113 const AccessibilityControlInfo* info = local
116 last_control_name_ = info->name();
page_info_bubble_view.cc 106 // info link in that case.
147 PageInfoModel::SectionInfo info = model_.GetSectionInfo(i); local
149 const SkBitmap* icon = *model_.GetIconImage(info.icon_id);
150 layout->AddView(new Section(this, info, icon, cert_id_ > 0));
174 PageInfoModel::SectionInfo info = model_.GetSectionInfo(i); local
175 const SkBitmap* icon = *model_.GetIconImage(info.icon_id);
176 Section section(this, info, icon, cert_id_ > 0);
231 // We want to make sure the info bubble closes once the link is activated. So
  /external/chromium/net/base/
file_stream_posix.cc 355 struct stat info; local
356 if (fstat(file_, &info) != 0)
359 int64 size = static_cast<int64>(info.st_size);
  /external/chromium/net/disk_cache/
eviction.cc 73 // We grab a bunch of info from the backend to make the code a little cleaner
272 EntryStore* info = entry->entry()->Data(); local
273 DCHECK(ENTRY_NORMAL == info->state);
276 info->state = ENTRY_EVICTED;
375 EntryStore* info = entry->entry()->Data(); local
376 DCHECK(ENTRY_NORMAL == info->state);
378 if (info->reuse_count < kint32max) {
379 info->reuse_count++;
383 if (1 == info->reuse_count) {
387 } else if (kHighUse == info->reuse_count)
396 EntryStore* info = entry->entry()->Data(); local
425 EntryStore* info = entry->entry()->Data(); local
450 EntryStore* info = entry->entry()->Data(); local
    [all...]
  /external/chromium/net/proxy/
proxy_service_unittest.cc 125 ProxyInfo info; local
128 int rv = service->ResolveProxy(url, &info, &callback, NULL, log.bound());
132 EXPECT_TRUE(info.is_direct());
159 ProxyInfo info; local
163 int rv = service->ResolveProxy(url, &info, &callback, NULL, log.bound());
178 EXPECT_FALSE(info.is_direct());
179 EXPECT_EQ("foopy:80", info.proxy_server().ToURI());
209 ProxyInfo info; local
211 int rv = service->ResolveProxy(url, &info, &callback, NULL, BoundNetLog());
237 ProxyInfo info; local
295 ProxyInfo info; local
361 ProxyInfo info; local
415 ProxyInfo info; local
505 ProxyInfo info; local
568 ProxyInfo info; local
661 ProxyInfo info; local
736 ProxyInfo info[2]; local
769 ProxyInfo info; local
781 ProxyInfo info; local
793 ProxyInfo info; local
806 ProxyInfo info; local
829 ProxyInfo info; local
841 ProxyInfo info; local
853 ProxyInfo info; local
865 ProxyInfo info; local
1501 ProxyInfo info; local
1521 ProxyInfo info; local
    [all...]
  /external/chromium/net/tools/fetch/
http_listen_socket.cc 125 HttpServerRequestInfo* info = new HttpServerRequestInfo(); local
139 info->method = buffer;
143 info->url = GURL(buffer);
158 DCHECK(info->headers.find(header_name) == info->headers.end());
159 info->headers[header_name] = header_value;
176 return info;
178 delete info;
184 delete info;
222 void HttpListenSocket::Respond(HttpServerResponseInfo* info,
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
thread.cc 322 THREADNAME_INFO info; local
323 info.dwType = 0x1000;
324 info.szName = szThreadName;
325 info.dwThreadID = dwThreadID;
326 info.dwFlags = 0;
329 RaiseException(MSDEV_SET_THREAD_NAME, 0, sizeof(info) / sizeof(DWORD),
330 reinterpret_cast<DWORD*>(&info));
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags2man.py 86 def info(self, msg): print msg member in class:Logging
183 self.date = time.localtime(time.time()) # default date info
199 logging.info('Running: %s %s </dev/null 2>&1'
305 logging.error('Flag info, but no current flag "%s"' % line)
319 logging.info('Extra: %s' % line)
360 logging.info('Extra: %s' % line)
407 logging.info('Extra: %s' % line)
443 self.info = proginfo
472 logging.info('Writing to stdout')
475 self.file_path = '%s.1' % os.path.join(self.dirname, self.info.name
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContentsClientCallbackHelper.java 108 DownloadInfo info = (DownloadInfo) msg.obj; local
109 mContentsClient.onDownloadStart(info.mUrl, info.mUserAgent,
110 info.mContentDisposition, info.mMimeType, info.mContentLength);
114 LoginRequestInfo info = (LoginRequestInfo) msg.obj; local
115 mContentsClient.onReceivedLoginRequest(info.mRealm, info.mAccount, info.mArgs)
119 OnReceivedErrorInfo info = (OnReceivedErrorInfo) msg.obj; local
164 DownloadInfo info = new DownloadInfo(url, userAgent, contentDisposition, mimeType, local
170 LoginRequestInfo info = new LoginRequestInfo(realm, account, args); local
175 OnReceivedErrorInfo info = new OnReceivedErrorInfo(errorCode, description, failingUrl); local
    [all...]

Completed in 684 milliseconds

<<41424344454647484950>>