HomeSort by relevance Sort by last modified time
    Searched refs:STATUS (Results 26 - 50 of 121) sorted by null

12 3 4 5

  /packages/apps/Mms/src/com/android/mms/util/
DownloadManager.java 224 // Use the STATUS field to store the state of downloading process
227 values.put(Mms.STATUS, state);
263 uri, new String[] {Mms.STATUS}, null, null, null);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactLoader.java 51 Data._ID, Data.STATUS, Data.STATUS_RES_PACKAGE, Data.STATUS_ICON,
80 + " IS NOT NULL OR " + StatusUpdates.STATUS + " IS NOT NULL", null, null);
88 final DataStatus status = new DataStatus(cursor); local
90 statuses.put(dataId, status);
  /external/chromium_org/ipc/
ipc_channel_posix_unittest.cc 34 enum STATUS {
83 STATUS status() { return status_; } function in class:__anon10726::IPCChannelPosixTestListener
90 // The current status of the listener.
91 STATUS status_;
245 ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
255 ASSERT_EQ(IPCChannelPosixTestListener::CHANNEL_ERROR, listener.status());
275 ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
284 ASSERT_EQ(IPCChannelPosixTestListener::CONNECTED, listener.status());
295 ASSERT_EQ(IPCChannelPosixTestListener::CHANNEL_ERROR, listener.status());
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppProvider.java 181 + BluetoothShare.STATUS + " INTEGER, " + BluetoothShare.TOTAL_BYTES
269 filteredValues.put(BluetoothShare.STATUS, BluetoothShare.STATUS_PENDING);
325 + " AND " + BluetoothShare.STATUS + "=" + BluetoothShare.STATUS_SUCCESS);
BluetoothOppTransferAdapter.java 71 int status = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.STATUS)); local
73 if (BluetoothShare.isStatusError(status)) {
103 if (BluetoothShare.isStatusCompleted(status)) {
106 if (BluetoothShare.isStatusError(status)) {
107 tv.setText(BluetoothOppUtility.getStatusDescription(mContext, status, deviceName));
Constants.java 145 /** permission needed to be able to receive handover status requests */
275 public static void updateShareStatus(Context context, int id, int status) {
278 updateValues.put(BluetoothShare.STATUS, status);
280 Constants.sendIntentIfCompleted(context, contentUri, status);
284 * This function should be called whenever transfer status change to
287 public static void sendIntentIfCompleted(Context context, Uri contentUri, int status) {
288 if (BluetoothShare.isStatusCompleted(status)) {
BluetoothOppService.java 565 cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.STATUS)),
583 Log.v(TAG, "STATUS : " + info.mStatus);
592 /* Mark the info as failed if it's in invalid status */
676 int statusColumn = cursor.getColumnIndexOrThrow(BluetoothShare.STATUS);
    [all...]
BluetoothOppNotification.java 59 static final String status = "(" + BluetoothShare.STATUS + " == '192'" + ")"; field in class:BluetoothOppNotification
74 static final String WHERE_RUNNING = status + " AND " + visible + " AND " + confirm;
76 static final String WHERE_COMPLETED = BluetoothShare.STATUS + " >= '200' AND " + visible +
378 final int statusIndex = cursor.getColumnIndexOrThrow(BluetoothShare.STATUS);
385 int status = cursor.getInt(statusIndex); local
387 if (BluetoothShare.isStatusError(status)) {
432 int status = cursor.getInt(statusIndex); local
434 if (BluetoothShare.isStatusError(status)) {
  /bionic/libc/private/
arpa_nameser_compat.h 158 #define STATUS ns_o_status
  /external/dnsmasq/src/
nameser.h 122 #define STATUS 0x2 /* nameserver status query */
257 * Status return codes for T_UNSPEC conversion routines
  /external/tcpdump/
nameser.h 93 #define STATUS 0x2 /* nameserver status query */
216 * Status return codes for T_UNSPEC conversion routines
print-atm.c 207 { STATUS, "Status" },
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsMessageTest.java 58 private static final int STATUS = 0;
103 assertEquals(STATUS, sms.getStatus());
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailContentProvider.java 148 case STATUS:
223 case STATUS:
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarInstancesHelper.java 110 Events.STATUS,
170 int statusColumn = entries.getColumnIndex(Events.STATUS);
251 int status = entries.getInt(statusColumn); local
276 if (status == Events.STATUS_CANCELED) {
371 initialValues.put(Events.STATUS, status);
390 initialValues.put(Events.STATUS, Events.STATUS_CANCELED);
405 // we temporarily store the DELETED status (will be cleaned later)
438 // ORIGINAL_EVENT_AND_CALENDAR, ORIGINAL_INSTANCE_TIME, STATUS (since they can
442 // ORIGINAL_EVENT_AND_CALENDAR, ORIGINAL_INSTANCE_TIME, STATUS
509 Integer status = values.getAsInteger(Events.STATUS); local
    [all...]
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 184 * {@code TP-Status} value for the message, or -1 if no status has been received.
187 public static final String STATUS = "status";
189 /** TP-Status: no status received. */
191 /** TP-Status: complete. */
193 /** TP-Status: pending. */
195 /** TP-Status: failed. */
349 values.put(STATUS, STATUS_PENDING)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 90 Events.STATUS, // 21
324 values.put(Events.STATUS, Events.STATUS_CONFIRMED);
349 values.put(Events.STATUS, originalModel.mEventStatus);
372 values.put(Events.STATUS, originalModel.mEventStatus);
395 values.put(Events.STATUS, originalModel.mEventStatus);
469 Log.d(TAG, "Setting attendee status to " + model.mSelfAttendeeStatus);
    [all...]
  /external/qemu/fpu/
softfloat-native.c 1 /* Native implementation of soft float functions. Only a single status
11 STATUS(float_rounding_mode) = val;
23 STATUS(floatx80_rounding_precision) = val;
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduHeaders.java 51 public static final int STATUS = 0x95;
171 * X-Mms-Status Field.
210 * X-Mms-Response-Status field types.
245 * X-Mms-Retrieve-Status field types.
264 * X-Mms-Read-Status field types.
270 * X-Mms-Cancel-Status field types.
310 * X-Mms-Store-Status field types.
401 case STATUS:
PduComposer.java 562 case PduHeaders.STATUS:
684 // X-Mms-Read-Status
719 // X-Mms-Status
720 if (appendHeader(PduHeaders.STATUS) != PDU_COMPOSE_SUCCESS) {
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
DeleteEventHelper.java 345 // update a recurrence exception by setting its status to "canceled"
347 values.put(Events.STATUS, Events.STATUS_CANCELED);
370 // with the status "cancelled".
389 values.put(Events.STATUS, Events.STATUS_CANCELED);
  /external/chromium_org/chrome/test/chromedriver/client/
command_executor.py 95 GET_STATUS = (_Method.GET, '/session/:sessionId/application_cache/status')
137 STATUS = (_Method.GET, '/status')
166 if response.status == 303:
169 if response.status != 200:
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_pipes.c 366 STATUS status = NU_SUCCESS;
370 status = NU_Reset_Pipe(&(pHandle->pipe));
372 if (NU_SUCCESS != status)
377 status);
  /hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/fm/
FmRadioIntent.java 48 public static final String STATUS = "fm.rx.intent.STATUS";
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
MessageMove.java 42 private static final String SELECTION_LAST_SYNCED_MAILBOX = MESSAGE_KEY + "=? and " + STATUS
110 * Get the final moves that we want to upsync to the server, setting the status in the DB for

Completed in 1351 milliseconds

12 3 4 5