HomeSort by relevance Sort by last modified time
    Searched refs:TIMESTAMP (Results 1 - 25 of 39) sorted by null

1 2

  /dalvik/libcore/sql/src/main/java/java/sql/
Types.java 167 * The type code that identifies the SQL type {@code TIMESTAMP}.
169 public static final int TIMESTAMP = 93;
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 33 static final String TIMESTAMP = "Timestamp";
58 ID_COL, TIMESTAMP, TAG, ENTRY_TYPE, ACCURACY, LATITUDE, LONGITUDE,
115 private void setTimestamp(String timestamp) {
116 mTimestamp = timestamp;
171 cValues.put(TIMESTAMP, mTimestamp);
209 String timestamp = cursor.getString(cursor.getColumnIndex(TIMESTAMP)); local
213 entry.setTimestamp(timestamp);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothShare.java 214 * The name of the column containing the timestamp when the transfer is
223 public static final String TIMESTAMP = "timestamp";
BluetoothOppNotification.java 196 final int timestampIndex = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP);
206 int timeStamp = cursor.getInt(timestampIndex);
220 String batchID = Long.toString(timeStamp);
222 // sending objects in one batch has same timeStamp
293 long timeStamp = 0;
320 WHERE_COMPLETED_OUTBOUND, null, BluetoothShare.TIMESTAMP + " DESC");
325 final int timestampIndex = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP);
331 timeStamp = cursor.getLong(timestampIndex);
359 outNoti.when = timeStamp;
370 WHERE_COMPLETED_INBOUND, null, BluetoothShare.TIMESTAMP + " DESC")
    [all...]
BluetoothOppTransferHistory.java 104 final String sortOrder = BluetoothShare.TIMESTAMP + " DESC";
108 BluetoothShare.TOTAL_BYTES, BluetoothShare._DATA, BluetoothShare.TIMESTAMP,
BluetoothOppProvider.java 181 + BluetoothShare.TIMESTAMP + " INTEGER," + Constants.MEDIA_SCANNED
269 Long ts = values.getAsLong(BluetoothShare.TIMESTAMP);
273 filteredValues.put(BluetoothShare.TIMESTAMP, ts);
BluetoothOppTransferAdapter.java 120 int dateColumnId = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP);
BluetoothOppUtility.java 78 .getColumnIndexOrThrow(BluetoothShare.TIMESTAMP));
125 public static ArrayList<String> queryTransfersInBatch(Context context, Long timeStamp) {
127 final String WHERE = BluetoothShare.TIMESTAMP + " == " + timeStamp;
158 Long timeStamp, Uri uri) {
BluetoothOppManager.java 380 values.put(BluetoothShare.TIMESTAMP, ts);
BluetoothOppService.java 533 cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP)),
551 Log.v(TAG, "TIMESTAMP : " + info.mTimestamp);
566 * 3) If there is existing batch and timestamp match, insert transfer into batch
567 * 4) If there is existing batch and timestamp does not match, create a new batch and
692 info.mTimestamp = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP));
    [all...]
BluetoothOppObexServerSession.java 266 values.put(BluetoothShare.TIMESTAMP, mTimestamp);
445 long timestamp = 0; local
449 if (V) timestamp = System.currentTimeMillis();
464 + (System.currentTimeMillis() - timestamp) + " ms");
TestActivity.java 205 * BluetoothShare.TIMESTAMP}, null, null, null); Log.v(Constants.TAG,
257 values.put(BluetoothShare.TIMESTAMP, ts);
  /external/opencore/engines/adapters/player/framemetadatautility/include/
pv_frame_metadata_interface.h 85 TIMESTAMP,
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
XmlReportPrinter.java 64 private static final String TIMESTAMP = "timestamp";
130 String timestamp = dateFormat.format(new Date()); local
142 suite.print(serializer, timestamp);
170 void print(KXmlSerializer serializer, String timestamp) throws IOException {
178 serializer.attribute(ns, TIMESTAMP, timestamp);
  /dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
JDBCResultSetMetaData.java 32 case Types.TIMESTAMP: return "java.sql.Timestamp";
110 case Types.TIMESTAMP: return "timestamp";
JDBCDatabaseMetaData.java     [all...]
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageListUnitTests.java 82 String subject, long timestamp, int flagRead, int flagFavorite, int flagAttachment,
90 emap.put(MessageColumns.TIMESTAMP, timestamp);
  /packages/apps/Email/src/com/android/email/provider/
EmailContent.java 175 // source's timestamp (long) for this item
398 public static final String TIMESTAMP = "timeStamp";
449 public static final String KEY_TIMESTAMP_DESC = MessageColumns.TIMESTAMP + " desc";
475 MessageColumns.DISPLAY_NAME, MessageColumns.TIMESTAMP,
503 MessageColumns.DISPLAY_NAME, MessageColumns.TIMESTAMP,
609 values.put(MessageColumns.TIMESTAMP, mTimeStamp);
    [all...]
EmailProvider.java 292 + MessageColumns.TIMESTAMP + " integer, "
332 MessageColumns.TIMESTAMP,
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java     [all...]
  /external/libffi/
ltconfig 185 TIMESTAMP=" (1.641.2.256 2001/05/28 20:09:07 with GCC-local changes)"
375 --version) echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"; exit 0 ;;
    [all...]
ltmain.sh 47 TIMESTAMP=" (1.1220.2.456 2007/06/24 02:25:32)"
486 $PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP
922 # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageList.java 162 MessageColumns.DISPLAY_NAME, MessageColumns.SUBJECT, MessageColumns.TIMESTAMP,
1734 long timestamp = cursor.getLong(COLUMN_DATE); local
    [all...]
  /external/dbus/
ltmain.sh 47 TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)"
477 $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
913 # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
    [all...]
  /external/expat/conftools/
ltmain.sh 47 TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)"
457 $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
892 # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
    [all...]

Completed in 1667 milliseconds

1 2