/external/openssh/ |
dns.c | 180 struct rrsetinfo *fingerprints = NULL; local 205 DNS_RDATATYPE_SSHFP, 0, &fingerprints); 215 if (fingerprints->rri_flags & RRSET_VALIDATED) { 217 debug("found %d secure fingerprints in DNS", 218 fingerprints->rri_nrdatas); 220 debug("found %d insecure fingerprints in DNS", 221 fingerprints->rri_nrdatas); 229 freerrset(fingerprints); 234 if (fingerprints->rri_nrdatas) 237 for (counter = 0; counter < fingerprints->rri_nrdatas; counter++) [all...] |
/external/chromium/chrome/common/ |
visitedlink_common.h | 31 // fingerprints. Both the master and the slave inherit from this, and add their 48 typedef std::vector<Fingerprint> Fingerprints; 76 VisitedLinkCommon::Fingerprint** fingerprints) { 78 *fingerprints = hash_table_;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/ |
UsbDebuggingActivity.java | 59 String fingerprints = intent.getStringExtra("fingerprints"); local 62 if (fingerprints == null || mKey == null) { 70 ap.mMessage = getString(R.string.usb_debugging_message, fingerprints);
|
/frameworks/base/services/java/com/android/server/usb/ |
UsbDebuggingManager.java | 191 String fingerprints = getFingerprints(key); local 193 if (!fingerprints.equals(mFingerprints)) { 194 Slog.e(TAG, "Fingerprints do not match. Got " 195 + fingerprints + ", expected " + mFingerprints); 245 private void showConfirmationDialog(String key, String fingerprints) { 252 dialogIntent.putExtra("fingerprints", fingerprints);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
ComponentsView.java | 78 * <li>Filter non-fingerprints: hide the scenarios which are not in the fingerprints</li> 163 // When all scenarios are displayed, then set fingerprints one in bold. 167 // Action fingerprints = ComponentsView.this.filterNonFingerprints; 168 // if (fingerprints != null && !fingerprints.isChecked()) { 169 boolean fingerprints = ComponentsView.this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS, IPerformancesConstants.DEFAULT_FILTER_ADVANCED_SCENARIOS); 170 if (!fingerprints) { 254 * Filter non fingerprints scenarios action run. 256 void filterAdvancedScenarios(boolean fingerprints, boolean updatePreference) [all...] |
ConfigTab.java | 136 boolean fingerprints = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS, IPerformancesConstants.DEFAULT_FILTER_ADVANCED_SCENARIOS); 137 String [] columnHeaders = getLayoutDataFieldNames(fingerprints); 146 fillTableLines(fingerprints); 311 private void fillTableLines(boolean fingerprints) { 319 List differences = this.results.getConfigNumbers(this.configName, fingerprints); 370 if (milestoneName != null || (!fingerprints && scenarioResultsElement.hasSummary())) { 528 private String[] getLayoutDataFieldNames(boolean fingerprints) { 532 List labels = this.results.getScenariosLabels(fingerprints);
|
BuildsView.java | 111 // Ask for fingerprints 112 final boolean fingerprints = MessageDialog.openQuestion(BuildsView.this.shell, getTitleToolTip(), "Generate only fingerprints?"); 117 generate(i, baselineName, fingerprints); 124 private void generate(int i, final String baselineName, final boolean fingerprints) { 142 fingerprints,
|
/external/chromium/chrome/browser/visitedlink/ |
visitedlink_master.cc | 156 // The builder will store the fingerprints for those URLs, and then marshalls 159 // fingerprints. 200 // Stores the fingerprints we computed on the background thread. 201 VisitedLinkCommon::Fingerprints fingerprints_; 371 // Compute the deleted URLs' fingerprints and delete them 421 const std::set<Fingerprint>& fingerprints) { 422 bool bulk_write = (fingerprints.size() > kBigDeleteThreshold); 425 for (std::set<Fingerprint>::const_iterator i = fingerprints.begin(); 426 i != fingerprints.end(); ++i) 429 // These deleted fingerprints may make us shrink the table [all...] |
visitedlink_master.h | 178 // and the number of nonzero fingerprints in used_count. This will fail if 212 // Deletes all fingerprints from the given vector from the current hash table 217 const std::set<Fingerprint>& fingerprints); 281 // |fingerprints| will contain the computed fingerprints. On failure, there 282 // will be no fingerprints. 284 const std::vector<Fingerprint>& fingerprints);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
PerformanceResultsElement.java | 32 boolean fingerprints = true; field in class:PerformanceResultsElement 196 * Set whether only fingerprints should be taken into account or not. 198 * @param fingerprints 200 public void setFingerprints(boolean fingerprints) { 201 this.fingerprints = fingerprints;
|
ComponentResultsElement.java | 97 * @param fingerprints Set whether only fingerprints scenario should be taken into account 100 public List getConfigNumbers(String configName, boolean fingerprints) { 102 return ((ComponentResults)this.results).getConfigNumbers(configName, fingerprints, new ArrayList());
|
ResultsElement.java | 541 return ((PerformanceResultsElement)this).fingerprints;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
ComponentResults.java | 89 * @param fingerprints Set whether only fingerprints scenario should be taken into account 101 public List getConfigNumbers(String configName, boolean fingerprints, List differences) { 111 if (!fingerprints || scenarioResults.hasSummary()) { 131 if (!fingerprints || scenarioResults.hasSummary()) { 167 // appendDifferences(lastBuildName, configName, previousMilestoneName, differences, fingerprints); 168 // appendDifferences(lastBuildName, configName, previousBuildName, differences, fingerprints);
|
/external/iptables/utils/ |
nfnl_osf.c | 429 char *fingerprints = NULL; local 434 fingerprints = optarg; 441 "Usage: %s -f fingerprints -d <del rules> -h\n", 447 if (!fingerprints) { 470 err = osf_load_entries(fingerprints, del);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/ |
performanceui.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
GenerateResults.java | 133 * Tells whether only fingerprints has to be generated. 134 * This field is set to <code>true</code> if <b>-fingerprints</b> argument is specified. 145 * Tells whether only fingerprints has to be generated. 148 * Default is <code>false</code> which means that fingerprints 157 * Tells whether only fingerprints has to be generated. 159 * if <b>-fingerprints</b> or <b>-data</b> argument is specified. 189 public GenerateResults(PerformanceResults results, String current, String baseline, boolean fingerprints, File data, File output) { 192 this.genFingerPrints = fingerprints; 193 this.genAll = !fingerprints; 418 if (arg.equals("-fingerprints")) { [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.test.performance_3.6.0.v20091014.jar | |