HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 751 - 775 of 4870) sorted by null

<<31323334353637383940>>

  /external/chromium_org/chrome/test/chromedriver/js/
execute_async_script.js 6 * Enum for WebDriver status codes.
59 function report(status, value) {
63 info.result = {status: status, value: value};
  /external/chromium_org/chrome/test/chromedriver/net/
port_server_unittest.cc 15 #include "chrome/test/chromedriver/chrome/status.h"
147 Status status = server.ReservePort(&port, &reservation); local
148 ASSERT_EQ(kOk, status.code()) << status.message();
161 Status status = server.ReservePort(&port, &reservation); local
162 ASSERT_EQ(kOk, status.code()) << status.message();
166 status = server.ReservePort(&port, &reservation)
180 Status status = server.ReservePort(&port, &reservation); local
195 Status status = mgr.ReservePort(&port, &reservation); local
208 Status status = mgr.ReservePortFromPool(&port, &reservation); local
    [all...]
  /external/chromium_org/chromeos/network/
network_util.h 48 std::string status; // The network's availability status. (One of "unknown", member in struct:chromeos::CellularScanResult
  /external/chromium_org/chromeos/network/portal_detector/
network_portal_detector.h 33 : status(CAPTIVE_PORTAL_STATUS_UNKNOWN),
38 return status == o.status && response_code == o.response_code;
41 CaptivePortalStatus status; member in struct:chromeos::NetworkPortalDetector::CaptivePortalState
122 // Returns non-localized string representation of |status|.
123 static std::string CaptivePortalStatusString(CaptivePortalStatus status);
  /external/chromium_org/cloud_print/service/win/
local_security_policy.cc 90 NTSTATUS status = ::LsaEnumerateAccountRights( local
92 if (STATUS_SUCCESS != status || !rights.Get())
  /external/chromium_org/components/component_updater/
default_component_installer.cc 215 ComponentUpdateService::Status status = cus->RegisterComponent(crx); local
216 if (status != ComponentUpdateService::kOk &&
217 status != ComponentUpdateService::kReplaced) {
  /external/chromium_org/components/domain_reliability/
monitor.h 128 net::URLRequestStatus status; member in struct:domain_reliability::DomainReliabilityMonitor::RequestInfo
  /external/chromium_org/components/enhanced_bookmarks/
persistent_image_store.cc 218 sql::InitStatus status = sql::INIT_FAILURE; local
220 status = OpenDatabaseImpl(db_, path_);
221 if (status == sql::INIT_OK)
222 return status;
  /external/chromium_org/components/gcm_driver/
fake_gcm_client.h 20 enum Status {
78 Status status() const { return status_; } function in class:gcm::FakeGCMClient
100 Status status_;
  /external/chromium_org/components/nacl/loader/nonsfi/
nonsfi_sandbox_unittest.cc 110 int status; local
111 ASSERT_EQ(pid, HANDLE_EINTR(waitpid(pid, &status, 0)));
112 ASSERT_TRUE(WIFEXITED(status));
113 ASSERT_EQ(0, WEXITSTATUS(status));
  /external/chromium_org/components/policy/core/common/cloud/
cloud_policy_refresh_scheduler.cc 130 // Save the status for below.
131 DeviceManagementStatus status = client_->status(); local
139 (status == DM_STATUS_REQUEST_FAILED ||
140 status == DM_STATUS_TEMPORARY_UNAVAILABLE)) {
163 if (client_->status() == DM_STATUS_REQUEST_FAILED)
237 // If there is a registration, go by the client's status. That will tell us
239 switch (client_->status()) {
272 NOTREACHED() << "Invalid client status " << client_->status();
    [all...]
cloud_policy_store.h 27 // Status codes.
28 enum Status {
79 Status status() const { return status_; } function in class:policy::CloudPolicyStore
80 CloudPolicyValidatorBase::Status validation_status() const {
144 // Latest status code.
145 Status status_;
147 // Latest validation status.
148 CloudPolicyValidatorBase::Status validation_status_;
external_policy_data_fetcher.cc 212 const net::URLRequestStatus status = it->first->GetStatus(); local
213 if (status.error() == net::ERR_CONNECTION_RESET ||
214 status.error() == net::ERR_TEMPORARILY_THROTTLED) {
217 } else if (status.status() != net::URLRequestStatus::SUCCESS) {
  /external/chromium_org/components/sync_driver/
data_type_manager.h 47 // Note: |errors| is only filled when status is not OK.
50 ConfigureResult(ConfigureStatus status,
54 ConfigureStatus status; member in struct:sync_driver::DataTypeManager::ConfigureResult
62 static std::string ConfigureStatusToString(ConfigureStatus status);
  /external/chromium_org/content/browser/battery_status/
battery_status_browsertest.cc 42 void set_battery_status(const blink::WebBatteryStatus& status) {
43 status_ = status;
109 // request a promise for the battery status information and once it resolves
120 // Set the fake battery manager to return predefined battery status values.
121 // From JavaScript request a promise for the battery status information and
123 blink::WebBatteryStatus status; local
124 status.charging = true;
125 status.chargingTime = 100;
126 status.dischargingTime = std::numeric_limits<double>::infinity();
127 status.level = 0.5
144 blink::WebBatteryStatus status; local
    [all...]
battery_status_manager_chromeos.cc 108 blink::WebBatteryStatus status; variable
111 // The charging status is unreliable if a low power charger is connected
118 // Set |charging| only if the status is reliable. Otherwise, keep the
121 status.charging = IsBatteryCharging(proto);
126 if (time_unreliable || !status.charging)
127 status.chargingTime = std::numeric_limits<double>::infinity();
129 status.chargingTime = proto.battery_time_to_full_sec();
133 if (!time_unreliable && !status.charging)
134 status.dischargingTime = proto.battery_time_to_empty_sec();
136 status.level = GetBatteryLevel(proto)
    [all...]
  /external/chromium_org/content/browser/gamepad/
gamepad_platform_data_fetcher_win.h 85 PadConnectionStatus status; member in struct:content::GamepadPlatformDataFetcherWin::PadState
  /external/chromium_org/content/child/webcrypto/
algorithm_dispatch.cc 12 #include "content/child/webcrypto/status.h"
22 Status DecryptDontCheckKeyUsage(const blink::WebCryptoAlgorithm& algorithm,
27 return Status::ErrorUnexpected();
30 Status status = GetAlgorithmImplementation(algorithm.id(), &impl); local
31 if (status.IsError())
32 return status;
37 Status EncryptDontCheckUsage(const blink::WebCryptoAlgorithm& algorithm,
42 return Status::ErrorUnexpected();
45 Status status = GetAlgorithmImplementation(algorithm.id(), &impl) local
56 Status status = GetAlgorithmImplementation(key.algorithm().id(), &impl); local
98 Status status = GetAlgorithmImplementation(algorithm.id(), &impl); local
110 Status status = GetAlgorithmImplementation(algorithm.id(), &impl); local
127 Status status = GetAlgorithmImplementation(algorithm.id(), &impl); local
154 Status status = GetAlgorithmImplementation(algorithm.id(), &impl); local
198 Status status = GetAlgorithmImplementation(algorithm.id(), &impl); local
216 Status status = GetAlgorithmImplementation(algorithm.id(), &impl); local
232 Status status = ExportKey(format, key_to_wrap, &exported_data); local
254 Status status = GetAlgorithmImplementation(algorithm.id(), &import_impl); local
    [all...]
  /external/chromium_org/content/child/webcrypto/nss/
aes_gcm_nss.cc 11 #include "content/child/webcrypto/status.h"
47 Status NssSupportsAesGcm() {
49 return Status::Success();
50 return Status::ErrorUnsupported(
57 Status AesGcmEncryptDecrypt(EncryptOrDecrypt mode,
62 Status status = NssSupportsAesGcm(); local
63 if (status.IsError())
64 return status;
69 return Status::ErrorUnexpected()
150 Status status = NssSupportsAesGcm(); variable
159 Status status = NssSupportsAesGcm(); variable
    [all...]
  /external/chromium_org/content/child/webcrypto/openssl/
aes_ctr_openssl.cc 16 #include "content/child/webcrypto/status.h"
44 Status AesCtrEncrypt128BitCounter(const EVP_CIPHER* cipher,
57 return Status::OperationError();
65 return Status::OperationError();
74 return Status::OperationError();
79 return Status::OperationError();
84 return Status::ErrorUnexpected();
86 return Status::Success();
157 Status AesCtrEncryptDecrypt(const blink::WebCryptoAlgorithm& algorithm,
166 return Status::ErrorIncorrectSizeAesCtrCounter()
239 Status status = local
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
BatteryStatusManager.java 20 * Android implementation of the battery status APIs.
96 // No battery or no plugged status: return default values.
102 int status = intent.getIntExtra(BatteryManager.EXTRA_STATUS, -1); local
103 boolean batteryFull = status == BatteryManager.BATTERY_STATUS_FULL;
  /external/chromium_org/content/public/common/
appcache_info.h 41 AppCacheStatus status; member in struct:content::AppCacheInfo
  /external/chromium_org/content/public/test/
async_file_test_helper.cc 78 storage::QuotaStatusCode status,
82 *status_out = status;
262 storage::QuotaStatusCode status = storage::kQuotaStatusUnknown; local
266 base::Bind(&DidGetUsageAndQuota, &status, usage, quota));
268 return status;
  /external/chromium_org/content/renderer/media/
webcontentdecryptionmodulesession_impl.cc 34 blink::WebContentDecryptionModuleResult::SessionStatus status = variable
36 web_cdm_result_.completeWithSession(status);
  /external/chromium_org/google_apis/gaia/
oauth2_access_token_fetcher_impl_unittest.cc 100 URLRequestStatus::Status status = local
102 url_fetcher->set_status(URLRequestStatus(status, 0));

Completed in 778 milliseconds

<<31323334353637383940>>