/external/smack/src/org/xbill/DNS/ |
Opcode.java | 19 /** A server status request (not used) */ 20 public static final int STATUS = 2; 40 opcodes.add(STATUS, "STATUS");
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
VoicemailUriType.java | 27 STATUS("status"), 28 STATUS_ID("status/#");
|
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/ |
DeliveryInd.java | 86 * Get Status value. 91 return mPduHeaders.getOctet(PduHeaders.STATUS); 95 * Set Status value. 101 mPduHeaders.setOctet(value, PduHeaders.STATUS);
|
NotifyRespInd.java | 31 * @param status the status value 38 int status) throws InvalidHeaderValueException { 43 setStatus(status); 76 * Set X-Mms-Status field value. 83 mPduHeaders.setOctet(value, PduHeaders.STATUS); 87 * GetX-Mms-Status field value. 89 * @return the X-Mms-Status value 92 return mPduHeaders.getOctet(PduHeaders.STATUS);
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
MessageChangeLogTable.java | 28 /** Column name for a status value indicating where we are with processing this move request. */ 29 public static final String STATUS = "status"; 31 // Status values. 32 /** Status value indicating this move has not yet been unpsynced. */ 35 /** Status value indicating this move is being upsynced right now. */ 38 /** Status value indicating this move failed to upsync. */ 44 ACCOUNT_KEY + "=? and " + STATUS + "=?"; 68 * Update status of all change entries for an account: 84 cv.put(STATUS, STATUS_FAILED) [all...] |
/external/libpcap/ |
atmuni31.h | 54 #define STATUS 0x7d /* status */ 55 #define STATUS_ENQ 0x75 /* status ack */
|
/external/tcpdump/ |
atmuni31.h | 54 #define STATUS 0x7d /* status */ 55 #define STATUS_ENQ 0x75 /* status ack */
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/ |
TestConferenceEventPackageParser.java | 43 * <status>connected</status> 50 * {@link com.android.ims.ImsConferenceState} parcelable. The {@code status} values expected in the 133 String status = ""; local 146 } else if (parser.getName().equals(ImsConferenceState.STATUS)) { 148 status = parser.getText(); 155 Log.v(LOG_TAG, "Status: "+status); 160 bundle.putString(ImsConferenceState.STATUS, status); [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/ |
test-recognizers.rb | 48 testrecognizers.py | LN | STATUS
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothShare.java | 177 * The name of the column containing the current status of the transfer. 187 public static final String STATUS = "status"; 278 * Returns whether the status is informational (i.e. 1xx). 280 public static boolean isStatusInformational(int status) { 281 return (status >= 100 && status < 200); 288 public static boolean isStatusSuspended(int status) { 289 return (status == STATUS_PENDING); 293 * Returns whether the status is a success (i.e. 2xx) [all...] |
BluetoothOppTransferHistory.java | 110 String selection = BluetoothShare.STATUS + " >= '200' AND " + direction; 122 "_id", BluetoothShare.FILENAME_HINT, BluetoothShare.STATUS, 235 int statusColumnId = mTransferCursor.getColumnIndexOrThrow(BluetoothShare.STATUS); 236 int status = mTransferCursor.getInt(statusColumnId); local 237 if (BluetoothShare.isStatusCompleted(status)) {
|
/external/qemu/fpu/ |
softfloat.c | 64 STATUS(float_rounding_mode) = val; 69 STATUS(float_exception_flags) = val; 74 STATUS(floatx80_rounding_precision) = val; 122 roundingMode = STATUS(float_rounding_mode); 148 if ( roundBits ) STATUS(float_exception_flags) |= float_flag_inexact; 171 roundingMode = STATUS(float_rounding_mode); 201 if ( absZ1 ) STATUS(float_exception_flags) |= float_flag_inexact; 245 if (STATUS(flush_inputs_to_zero)) { 320 roundingMode = STATUS(float_rounding_mode); 347 if (STATUS(flush_to_zero)) [all...] |
softfloat-specialize.h | 127 STATUS(float_exception_flags) |= flags; 228 if (STATUS(default_nan_mode)) { 331 if ( STATUS(default_nan_mode) ) { 578 if ( STATUS(default_nan_mode) ) 628 if (STATUS(default_nan_mode)) { 743 if ( STATUS(default_nan_mode) ) { 777 if ( STATUS(default_nan_mode) ) 827 if (STATUS(default_nan_mode)) { 958 if ( STATUS(default_nan_mode) ) { [all...] |
/packages/apps/Contacts/src/com/android/contacts/list/ |
ProviderStatusWatcher.java | 33 * A singleton that keeps track of the last known provider status. 44 * Callback interface invoked when the provider status changes. 50 public static class Status { 51 /** See {@link ProviderStatus#STATUS} */ 52 public final int status; field in class:ProviderStatusWatcher.Status 57 public Status(int status, String data) { 58 this.status = status; 64 ProviderStatus.STATUS, [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
DataStatus.java | 30 * Storage for a social status update. Holds a single update, but can use 31 * {@link #possibleUpdate(Cursor)} to consider updating when a better status 56 final boolean hasStatus = !isNull(cursor, Data.STATUS); 59 // Bail early when not valid status, or when previous status was 65 // Compare timestamps and bail if older status 78 mStatus = getString(cursor, Data.STATUS);
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/ |
DataStatus.java | 28 * Storage for a social status update. Holds a single update, but can use 29 * {@link #possibleUpdate(Cursor)} to consider updating when a better status 54 final boolean hasStatus = !isNull(cursor, Data.STATUS); 57 // Bail early when not valid status, or when previous status was 63 // Compare timestamps and bail if older status 76 mStatus = getString(cursor, Data.STATUS);
|
/external/qemu/include/fpu/ |
softfloat.h | 68 #define STATUS_PARAM , float_status *status 69 #define STATUS(field) status->field 70 #define STATUS_VAR , status 187 STATUS(float_detect_tininess) = val; 191 STATUS(flush_to_zero) = val; 195 STATUS(flush_inputs_to_zero) = val; 199 STATUS(default_nan_mode) = val; 201 INLINE int get_float_exception_flags(float_status *status) 203 return STATUS(float_exception_flags) [all...] |
/frameworks/base/telephony/java/com/android/ims/ |
ImsConferenceState.java | 45 // user > endpoint > status 46 public static final String STATUS = "status"; 49 * status-type (String) : 84 * conference-info : SIP status code (integer) 146 * Translates an {@code ImsConferenceState} status type to a telecom connection state. 148 * @param status The status type. 151 public static int getConnectionStateForStatus(String status) { 152 if (status.equals(STATUS_PENDING)) [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
ForkJoinTask.java | 107 * <p>The execution status of tasks may be queried at several levels 185 * responsible for maintaining their "status" field amidst relays 189 * (1) basic status maintenance 197 * The status field holds run control status bits packed into a 199 * CAS). Status is initially zero, and takes on nonnegative 200 * values until completed, upon which status (anded with 214 * bits) of status field. The lower bits are used for user-defined 218 /** The run status of this task */ 219 volatile int status; // accessed directly by pool and worker field in class:ForkJoinTask [all...] |
/packages/apps/Email/provider_src/com/android/email/mail/store/imap/ |
ImapConstants.java | 81 public static final String STATUS = "STATUS";
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
MessageStatusService.java | 37 * Service that gets started by the MessageStatusReceiver when a message status report is 43 private static final Uri STATUS_URI = Uri.parse("content://sms/status"); 80 // Create a "status/#" URL and use it to update the 81 // message's status in the database. 90 int status = message.getStatus(); local 95 log("updateMessageStatus: msgUrl=" + messageUri + ", status=" + status + 99 contentValues.put(Sms.STATUS, status); 104 error("Can't find message for status update: " + messageUri) [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
MessageListAdapter.java | 64 Sms.STATUS, 79 Mms.STATUS, 415 mColumnSmsStatus = cursor.getColumnIndexOrThrow(Sms.STATUS); 481 mColumnMmsStatus = cursor.getColumnIndexOrThrow(Mms.STATUS);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/arpa/ |
nameser_compat.h | 107 #define STATUS ns_o_status
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/arpa/ |
nameser_compat.h | 107 #define STATUS ns_o_status
|
/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsContract_StatusUpdatesTest.java | 91 // Inserting a new status message causes a timestamp to be inserted 101 private Uri insertStatusUpdate(long dataId, int presence, String status, Long timestamp) 107 .withValue(StatusUpdates.STATUS, status) 127 private void assertPresence(Uri uri, int status) throws Exception { 130 .withValue(StatusUpdates.PRESENCE, status) 137 private void assertStatus(Uri uri, String status) throws Exception { 140 .withValue(StatusUpdates.STATUS, status) 173 private void assertPrecedence(int status) { [all...] |