Searched defs:threshold (Results 1 - 14 of 14) sorted by relevance

/system/tpm/tpm_manager/server/
H A Dmock_tpm_status.cc26 int* threshold,
30 *threshold = 10;
25 GetDefaultDictionaryAttackInfo(int* counter, int* threshold, bool* lockout, int* seconds_remaining) argument
H A Dtpm2_status_impl.cc54 int* threshold,
63 if (threshold) {
64 *threshold = trunks_tpm_state_->GetLockoutThreshold();
53 GetDictionaryAttackInfo(int* counter, int* threshold, bool* lockout, int* seconds_remaining) argument
H A Dtpm2_status_test.cc110 int threshold; local
114 &threshold,
133 int threshold; local
137 &threshold,
141 EXPECT_EQ(threshold, lockout_threshold);
150 int threshold; local
154 &threshold,
H A Dtpm_status_impl.cc45 int* threshold,
61 if (threshold) { *threshold = da_info.thresholdCount; }
44 GetDictionaryAttackInfo(int* counter, int* threshold, bool* lockout, int* seconds_remaining) argument
H A Dtpm_manager_service.cc79 int threshold; local
82 if (tpm_status_->GetDictionaryAttackInfo(&counter, &threshold, &lockout,
85 result->set_dictionary_attack_threshold(threshold);
/system/extras/perfprofd/quipper/
H A Dperf_parser.cc236 float threshold = options_.sample_mapping_percentage_threshold; local
237 if (sample_mapping_percentage < threshold) {
240 << static_cast<int>(threshold) << "%";
/system/connectivity/shill/dbus/
H A Dchromeos_supplicant_interface_proxy.cc400 bool ChromeosSupplicantInterfaceProxy::SetRoamThreshold(uint16_t threshold) { argument
401 SLOG(&interface_proxy_->GetObjectPath(), 2) << __func__ << ": " << threshold; local
403 if (!properties_->roam_threshold.SetAndBlock(threshold)) {
404 LOG(ERROR) << __func__ << " failed: " << threshold; local
/system/core/logd/
H A DLogBuffer.cpp480 // persistent and hits a further threshold, kill the reader thread.
559 // Calculate threshold as 12.5% of available storage
560 size_t threshold = log_buffer_size(id) / 8; local
561 if ((worst_sizes > threshold)
567 if (second_worst_sizes < threshold) {
568 second_worst_sizes = threshold;
/system/extras/ANRdaemon/
H A DANRdaemon.cpp78 * Logging on/off threshold.
156 * If tracing is on, increase the idle threshold by 1.00% so that we do not
158 * threshold.
162 int threshold = idle_threshold + (tracing?100:0); local
167 return (diff_idle * 10000 < diff_total * threshold);
509 " -t N cpu threshold for logging to start "
538 int threshold; local
553 threshold = atoi(optarg);
554 if (threshold > 9999 || threshold < 500
[all...]
/system/connectivity/shill/wifi/
H A Dwifi_service_unittest.cc202 bool SetRoamThreshold(WiFiServiceRefPtr service, uint16_t threshold) { argument
203 return service->SetRoamThreshold(threshold, nullptr);
H A Dwifi_service.cc1285 bool WiFiService::SetRoamThreshold(const uint16_t& threshold, argument
1287 roam_threshold_db_ = threshold;
H A Dwifi.cc765 bool WiFi::SetRoamThreshold(const uint16_t& threshold, Error* /*error*/) { argument
766 roam_threshold_db_ = threshold;
768 supplicant_interface_proxy_->SetRoamThreshold(threshold);
1053 // Use WiFi service-specific roam threshold if it is set, otherwise use WiFi
1054 // device-wide roam threshold.
H A Dwifi_unittest.cc758 void SetRoamThresholdMember(uint16_t threshold) { argument
759 wifi_->roam_threshold_db_ = threshold;
762 bool SetRoamThreshold(uint16_t threshold) { argument
763 return wifi_->SetRoamThreshold(threshold, nullptr);
1250 bool SetBgscanSignalThreshold(const int32_t& threshold, Error* error) { argument
1251 return wifi_->SetBgscanSignalThreshold(threshold, error);
1558 // Do not set supplicant's roam threshold property immediately if the
1559 // current WiFi service has its own roam threshold property set.
/system/core/libpixelflinger/
H A Dscanline.cpp1151 int threshold = get_value(); local
1153 r += (threshold >> (GGL_DITHER_BITS-8 +5));
1154 g += (threshold >> (GGL_DITHER_BITS-8 +6));
1155 b += (threshold >> (GGL_DITHER_BITS-8 +5));
1208 int threshold = di.get_value() << (8 - GGL_DITHER_BITS); local
1217 sR = ((sR << 8) + f*dR + threshold)>>8;
1218 sG = ((sG << 8) + f*dG + threshold)>>8;
1219 sB = ((sB << 8) + f*dB + threshold)>>8;
1327 /* Scale threshold to 0.8 fixed float format */
1328 int threshold local
1383 int threshold = di.get_value() << (8 - GGL_DITHER_BITS); local
[all...]

Completed in 249 milliseconds