/external/autotest/client/common_lib/ |
host_queue_entry_states.py | 2 This module contains the status enums for use by HostQueueEntrys in the 3 database. It is a stand alone module as these status strings are needed 15 Status = enum.Enum(*Status_list, string_values=True) 16 ACTIVE_STATUSES = (Status.STARTING, Status.RESETTING, Status.VERIFYING, 17 Status.PROVISIONING, Status.PENDING, Status.RUNNING, 18 Status.GATHERING, Status.CLEANING [all...] |
host_states.py | 6 This module contains the status enums for use by Hosts in the 7 database. It is a stand alone module as these status strings 13 Status = enum.Enum('Verifying', 'Running', 'Ready', 'Repairing',
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/ |
Xag.h | 47 Status XagCreateEmbeddedApplicationGroup( 56 Status XagCreateNonembeddedApplicationGroup( 61 Status XagDestroyApplicationGroup( 66 Status XagGetApplicationGroupAttributes( 72 Status XagQueryApplicationGroup( 78 Status XagCreateAssociation( 84 Status XagDestroyAssociation(
|
dpms.h | 41 extern Status DPMSGetVersion(Display *, int *, int *); 43 extern Status DPMSSetTimeouts(Display *, CARD16, CARD16, CARD16); 45 extern Status DPMSEnable(Display *); 46 extern Status DPMSDisable(Display *); 47 extern Status DPMSForceLevel(Display *, CARD16); 48 extern Status DPMSInfo(Display *, CARD16 *, BOOL *);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/ |
Xag.h | 45 Status XagCreateEmbeddedApplicationGroup( 54 Status XagCreateNonembeddedApplicationGroup( 59 Status XagDestroyApplicationGroup( 64 Status XagGetApplicationGroupAttributes( 70 Status XagQueryApplicationGroup( 76 Status XagCreateAssociation( 82 Status XagDestroyAssociation(
|
dpms.h | 40 extern Status DPMSGetVersion(Display *, int *, int *); 42 extern Status DPMSSetTimeouts(Display *, CARD16, CARD16, CARD16); 44 extern Status DPMSEnable(Display *); 45 extern Status DPMSDisable(Display *); 46 extern Status DPMSForceLevel(Display *, CARD16); 47 extern Status DPMSInfo(Display *, CARD16 *, BOOL *);
|
/packages/services/Telephony/src/com/android/phone/ |
VoicemailUtils.java | 21 import android.provider.VoicemailContract.Status; 28 VoicemailContract.Status.setStatus(context, accountHandle, 30 Status.DATA_CHANNEL_STATE_IGNORE, 31 Status.NOTIFICATION_CHANNEL_STATE_IGNORE); 36 VoicemailContract.Status.setStatus(context, accountHandle, 37 Status.CONFIGURATION_STATE_IGNORE, 39 Status.NOTIFICATION_CHANNEL_STATE_IGNORE); 44 VoicemailContract.Status.setStatus(context, accountHandle, 45 Status.CONFIGURATION_STATE_IGNORE, 46 Status.DATA_CHANNEL_STATE_IGNORE [all...] |
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/ |
status.h | 65 class LIBPROTOBUF_EXPORT Status { 67 // Creates a "successful" status. 68 Status(); 70 // Create a status in the canonical error space with the specified 72 // ignored and a Status object identical to Status::OK is 74 Status(error::Code error_code, StringPiece error_message); 75 Status(const Status&); 76 Status& operator=(const Status& x) [all...] |
/frameworks/native/include/binder/ |
Status.h | 33 // status_t status; 34 // binder::Status remote_exception; 35 // if ((status = data.writeInterfaceToken(interface_descriptor)) != OK || 36 // (status = data.writeInt32(function_input)) != OK) { 39 // if ((status = remote()->transact(transaction, data, &reply)) != OK) { 42 // if ((status = remote_exception.readFromParcel(reply)) != OK) { 51 class Status final { 73 static Status ok(); 83 static Status fromExceptionCode(int32_t exceptionCode); 84 static Status fromExceptionCode(int32_t exceptionCode 95 Status(const Status& status) = default; member in class:android::binder::final 96 Status(Status&& status) = default; member in class:android::binder::final 97 Status& operator=(const Status& status) = default; member in class:android::binder::final [all...] |
/external/clang/lib/Basic/ |
FileSystemStatCache.cpp | 22 static void copyStatusToFileData(const vfs::Status &Status, 24 Data.Name = Status.getName(); 25 Data.Size = Status.getSize(); 26 Data.ModTime = Status.getLastModificationTime().toEpochTime(); 27 Data.UniqueID = Status.getUniqueID(); 28 Data.IsDirectory = Status.isDirectory(); 29 Data.IsNamedPipe = Status.getType() == llvm::sys::fs::file_type::fifo_file; 31 Data.IsVFSMapped = Status.IsVFSMapped; 55 llvm::ErrorOr<vfs::Status> Status = FS.status(Path) [all...] |
/art/compiler/ |
compiled_class.h | 26 explicit CompiledClass(mirror::Class::Status status) : status_(status) {} 28 mirror::Class::Status GetStatus() const { 32 const mirror::Class::Status status_;
|
/external/conscrypt/src/main/java/org/conscrypt/ct/ |
VerifiedSCT.java | 23 public enum Status { 31 public final Status status; field in class:VerifiedSCT 33 public VerifiedSCT(SignedCertificateTimestamp sct, Status status) { 35 this.status = status;
|
/system/core/metricsd/ |
metrics_collector_service_impl.cc | 20 #include <binder/Status.h> 32 android::binder::Status BnMetricsCollectorServiceImpl::notifyUserCrash() { 34 return android::binder::Status::ok();
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
ntstrsafe.h | 43 NTSTATUS Status = STATUS_SUCCESS; 52 if (!MaxLength) Status = STATUS_INVALID_PARAMETER; 56 if (NT_SUCCESS(Status)) 66 return Status; 77 NTSTATUS Status = STATUS_SUCCESS; 79 if (!(Length) || (Length > MaxLength)) Status = STATUS_INVALID_PARAMETER; 83 if (NT_SUCCESS(Status)) 85 Status = RtlStringLengthWorkerA(Destination, 95 return Status; 122 NTSTATUS Status = STATUS_SUCCESS [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/ |
gdiplusheaders.h | 75 Status status = updateStatus(DllExports::GdipCloneImage( local 77 if (status == Ok) { 89 Status FindFirstItem(ImageItemData *item); 90 Status FindNextItem(ImageItemData *item); 91 Status GetAllPropertyItems(UINT totalBufferSize, 93 Status GetBounds(RectF *srcRect, Unit *srcUnit); 94 Status GetEncoderParameterList(const CLSID *clsidEncoder, 100 Status GetFrameDimensionsList(GUID *dimensionIDs, UINT count); 103 Status GetItemData(ImageItemData *item) 194 Status status = updateStatus(DllExports::GdipCloneImage( local 278 Status status = updateStatus(DllExports::GdipCloneCustomLineCap( local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/ |
Xcms.h | 37 * XCMS Status Values 202 typedef Status (*XcmsCompressionProc)( /* Gamut Compression Proc */ 210 typedef Status (*XcmsWhiteAdjustProc)( /* White Point Adjust Proc */ 237 typedef Status (*XcmsScreenInitProc)( /* Screen Initialization Proc */ 255 typedef Status (*XcmsConversionProc)(XcmsCCC, XcmsColor *, XcmsColor *, 260 typedef Status (*XcmsConversionProc)(XcmsCCC, XcmsColor *, unsigned int, 266 typedef Status (*XcmsDDConversionProc)( /* using device-dependent version */ 273 typedef Status (*XcmsDIConversionProc)( /* using device-independent version */ 339 extern Status XcmsAddColorSpace ( 343 extern Status XcmsAddFunctionSet [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/ |
Xcms.h | 35 * XCMS Status Values 200 typedef Status (*XcmsCompressionProc)( /* Gamut Compression Proc */ 208 typedef Status (*XcmsWhiteAdjustProc)( /* White Point Adjust Proc */ 235 typedef Status (*XcmsScreenInitProc)( /* Screen Initialization Proc */ 253 typedef Status (*XcmsConversionProc)(XcmsCCC, XcmsColor *, XcmsColor *, 258 typedef Status (*XcmsConversionProc)(XcmsCCC, XcmsColor *, unsigned int, 264 typedef Status (*XcmsDDConversionProc)( /* using device-dependent version */ 271 typedef Status (*XcmsDIConversionProc)( /* using device-independent version */ 337 extern Status XcmsAddColorSpace ( 341 extern Status XcmsAddFunctionSet [all...] |
/frameworks/native/libs/binder/ |
Status.cpp | 17 #include <binder/Status.h> 22 Status Status::ok() { 23 return Status(); 26 Status Status::fromExceptionCode(int32_t exceptionCode) { 27 return Status(exceptionCode, OK); 30 Status Status::fromExceptionCode(int32_t exceptionCode, 32 return Status(exceptionCode, OK, message) 60 status_t status = parcel.readInt32(&mException); local 113 status_t status = parcel->writeInt32(mException); local [all...] |
/system/weaved/buffet/ |
binder_command_proxy.h | 35 android::binder::Status getId(android::String16* id) override; 36 android::binder::Status getName(android::String16* name) override; 37 android::binder::Status getComponent(android::String16* component) override; 38 android::binder::Status getState(android::String16* state) override; 39 android::binder::Status getOrigin(android::String16* origin) override; 40 android::binder::Status getParameters(android::String16* parameters) override; 41 android::binder::Status getProgress(android::String16* progress) override; 42 android::binder::Status getResults(android::String16* results) override; 43 android::binder::Status setProgress( 45 android::binder::Status complete(const android::String16& results) override [all...] |
/external/clang/test/SemaCXX/ |
warn-unused-result.cpp | 47 class Status; 50 Status doStuff(); 53 struct [[clang::warn_unused_result]] Status { 55 Status& operator=(const Status& x); 56 inline void Update(const Status& new_status) { 62 Status DoSomething(); 63 Status& DoSomethingElse(); 64 Status* DoAnotherThing(); 65 Status** DoYetAnotherThing() [all...] |
/system/connectivity/shill/binder/ |
manager_binder_adaptor.cc | 19 #include <binder/Status.h> 27 using android::binder::Status; 99 Status ManagerBinderAdaptor::SetupApModeInterface(String16* _aidl_return) { 101 return Status::ok(); 104 Status ManagerBinderAdaptor::SetupStationModeInterface(String16* _aidl_return) { 107 return Status::ok(); 110 Status ManagerBinderAdaptor::ClaimInterface(const String16& claimer_name, 114 return Status::ok(); 117 Status ManagerBinderAdaptor::ReleaseInterface(const String16& claimer_name, 121 return Status::ok() [all...] |
/system/update_engine/ |
binder_service_brillo.h | 50 update_engine::UpdateStatus status, 58 android::binder::Status AttemptUpdate(const android::String16& app_version, 61 android::binder::Status AttemptRollback(bool powerwash) override; 62 android::binder::Status CanRollback(bool* out_can_rollback) override; 63 android::binder::Status ResetStatus() override; 64 android::binder::Status GetStatus( 65 android::brillo::ParcelableUpdateEngineStatus* status); 66 android::binder::Status RebootIfNeeded() override; 67 android::binder::Status SetChannel(const android::String16& target_channel, 69 android::binder::Status GetChannel(bool get_current_channel [all...] |
/system/tools/aidl/tests/ |
aidl_test_client_service_exceptions.cpp | 21 #include "binder/Status.h" 23 using android::binder::Status; 36 Status status = s->ThrowServiceException(i); local 37 if (status.exceptionCode() != Status::EX_SERVICE_SPECIFIC || 38 status.serviceSpecificErrorCode() != i) {
|
aidl_test_service.cpp | 28 #include <binder/Status.h> 59 using android::binder::Status; 91 Status GetName(String16* ret) { 93 return Status::ok(); 117 Status RepeatBoolean(bool token, bool* _aidl_return) override { 120 return Status::ok(); 122 Status RepeatByte(int8_t token, int8_t* _aidl_return) override { 125 return Status::ok(); 127 Status RepeatChar(char16_t token, char16_t* _aidl_return) override { 130 return Status::ok() 264 Status status = service->GetName(&foundName); variable [all...] |
/external/libnfc-nxp/src/ |
phFriNfc_ISO15693Format.h | 98 * \param[in] Status The completion status of the lower layer (to be handled by the implementation of 103 * The Different Status Values are as follows 109 NFCSTATUS Status);
|