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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/include/
mp4dec_api.h 65 uint32 timeStamp; /* time stamp */
109 uint32 timestamp; member in struct:tagVopHeaderInfo
155 Bool PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
156 Bool PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
157 OSCL_IMPORT_REF Bool PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *bitstream[], uint32 *timestamp, int32 *buffer_size, uint use_ext_timestamp[], uint8* currYUV);
158 Bool PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp[], uint8 *currYUV);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Hints.java 150 Calendar timestamp = Calendar.getInstance(); local
151 timestamp.setTimeInMillis(timeInMillis);
153 return (today.get(Calendar.YEAR) == timestamp.get(Calendar.YEAR) &&
154 today.get(Calendar.DAY_OF_MONTH) == timestamp.get(Calendar.DAY_OF_MONTH) &&
155 today.get(Calendar.MONTH) == timestamp.get(Calendar.MONTH));
  /external/webkit/LayoutTests/storage/
sql-data-types.js 15 timestamp: new Date("Wed Feb 06 2008 12:16:52 GMT+0200 (EET)").valueOf(),
36 i = "timestamp"; shouldBeSameTypeAndValue(i, testValues[i], rs[i]);
60 tx.executeSql("INSERT INTO DataTypeTestTable (id, real, timestamp, text, blob) VALUES (?,?,?,?,?)",
61 [testValues.id, testValues.real, testValues.timestamp, testValues.text, testValues.blob],
70 tx.executeSql("CREATE TABLE IF NOT EXISTS DataTypeTestTable (id INTEGER UNIQUE, real REAL, timestamp INTEGER, text TEXT, blob BLOB)", [],
  /development/pdk/
Pdk.mk 176 $(pdk_docs_intermediates)/pdk-timestamp: pdk_doxygen all_copied_pdk_templates
177 @touch $(pdk_docs_intermediates)/pdk-timestamp
179 $(LOCAL_PATH)/pdk-timestamp: $(pdk_docs_intermediates)/pdk-timestamp
183 LOCAL_SRC_FILES := pdk-timestamp samples/samplejni/src/com/example/jniexample/JNIExample.java
217 .PHONY: pdk pdk_docs pdk_doxygen all_copied_pdk_headers all_copied_pdk_templates pdk-timestamp
231 $(pdk_docs_tarfile): $(DOCS_OUT_DIR)-timestamp $(OUT_DOCS)/app.yaml
  /external/bluetooth/bluez/audio/
gstrtpsbcpay.h 51 GstClockTime timestamp; member in struct:_GstRtpSBCPay
  /external/ipsec-tools/src/racoon/
evt.h 41 time_t timestamp; member in struct:evtdump
  /external/webkit/WebCore/platform/
PlatformMouseEvent.h 86 int clickCount, bool shift, bool ctrl, bool alt, bool meta, double timestamp)
96 , m_timestamp(timestamp)
116 double timestamp() const { return m_timestamp; } function in class:WebCore::PlatformMouseEvent
128 int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp,
  /hardware/ti/wlan/wl1271/stad/src/AirLink_Managment/
regulatoryDomain.h 75 TI_UINT32 timestamp; member in struct:__anon10833
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/NetworkCtrl/RegulatoryDomain/
regulatoryDomain.h 77 UINT32 timestamp; member in struct:__anon16496
  /system/wlan/ti/wilink_6_1/stad/src/AirLink_Managment/
regulatoryDomain.h 75 TI_UINT32 timestamp; member in struct:__anon17548
  /external/qemu/telephony/
sms.h 32 /* An SMS timestamp structure */
67 const SmsTimeStampRec* timestamp );
90 /* retrieve the service center timestamp of a SMS-DELIVER pdu, return -1 otherwise */
91 extern int smspdu_get_sc_timestamp( SmsPDU pdu, SmsTimeStamp timestamp );
  /external/webkit/WebCore/platform/mac/
PlatformMouseEventMac.mm 155 , m_timestamp([event timestamp])
162 int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp,
173 , m_timestamp(timestamp)
  /external/qemu/distrib/sdl-1.2.12/src/events/
SDL_keyboard.c 46 Uint32 timestamp; /* the time the first keydown event occurred */ member in struct:__anon6028
328 SDL_KeyRepeat.timestamp = 0;
489 if ( SDL_KeyRepeat.timestamp &&
491 SDL_KeyRepeat.timestamp = 0;
524 SDL_KeyRepeat.timestamp=SDL_GetTicks();
539 if ( SDL_KeyRepeat.timestamp ) {
543 interval = (now - SDL_KeyRepeat.timestamp);
546 SDL_KeyRepeat.timestamp = now;
551 SDL_KeyRepeat.timestamp = now;
569 SDL_KeyRepeat.timestamp = 0
    [all...]
  /external/tcpdump/
print-lspping.c 52 * | TimeStamp Sent (seconds) |
54 * | TimeStamp Sent (microseconds) |
56 * | TimeStamp Received (seconds) |
58 * | TimeStamp Received (microseconds) |
470 struct timeval timestamp; local
552 timestamp.tv_sec=EXTRACT_32BITS(lspping_com_header->ts_sent_sec);
553 timestamp.tv_usec=EXTRACT_32BITS(lspping_com_header->ts_sent_usec);
554 printf("\n\t Sender Timestamp: ");
555 ts_print(&timestamp);
557 timestamp.tv_sec=EXTRACT_32BITS(lspping_com_header->ts_rcvd_sec)
    [all...]
  /bootable/recovery/minzip/
DirUtil.c 57 const struct utimbuf *timestamp, bool stripFileName)
152 if (timestamp != NULL && utime(cpath, timestamp)) {
  /frameworks/base/core/java/android/bluetooth/
HeadsetBase.java 115 long timestamp; local
125 if (DBG) timestamp = System.currentTimeMillis();
128 (System.currentTimeMillis() - timestamp) + " ms");
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 30 import java.security.Timestamp;
37 @TestTargetClass(Timestamp.class)
39 * Tests for <code>Timestamp</code> class fields and methods
53 method = "Timestamp",
58 new Timestamp(null, cpath);
64 new Timestamp(now, null);
70 Timestamp timestamp = new Timestamp(now, cpath); local
71 assertEquals("not expected value", now, timestamp.getTimestamp())
    [all...]
  /device/htc/passion-common/libsensors/
LightSensor.cpp 105 mPendingEvent.timestamp = getTimestamp();
127 mPendingEvent.timestamp = timevalToNano(event->time);
ProximitySensor.cpp 106 mPendingEvent.timestamp = getTimestamp();
125 mPendingEvent.timestamp = timevalToNano(event->time);
  /device/samsung/crespo/libsensors/
LightSensor.cpp 118 mPendingEvent.timestamp = getTimestamp();
139 mPendingEvent.timestamp = timevalToNano(event->time);
ProximitySensor.cpp 103 mPendingEvent.timestamp = getTimestamp();
125 mPendingEvent.timestamp = timevalToNano(event->time);
  /frameworks/base/include/camera/
Camera.h 145 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) = 0;
216 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
UUIDTest.java 35 assertEquals(0x1d07decf81d4faeL, uuid.timestamp());
36 assertEquals(130742845922168750L, uuid.timestamp());
117 * @see UUID#timestamp()
121 assertEquals(0x0, uuid.timestamp());
124 assertEquals(0x333555577777777L, uuid.timestamp());
128 uuid.timestamp();
134 uuid.timestamp();
314 assertEquals(130742845922168750L, actual.timestamp());
324 assertEquals(0L, actual.timestamp());
  /sdk/eclipse/buildConfig/
build.properties 118 # Timestamp for the build. Used in naming the build output
119 timestamp=007
  /external/dbus/dbus/
dbus-keyring.c 97 * as unix timestamp. signed long
294 long timestamp; local
364 _dbus_get_current_time (&timestamp, NULL);
367 keys[n_keys-1].creation_time = timestamp;
479 long timestamp; local
505 if (!_dbus_string_parse_int (&line, next, &timestamp, &next))
507 _dbus_verbose ("could not parse secret key timestamp\n");
511 if (timestamp < 0 ||
512 (now + MAX_TIME_TRAVEL_SECONDS) < timestamp ||
513 (now - EXPIRE_KEYS_TIMEOUT_SECONDS) > timestamp)
    [all...]

Completed in 313 milliseconds

1 23 4 5 6 7 8 91011>>