HomeSort by relevance Sort by last modified time
    Searched defs:Status (Results 1 - 25 of 325) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/test/chromedriver/chrome/
status.cc 5 #include "chrome/test/chromedriver/chrome/status.h"
69 Status::Status(StatusCode code)
72 Status::Status(StatusCode code, const std::string& details)
77 Status::Status(StatusCode code, const Status& cause)
82 Status::Status(StatusCode code
    [all...]
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_omx_config_parser.cpp 53 OMX_S32 Status;
95 Status = pv_audio_config_parser(&aInputs, (pvAudioConfigParserOutputs *)aOutputParameters);
96 if (0 == Status)
104 OMX_S32 Status;
140 Status = intel_video_config_parser(&aInputs, (pvVideoConfigParserOutputs *)aOutputParameters);
144 Status = pv_video_config_parser(&aInputs, (pvVideoConfigParserOutputs *)aOutputParameters);
146 if (0 != Status)
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_omx_config_parser.cpp 70 OMX_S32 Status;
111 Status = pv_audio_config_parser(&aInputs, (pvAudioConfigParserOutputs *)aOutputParameters);
112 if (0 == Status)
120 OMX_S32 Status;
153 Status = ti_video_config_parser((tiVideoConfigParserInputs *)&aInputs, (tiVideoConfigParserOutputs *)aOutputParameters, pInputs->cComponentName);
157 Status = pv_video_config_parser(&aInputs, (pvVideoConfigParserOutputs *)aOutputParameters);
159 if (0 != Status)
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Process.c 67 LVM_ReturnStatus_en Status;
114 Status = LVM_ApplyNewSettings(hInstance);
116 if(Status != LVM_SUCCESS)
118 return Status;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
user_event_detail.js 12 * ChromeVox events are sent with status "PENDING" and an action that maps to
16 * the status of the event to either "SUCCESS" or "FAILURE".
19 * If the status is "PENDING", ChromeVox will perform the action itself.
20 * If the status is "FAILURE", ChromeVox will speak the associated error message
22 * If the status is "SUCCESS", then ChromeVox will check to see if an associated
45 * status: (undefined|string),
50 * status: The status of the event. If the status is left at PENDING, ChromeVox
52 * the underlying web app has performed the action itself. If the status is se
    [all...]
  /external/chromium_org/chrome/browser/local_discovery/
privetv3_setup_operation.h 19 enum Status { STATUS_SUCCESS, STATUS_SETUP_ERROR, STATUS_SESSION_ERROR };
23 typedef base::Callback<void(Status status)> SetupStatusCallback;
gcd_api_flow.h 20 enum Status {
36 virtual void OnGCDAPIFlowError(Status status) = 0;
  /external/chromium_org/media/base/
audio_decoder.h 23 // Status codes for decode operations.
24 // TODO(rileya): Now that both AudioDecoder and VideoDecoder Status enums
26 enum Status {
40 typedef base::Callback<void(Status)> DecodeCB;
video_decoder.h 22 // Status codes for decode operations on VideoDecoder.
23 // TODO(rileya): Now that both AudioDecoder and VideoDecoder Status enums
25 enum Status {
39 typedef base::Callback<void(Status status)> DecodeCB;
59 // Requests a |buffer| to be decoded. The status of the decoder and decoded
demuxer_stream.h 28 // Status returned in the Read() callback.
33 // return. The second parameter MUST be NULL when this status is
42 // when this status is returned.
45 enum Status {
53 // The first parameter indicates the status of the read.
56 typedef base::Callback<void(Status,
76 // status from a Read() call. In this case the client is expected to be
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/
address_validator.h 61 // AddressValidator::Status status =
63 // if (status == AddressValidator::SUCCESS) {
73 // The status of address validation.
74 enum Status {
119 virtual Status ValidateAddress(const AddressData& address,
147 virtual Status GetSuggestions(
  /external/libvorbis/examples/
frameview.pl 47 $toplevel->optionAdd("$Xname*Status.font",
126 $panel->optionAdd("$X2name*Status.font",
297 Status("Plotting $fileno");
588 sub Status{
611 Status("Reading... $count")if($count%117==0);
616 Status("Done Reading: $count files");
  /external/llvm/unittests/Support/
FileOutputBufferTest.cpp 106 fs::file_status Status;
107 ASSERT_NO_ERROR(fs::status(Twine(File4), Status));
108 bool IsExecutable = (Status.permissions() & fs::owner_exe);
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
status.h 5 // A Status encapsulates the result of an operation. It may indicate success,
8 // Multiple threads can invoke const methods on a Status without
10 // non-const method, all threads accessing the same Status must use
21 class Status {
23 // Create a success status.
24 Status() : state_(NULL) { }
25 ~Status() { delete[] state_; }
27 // Copy the specified status.
28 Status(const Status& s)
    [all...]
  /external/chromium_org/ash/accelerators/
key_hold_detector.cc 10 #undef Status
  /external/chromium_org/ash/shelf/
shelf_model.h 20 enum Status {
22 // A status that indicates apps are syncing/loading.
77 void SetStatus(Status status);
78 Status status() const { return status_; } function in class:ash::ShelfModel
93 Status status_;
  /external/chromium_org/base/test/launcher/
test_result.h 16 enum Status {
17 TEST_UNKNOWN, // Status not set.
29 // Returns the test status as string (e.g. for display).
42 return status == TEST_SUCCESS ||
43 status == TEST_FAILURE ||
44 status == TEST_FAILURE_ON_EXIT;
50 Status status; member in struct:base::TestResult
  /external/chromium_org/chrome/browser/sync/glue/
sync_backend_host.h 49 typedef syncer::SyncStatus Status;
157 // Called from any thread to obtain current status information in detailed or
159 virtual Status GetDetailedStatus() = 0;
  /external/chromium_org/chrome/browser/ui/ash/
app_sync_ui_state.h 22 // accordingly. Its status is for UI display only. It only watches for new
29 enum Status {
49 Status status() const { return status_; } function in class:AppSyncUIState
55 void SetStatus(Status status);
57 // Checks and sets app sync status. If sync has not setup, do nothing. If sync
81 Status status_;
  /external/chromium_org/chromeos/dbus/
bluetooth_agent_service_provider.h 38 // Possible status values that may be returned to callbacks. Success
43 enum Status {
50 // be called with two arguments, the |status| of the request (success,
52 typedef base::Callback<void(Status, const std::string&)> PinCodeCallback;
55 // be called with two arguments, the |status| of the request (success,
58 typedef base::Callback<void(Status, uint32)> PasskeyCallback;
61 // or authorization, it should be called with one argument, the |status|
63 typedef base::Callback<void(Status)> ConfirmationCallback;
bluetooth_profile_service_provider.h 39 // Possible status values that may be returned to callbacks on a new
43 enum Status {
62 // it should be called with one argument, the |status| of the request
64 typedef base::Callback<void(Status)> ConfirmationCallback;
  /external/chromium_org/content/browser/power_profiler/
power_profiler_service.h 33 enum Status {
64 Status status_;
  /external/chromium_org/content/child/webcrypto/
status.h 16 // Status indicates whether an operation completed successfully, or with an
22 class CONTENT_EXPORT Status {
24 Status() : type_(TYPE_ERROR) {}
26 // Returns true if the Status represents an error (any one of them).
29 // Returns true if the Status represent success.
37 // Constructs a status representing success.
38 static Status Success();
40 // Constructs a status representing a generic operation error. It contains no
42 static Status OperationError();
44 // Constructs a status representing a generic data error. It contains n
    [all...]
  /external/chromium_org/net/url_request/
url_request_status.h 17 enum Status {
33 URLRequestStatus(Status s, int e) : status_(s), error_(e) {}
35 Status status() const { return status_; } function in class:net::URLRequestStatus
36 void set_status(Status s) { status_ = s; }
41 // Returns true if the status is success, which makes some calling code more
53 // Application level status.
54 Status status_;
  /external/chromium_org/third_party/leveldatabase/src/util/
status.cc 7 #include "leveldb/status.h"
11 const char* Status::CopyState(const char* state) {
19 Status::Status(Code code, const Slice& msg, const Slice& msg2) {
36 std::string Status::ToString() const {

Completed in 1261 milliseconds

1 2 3 4 5 6 7 8 91011>>