Searched defs:status (Results 1 - 25 of 178) sorted by relevance

12345678

/packages/services/Car/evs/sampleDriver/
H A Dservice.cpp50 status_t status = service->registerAsService(kEnumeratorServiceName); local
51 if (status == OK) {
55 ALOGE("Could not register service %s (%d).", kEnumeratorServiceName, status);
/packages/apps/Contacts/src/com/android/contacts/
H A DContactPresenceIconUtil.java28 * Get the presence icon resource according the status.
30 * @return null means don't show the status icon.
32 public static Drawable getPresenceIcon (Context context, int status) { argument
33 // We don't show the offline status in Contacts
34 switch(status) {
41 StatusUpdates.getPresenceIconResourceId(status));
43 // The undefined status is treated as OFFLINE in getPresenceIconResourceId();
/packages/services/Car/evs/manager/
H A Dservice.cpp85 status_t status = service->registerAsService(kManagedEnumeratorName); local
86 if (status == OK) {
93 ALOGE("Could not register service %s (%d).", kManagedEnumeratorName, status);
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DCallbackInfo.java27 int status; field in class:CallbackInfo
30 CallbackInfo(String address, int status, int handle) { argument
32 this.status = status;
36 CallbackInfo(String address, int status) { argument
38 this.status = status;
/packages/apps/Dialer/java/com/android/contacts/common/
H A DContactPresenceIconUtil.java28 * Get the presence icon resource according the status.
30 * @return null means don't show the status icon.
32 public static Drawable getPresenceIcon(Context context, int status) { argument
33 // We don't show the offline status in Contacts
34 switch (status) {
40 return ContextCompat.getDrawable(context, StatusUpdates.getPresenceIconResourceId(status));
42 // The undefined status is treated as OFFLINE in getPresenceIconResourceId();
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
H A DSettingsHelper.java39 public String getStatusStringFromBoolean(boolean status) { argument
40 int descResId = status ? R.string.action_on_description : R.string.action_off_description;
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/
H A DContactPresenceIconUtil.java28 * Get the presence icon resource according the status.
30 * @return null means don't show the status icon.
32 public static Drawable getPresenceIcon (Context context, int status) { argument
33 // We don't show the offline status in Contacts
34 switch(status) {
41 StatusUpdates.getPresenceIconResourceId(status));
43 // The undefined status is treated as OFFLINE in getPresenceIconResourceId();
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
H A DRequestSetNotificationRegistration.java32 public RequestSetNotificationRegistration(boolean status) { argument
33 mStatus = status;
39 oap.add(OAP_TAGID_NOTIFICATION_STATUS, status ? NOTIFICATION_ON : NOTIFICATION_OFF);
/packages/apps/Dialer/java/com/android/dialer/app/voicemail/error/
H A DVoicemailErrorMessageCreator.java34 Context context, VoicemailStatus status, VoicemailStatusReader statusReader) {
35 // Never return error message before NMR1. Voicemail status is not supported on those.
39 switch (status.type) {
41 return Vvm3VoicemailMessageCreator.create(context, status, statusReader);
43 return OmtpVoicemailMessageCreator.create(context, status, statusReader);
33 create( Context context, VoicemailStatus status, VoicemailStatusReader statusReader) argument
/packages/apps/Dialer/java/com/android/voicemail/impl/
H A DDefaultOmtpEventHandler.java31 VoicemailStatus.Editor status,
35 handleConfigurationEvent(context, status, event);
38 handleDataChannelEvent(context, status, event);
41 handleNotificationChannelEvent(context, config, status, event);
44 handleOtherEvent(context, status, event);
52 Context context, VoicemailStatus.Editor status, OmtpEvents event) {
57 status
65 status
72 status
79 status
28 handleEvent( Context context, OmtpVvmCarrierConfigHelper config, VoicemailStatus.Editor status, OmtpEvents event) argument
51 handleConfigurationEvent( Context context, VoicemailStatus.Editor status, OmtpEvents event) argument
89 handleDataChannelEvent( Context context, VoicemailStatus.Editor status, OmtpEvents event) argument
153 handleNotificationChannelEvent( Context context, OmtpVvmCarrierConfigHelper config, VoicemailStatus.Editor status, OmtpEvents event) argument
179 handleOtherEvent( Context context, VoicemailStatus.Editor status, OmtpEvents event) argument
[all...]
/packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/grpc/
H A DTranscriptionClient.java32 /** Wraps the server response and status objects, either of which may be null. */
35 public final Status status; field in class:TranscriptionClient.TranscriptionResponseWrapper
38 @Nullable TranscribeVoicemailResponse response, @Nullable Status status) {
39 Assert.checkArgument(!(response == null && status == null));
41 this.status = status;
53 Status status = null;
57 status = e.getStatus();
59 return new TranscriptionClient.TranscriptionResponseWrapper(response, status);
37 TranscriptionResponseWrapper( @ullable TranscribeVoicemailResponse response, @Nullable Status status) argument
/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/
H A DBatteryTestUtils.java40 public static Intent getCustomBatteryIntent(int plugged, int level, int scale, int status) { argument
45 intent.putExtra(BatteryManager.EXTRA_STATUS, status);
/packages/experimental/RpcPerformance/
H A Drpcperftest.cpp54 status_t status = sm->addService(name, new BnInterface<ITestService>()); local
55 if (status != OK) {
73 status_t status = service->pingBinder(); local
74 if (status != OK) {
75 fprintf(stderr, "error: can't ping: %s [%d]\n", argv[1], status);
83 status_t status = service->pingBinder(); local
84 if (status != OK) {
85 fprintf(stderr, "error: can't ping: %s [%d]\n", argv[1], status);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DCompletedDownloadInfo.java28 public CompletedDownloadInfo(final String uri, final long downloadId, final int status) { argument
31 mStatus = status;
H A DDictionaryListInterfaceState.java55 public void setOpen(final String wordlistId, final int status) { argument
60 newState.mStatus = status;
/packages/apps/Calendar/src/com/android/calendar/
H A DGoogleCalendarUriIntentFilter.java200 // Pick up attendee status action from uri clicked
253 int eventId, String ownerAccount, final int status, final Intent intent) {
261 intent.putExtra(Attendees.ATTENDEE_STATUS, status);
266 switch (status) {
284 values.put(Attendees.ATTENDEE_STATUS, status);
252 updateSelfAttendeeStatus( int eventId, String ownerAccount, final int status, final Intent intent) argument
/packages/apps/Messaging/src/android/support/v7/mms/pdu/
H A DNotifyRespInd.java29 * @param status the status value
36 int status) throws InvalidHeaderValueException {
41 setStatus(status);
34 NotifyRespInd(int mmsVersion, byte[] transactionId, int status) argument
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DProcessDeliveryReportAction.java42 private static final String KEY_STATUS = "status";
44 private ProcessDeliveryReportAction(final Uri uri, final int status) { argument
46 actionParameters.putInt(KEY_STATUS, status);
49 public static void deliveryReportReceived(final Uri uri, final int status) { argument
50 final ProcessDeliveryReportAction action = new ProcessDeliveryReportAction(uri, status);
57 final int status = actionParameters.getInt(KEY_STATUS);
69 MmsUtils.updateSmsStatusAndDateSent(smsMessageUri, status, timeSentInMillis);
77 Telephony.Sms.MESSAGE_TYPE_SENT /* type */, status);
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
H A DNotifyRespInd.java31 * @param status the status value
38 int status) throws InvalidHeaderValueException {
43 setStatus(status);
36 NotifyRespInd(int mmsVersion, byte[] transactionId, int status) argument
/packages/apps/Nfc/nci/jni/extns/pn54x/src/mifare/
H A DphFriNfc_SmtCrdFmt.c108 /* Initialize the Format status flag*/
140 NFCSTATUS status = NFCSTATUS_SUCCESS; local
144 status = PHNFCSTVAL(CID_FRI_NFC_NDEF_SMTCRDFMT, NFCSTATUS_INVALID_PARAMETER);
154 return status;
/packages/services/Car/evs/app/
H A Devs_app.cpp58 StatusCode status = pVnet->subscribe(listener, options); local
59 if (status != StatusCode::OK) {
60 ALOGW("VHAL subscription for property 0x%08X failed with code %d.", propertyId, status);
/packages/services/Car/tests/obd2_app/src/com/google/android/car/obd2app/
H A DStatusNotification.java25 void notify(String status); argument
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppReceiveFileInfo.java77 public BluetoothOppReceiveFileInfo(String data, long length, int status) { argument
79 mStatus = status;
84 int status) {
87 mStatus = status;
91 public BluetoothOppReceiveFileInfo(int status) { argument
92 this(null, 0, null, status);
83 BluetoothOppReceiveFileInfo(String filename, long length, FileOutputStream outputStream, int status) argument
H A DBluetoothOppSendFileInfo.java60 /** Reusable SendFileInfo for error status. */
81 FileInputStream inputStream, int status) {
86 mStatus = status;
91 public BluetoothOppSendFileInfo(String data, String type, long length, int status) { argument
97 mStatus = status;
80 BluetoothOppSendFileInfo(String fileName, String type, long length, FileInputStream inputStream, int status) argument
/packages/apps/Dialer/java/com/android/incallui/ringtone/
H A DDialerRingtoneManager.java131 void setDialerRingingEnabledForTesting(boolean status) { argument
132 mIsDialerRingingEnabledForTesting = status;

Completed in 812 milliseconds

12345678