/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/ |
BCDHPublicKey.java | 32 private transient SubjectPublicKeyInfo info; field in class:BCDHPublicKey 64 SubjectPublicKeyInfo info) 66 this.info = info; 71 derY = (ASN1Integer)info.parsePublicKey(); 75 throw new IllegalArgumentException("invalid info structure in DH public key"); 80 ASN1Sequence seq = ASN1Sequence.getInstance(info.getAlgorithm().getParameters()); 81 ASN1ObjectIdentifier id = info.getAlgorithm().getAlgorithm(); 121 if (info != null) 123 return KeyUtil.getEncodedSubjectPublicKeyInfo(info); [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
BouncyCastleProvider.java | 52 private static String info = "BouncyCastle Security Provider v1.48"; field in class:BouncyCastleProvider 122 super(PROVIDER_NAME, 1.48, info); [all...] |
JCEDHPrivateKey.java | 37 private PrivateKeyInfo info; field in class:JCEDHPrivateKey 60 PrivateKeyInfo info) 63 ASN1Sequence seq = ASN1Sequence.getInstance(info.getAlgorithmId().getParameters()); 64 DERInteger derX = DERInteger.getInstance(info.parsePrivateKey()); 65 DERObjectIdentifier id = info.getAlgorithmId().getAlgorithm(); 67 this.info = info; 127 if (info != null) 129 return info.getEncoded(ASN1Encoding.DER); 132 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter (…) local [all...] |
JCEDHPublicKey.java | 31 private SubjectPublicKeyInfo info; field in class:JCEDHPublicKey 63 SubjectPublicKeyInfo info) 65 this.info = info; 70 derY = (DERInteger)info.parsePublicKey(); 74 throw new IllegalArgumentException("invalid info structure in DH public key"); 79 ASN1Sequence seq = ASN1Sequence.getInstance(info.getAlgorithmId().getParameters()); 80 DERObjectIdentifier id = info.getAlgorithmId().getAlgorithm(); 120 if (info != null) 122 return KeyUtil.getEncodedSubjectPublicKeyInfo(info); [all...] |
JDKDSAPrivateKey.java | 56 PrivateKeyInfo info) 59 DSAParameter params = DSAParameter.getInstance(info.getPrivateKeyAlgorithm().getParameters()); 60 DERInteger derX = ASN1Integer.getInstance(info.parsePrivateKey()); 98 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG())), new DERInteger(getX())); local 100 return info.getEncoded(ASN1Encoding.DER);
|
/external/chromium/base/ |
platform_file_unittest.cc | 263 // Get info for a newly created file. 264 base::PlatformFileInfo info; local 265 EXPECT_TRUE(base::GetPlatformFileInfo(file, &info)); 270 EXPECT_EQ(0, info.size); 271 EXPECT_FALSE(info.is_directory); 272 EXPECT_FALSE(info.is_symbolic_link); 273 EXPECT_LE(info.last_accessed.ToInternalValue(), now.ToInternalValue()); 274 EXPECT_LE(info.last_modified.ToInternalValue(), now.ToInternalValue()); 275 EXPECT_LE(info.creation_time.ToInternalValue(), now.ToInternalValue()); 276 base::Time creation_time = info.creation_time [all...] |
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_popup_view_gtk_unittest.cc | 134 RunInfo info = RunInfoForAttrType(location, local 137 return info.length_; 143 RunInfo info = RunInfoForAttrType(location, local 147 return info.attr_ && pango_attribute_equal(info.attr_, attribute);
|
history_quick_provider.cc | 124 const history::URLRow& info = history_match.url_info; local 141 AutocompleteMatch match(this, score, !!info.visit_count(), 146 match.destination_url = info.url(); 153 AutocompleteInput::FormattedStringWithEquivalentMeaning(info.url(), 154 net::FormatUrl(info.url(), languages_, net::kFormatUrlOmitAll, 165 net::FormatUrlWithOffsets(info.url(), languages_, net::kFormatUrlOmitAll, 173 match.description = info.title();
|
/external/chromium/chrome/browser/ |
background_mode_manager.cc | 136 Details<UnloadedExtensionInfo> info = local 142 if (info->already_disabled)
|
/external/chromium/chrome/browser/debugger/ |
devtools_netlog_observer.cc | 104 ResourceInfo* info = GetResourceInfo(source.id); local 105 if (!info) 114 info->request_headers.push_back(std::make_pair(it.name(), 122 info->http_status_code = response_headers.response_code(); 123 info->http_status_text = response_headers.GetStatusText(); 127 info->response_headers.push_back(std::make_pair(name, value));
|
/external/chromium/chrome/browser/download/ |
download_file_unittest.cc | 58 DownloadCreateInfo info; local 59 info.download_id = kDummyDownloadId + offset; 60 info.child_id = kDummyChildId; 61 info.request_id = kDummyRequestId - offset; 62 info.save_info.file_stream = file_stream_; 63 file->reset(new DownloadFile(&info, download_manager_));
|
/external/chromium/chrome/browser/first_run/ |
try_chrome_dialog_view.cc | 220 MONITORINFO info = {sizeof(info)}; local 221 if (!GetMonitorInfoW(monitor, &info)) { 227 int left = is_RTL ? info.rcWork.left : info.rcWork.right - width; 228 int top = info.rcWork.bottom - height;
|
/external/chromium/chrome/browser/password_manager/ |
password_store_win.cc | 98 IE7PasswordInfo info; local 99 info.url_hash = ie7_password::GetUrlHash(UTF8ToWide(url.spec())); 100 WebDataService::Handle handle = web_data_service_->GetIE7Login(info, this); 111 IE7PasswordInfo info = r->GetValue(); local 113 if (!info.encrypted_data.empty()) { 117 web_data_service_->RemoveIE7Login(info); 121 if (!ie7_password::DecryptPassword(url, info.encrypted_data, 131 autofill->date_created = info.date_created;
|
/external/chromium/chrome/browser/sync/ |
sync_ui_util.cc | 182 // Returns the status info for use on the new tab page, where we want slightly 425 syncable::AutofillMigrationDebugInfo info = local 430 info.bookmarks_added_during_migration); 433 info.autofill_entries_added_during_migration); 436 info.autofill_profile_added_during_migration); 440 val->SetString("stat_value", ConstructTime(info.autofill_migration_time));
|
/external/chromium/chrome/common/ |
chrome_content_client.cc | 97 PepperPluginInfo info; local 98 info.is_internal = true; 99 info.path = FilePath(FILE_PATH_LITERAL("internal-chromoting")); 103 info.mime_types.push_back(remoting_mime_type); 104 info.internal_entry_points.get_interface = remoting::PPP_GetInterface; 105 info.internal_entry_points.initialize_module = 107 info.internal_entry_points.shutdown_module = remoting::PPP_ShutdownModule; 109 plugins->push_back(info);
|
/external/clang/lib/ARCMigrate/ |
TransProtectedScope.cpp | 144 CaseInfo &info = Cases[i]; local 145 if (isInRange(Diag.getLocation(), info.Range)) { 147 if (info.State == CaseInfo::St_Unchecked) 148 tryFixing(info); 149 assert(info.State != CaseInfo::St_Unchecked); 151 if (info.State == CaseInfo::St_Fixed) { 162 void tryFixing(CaseInfo &info) { 163 assert(info.State == CaseInfo::St_Unchecked); 164 if (hasVarReferencedOutside(info)) { 165 info.State = CaseInfo::St_CannotFix [all...] |
/external/clang/utils/TableGen/ |
ClangSACheckersEmitter.cpp | 113 GroupInfo &info = groupInfoByName[fullName]; local 114 info.Hidden = isHidden(*R); 115 recordGroupMap[R] = &info; 125 GroupInfo &info = groupInfoByName[name]; local 126 recordGroupMap[R] = &info; 143 GroupInfo &info = groupInfoByName[fullName]; local 144 info.Hidden = R->getValueAsBit("Hidden"); 145 recordGroupMap[R] = &info; 146 info.Checkers.insert(R);
|
/external/dhcpcd/ |
common.c | 169 static struct mach_timebase_info info = { 0, 0 }; local 175 if (mach_timebase_info(&info) == KERN_SUCCESS) { 176 factor = (double)info.numer / (double)info.denom; 182 if ((info.denom != 1 || info.numer != 1) && factor != 0.0)
|
/external/doclava/src/com/google/doclava/ |
AnnotationValueInfo.java | 77 for (AnnotationValueInfo info : values) { 78 str.append(info.valueString()); 79 if (info != values.get(values.size()-1)) {
|
/external/e2fsprogs/e2fsck/ |
mtrace.h | 135 } info; member in struct:__anon7211::__anon7212 160 /* Limit of valid info table indices. */
|
/external/e2fsprogs/ext2ed/ |
dir_com.c | 82 struct struct_file_info search_dir_entries (int (*action) (struct struct_file_info *info),int *status) 100 struct struct_file_info info; /* Temporary variables used to */ local 104 info=first_file_info; /* Start from the first entry - Read it */ 105 low_read (info.buffer,file_system_info.block_size,info.global_block_offset); 106 dir_entry_ptr=(struct ext2_dir_entry_2 *) (info.buffer+info.dir_entry_offset); 108 while (info.file_offset < info.file_length) { /* While we haven't reached the end */ 110 *status=return_code=action (&info); /* Call the client function to test * 220 struct struct_file_info info; local 346 struct struct_file_info info; local [all...] |
/external/eigen/Eigen/src/Eigenvalues/ |
ComplexEigenSolver.h | 217 ComputationInfo info() const function in class:Eigen::ComplexEigenSolver 220 return m_schur.info(); 247 if(m_schur.info() == Success)
|
/external/eigen/Eigen/src/PardisoSupport/ |
PardisoSupport.h | 136 ComputationInfo info() const function in class:Eigen::PardisoImpl
|
/external/eigen/bench/btl/libs/BLAS/ |
blas_interface_impl.hh | 70 int info = 0; local 71 BLAS_FUNC(potrf)(&uplo, &N, C, &N, &info); 72 if(info!=0) std::cerr << "potrf_ error " << info << "\n"; local 79 int info = 0; local 81 BLAS_FUNC(getrf)(&N, &N, C, &N, ipiv, &info); 82 if(info!=0) std::cerr << "getrf_ error " << info << "\n"; local 105 int info = 0; local 108 BLAS_FUNC(getc2)(&N, C, &N, ipiv, jpiv, &info); 119 int info = 0; local 136 int info = 0; local [all...] |
/external/eigen/blas/ |
level2_impl.h | 37 int info = 0; local 38 if(OP(*opa)==INVALID) info = 1; 39 else if(*m<0) info = 2; 40 else if(*n<0) info = 3; 41 else if(*lda<std::max(1,*m)) info = 6; 42 else if(*incb==0) info = 8; 43 else if(*incc==0) info = 11; 44 if(info) 45 return xerbla_(SCALAR_SUFFIX_UP"GEMV ",&info,6); 106 int info = 0 local 161 int info = 0; local 207 int info = 0; local 363 int info = 0; local 433 int info = 0; local [all...] |