HomeSort by relevance Sort by last modified time
    Searched refs:TIMESTAMP (Results 51 - 75 of 262) sorted by null

1 23 4 5 6 7 8 91011

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppNotification.java 120 long timeStamp = 0; // Database time stamp. Used for sorting ongoing transfers.
231 final int timestampIndex = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP);
243 long timeStamp = cursor.getLong(timestampIndex);
259 String batchID = Long.toString(timeStamp);
261 // sending objects in one batch has same timeStamp
267 item.timeStamp = timeStamp;
333 b.setWhen(item.timeStamp);
358 long timeStamp = 0;
385 WHERE_COMPLETED_OUTBOUND, null, BluetoothShare.TIMESTAMP + " DESC")
    [all...]
BluetoothOppTransferAdapter.java 120 int dateColumnId = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP);
BluetoothOppUtility.java 95 .getColumnIndexOrThrow(BluetoothShare.TIMESTAMP));
140 public static ArrayList<String> queryTransfersInBatch(Context context, Long timeStamp) {
142 final String WHERE = BluetoothShare.TIMESTAMP + " == " + timeStamp;
173 Long timeStamp, Uri uri) {
BluetoothOppManager.java 440 values.put(BluetoothShare.TIMESTAMP, ts);
BluetoothOppService.java 583 cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP)),
601 Log.v(TAG, "TIMESTAMP : " + info.mTimestamp);
616 * 3) If there is existing batch and timestamp match, insert transfer into batch
617 * 4) If there is existing batch and timestamp does not match, create a new batch and
736 info.mTimestamp = cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP));
    [all...]
BluetoothOppObexServerSession.java 273 values.put(BluetoothShare.TIMESTAMP, mTimestamp);
449 long timestamp = 0; local
453 if (V) timestamp = System.currentTimeMillis();
469 + (System.currentTimeMillis() - timestamp) + " ms");
TestActivity.java 205 * BluetoothShare.TIMESTAMP}, null, null, null); Log.v(Constants.TAG,
257 values.put(BluetoothShare.TIMESTAMP, ts);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
DatabaseHelper.java 108 /* Timestamp for sorting purposes */
111 /* Last read message timestamp */
299 // Primary sort index for messages table : by conversation id, status, received timestamp.
335 /* de-normalized copy of timestamp from the messages table. This is populated
338 public static final String TIMESTAMP = "timestamp";
353 + PartColumns.TIMESTAMP + " INT, "
365 + " SET " + PartColumns.TIMESTAMP + "="
374 + " FOR EACH ROW BEGIN UPDATE " + PARTS_TABLE + " SET " + PartColumns.TIMESTAMP
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_extensions.c 126 if (drm_intel_reg_read(intel->bufmgr, TIMESTAMP, &dummy) == 0)
  /external/vogar/src/vogar/
XmlReportPrinter.java 78 String timestamp = getGMTTimestamp(); local
82 suite.printReport(timestamp, fileName);
126 private void print(KXmlSerializer serializer, String timestamp) throws IOException {
133 serializer.attribute(ns, XmlReportConstants.TIMESTAMP, timestamp);
175 void printReport(String timestamp, String fileName) {
185 print(serializer, timestamp);
  /external/webrtc/tools/matlab/
rtpAnalyze.m 18 [SeqNo,TimeStamp,ArrTime,Size,PT,M,SSRC] = importfile(input_file);
25 TimeStamp = TimeStamp(ix);
55 TimeStamp = TimeStamp(ix);
63 %% Unwrap SeqNo and TimeStamp.
65 TimeStampUW = maxUnwrap(TimeStamp, 4294967295);
178 function [SeqNo,TimeStamp,SendTime,Size,PT,M,SSRC] = ...
181 % [SEQNO,TIMESTAMP,SENDTIME,SIZE,PT,M,SSRC] = IMPORTFILE(FILENAME) Reads
184 % [SEQNO,TIMESTAMP,SENDTIME,SIZE,PT,M,SSRC] = IMPORTFILE(FILENAME
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.event_1.2.0.v20100503.jar 
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_queryobj.c 57 /* The timestamp write below is a non-zero post-sync op, which on
164 * other clock scaling in the system). The timestamp register we can
460 drm_intel_reg_read(intel->bufmgr, TIMESTAMP, &result);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentsCreateFragment.java 175 uri, null, null, null, RecentColumns.TIMESTAMP + " DESC", signal);
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java     [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Lexer.java 132 TokenTypes.TIMESTAMP);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java 437 // source's timestamp (long) for this item
643 public static final String TIMESTAMP = "timeStamp";
    [all...]
  /packages/apps/Email/provider_src/com/android/email/service/
ImapService.java 216 MessageColumns.TIMESTAMP
242 "MIN(" + MessageColumns.TIMESTAMP + ")"
402 // b/11520812 Ignore message with timestamp = 0 (which includes NULL)
407 MessageColumns.TIMESTAMP + "!=0",
562 + " AND " + MessageColumns.TIMESTAMP + ">=?",
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
SafeConstructor.java 57 this.yamlConstructors.put(Tag.TIMESTAMP, new ConstructYamlTimestamp());
332 throw new YAMLException("Unexpected timestamp: " + nodeValue);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/
SafeRepresenter.java 395 return representScalar(getTag(data.getClass(), Tag.TIMESTAMP), buffer.toString(), null);
  /external/c-ares/
ltmain.sh 83 TIMESTAMP=""
    [all...]
  /external/libcap-ng/libcap-ng-0.7/
ltmain.sh 84 TIMESTAMP=""
    [all...]
  /external/libedit/
ltmain.sh 84 TIMESTAMP=""
    [all...]
  /external/libevent/
ltmain.sh 84 TIMESTAMP=""
    [all...]
  /external/libexif/
ltmain.sh 83 TIMESTAMP=""
    [all...]

Completed in 713 milliseconds

1 23 4 5 6 7 8 91011