HomeSort by relevance Sort by last modified time
    Searched full:timestamp (Results 1201 - 1225 of 4884) sorted by null

<<41424344454647484950>>

  /cts/hostsidetests/aadb/src/android/aadb/cts/
TestDeviceFuncTest.java 270 // get 'ls -l' attributes of file which includes timestamp
281 // verify 1st file timestamp did not change
292 // adjust 1st file's last-modified timestamp according to persist.sys.timezone
296 long timestamp = tmpFile.lastModified() + tz.getRawOffset(); local
298 timestamp += tz.getDSTSavings();
300 tmpFile.setLastModified(timestamp);
  /docs/source.android.com/src/devices/graphics/
arch-st.jd 58 calls. One call retrieves a timestamp, the other a transformation matrix, the
61 just a buffer handle to the consumer. Each buffer is accompanied by a timestamp
70 <p>The timestamp is useful for certain buffer sources. For example, suppose you
73 presentation timestamp for each frame; but you want to base that on the time
75 app. The timestamp provided with the buffer is set by the camera code, resulting
143 timestamp from SurfaceTexture). The encoder thread pulls the encoded output
  /external/autotest/client/deps/lansim/src/py/
simulator.py 47 # timestamp stored on the key. The event list is a list of callback
49 # timestamp. This is used to fire time-based events.
109 timestamp = time.time() + timeout
111 if timestamp not in self._events:
112 self._events[timestamp] = [callback]
114 self._events[timestamp].append(callback)
  /external/autotest/site_utils/
collect_suite_time_stats.py 57 We take into account only the records whose timestamp is larger than
58 the timestamp of the last "Queued" record.
111 @return: Tuple of sum of durations and the timestamp for the last
149 @param t_start: Beginning timestamp.
357 @param start_time: Beginning timestamp.
358 @param end_time: Ending timestamp.
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
ls.py 38 # Regex that assists with converting JSON timestamp to ls-style output.
39 # This excludes timestamp fractional seconds, for example:
330 timestamp = JSON_TIMESTAMP_RE.sub(
332 printstr = '%(size)10s %(timestamp)s %(url)s'
343 'timestamp': timestamp,
  /external/emma/lib/internal/
stamptool.jar 
  /external/google-breakpad/src/testing/gtest/test/
gtest_xml_output_unittest.py 60 <testsuites tests="23" failures="4" disabled="2" errors="0" time="*" timestamp="*" name="AllTests">
133 <testsuites tests="0" failures="0" disabled="0" errors="0" time="*" timestamp="*" name="AllTests">
167 """Checks whether the timestamp attribute in the XML output is valid.
170 the timestamp attribute in the testsuites tag is valid.
173 date_time_str = actual.documentElement.getAttributeNode('timestamp').value
186 # timestamp value should be near the current local time
  /external/libchrome/base/trace_event/
trace_log.h 141 typedef void (*EventCallback)(TimeTicks timestamp,
228 const TimeTicks& timestamp,
242 const TimeTicks& timestamp,
380 const TimeTicks& timestamp,
415 TimeTicks OffsetTimestamp(const TimeTicks& timestamp) const {
416 return timestamp - time_offset_;
  /external/v8/src/tracing/
trace-event.h 245 // Adds a trace event with a given timestamp. Not Implemented.
247 timestamp, flags, ...) \
250 // Adds a trace event with a given id and timestamp. Not Implemented.
252 phase, category_group, name, id, timestamp, flags, ...) \
255 // Adds a trace event with a given id, thread_id, and timestamp. Not
258 phase, category_group, name, id, thread_id, timestamp, flags, ...) \
  /external/webp/include/webp/
demux.h 231 int timestamp;
232 WebPAnimDecoderGetNext(dec, &buf, &timestamp);
233 // ... (Render 'buf' based on 'timestamp').
315 // timestamp - (out) timestamp of the frame in milliseconds.
320 uint8_t** buf, int* timestamp);
  /external/webp/src/webp/
demux.h 231 int timestamp;
232 WebPAnimDecoderGetNext(dec, &buf, &timestamp);
233 // ... (Render 'buf' based on 'timestamp').
315 // timestamp - (out) timestamp of the frame in milliseconds.
320 uint8_t** buf, int* timestamp);
  /external/webrtc/webrtc/modules/audio_coding/neteq/
delay_manager.cc 73 uint32_t timestamp,
83 last_timestamp_ = timestamp;
90 if (!IsNewerTimestamp(timestamp, last_timestamp_) ||
92 // Wrong timestamp or sequence order; use stored value.
97 static_cast<uint32_t>(timestamp - last_timestamp_) /
140 last_timestamp_ = timestamp;
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
RTPencode.cc 111 uint32_t timestamp,
116 uint32_t* timestamp,
293 uint32_t timestamp = 0xAC1245; local
602 timestamp = 0xFFFFFFFF - fs * 10; /* should give wrap-around in 10 seconds */
627 DTMFtimestamp = timestamp; // save this timestamp
646 offset = (uint32_t)sendtime; //(timestamp/(fs/1000));
693 red_TS[1] = timestamp;
709 red_TS[1] = timestamp;
724 makeRTPheader(rtp_data, payloadType, seqNo++, timestamp, ssrc)
    [all...]
  /frameworks/av/camera/
Camera.cpp 363 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr)
374 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
385 listener->postDataTimestamp(timestamp, msgType, dataPtr);
392 void Camera::recordingFrameHandleCallbackTimestamp(nsecs_t timestamp, native_handle_t* handle)
403 proxylistener->recordingFrameHandleCallbackTimestamp(timestamp, handle);
414 listener->postRecordingFrameHandleTimestamp(timestamp, handle);
  /frameworks/base/services/core/java/com/android/server/pm/
PackageSettingBase.java 95 long timeStamp;
167 timeStamp = base.timeStamp;
236 timeStamp = newStamp;
247 timeStamp = base.timeStamp;
  /frameworks/native/libs/gui/tests/
IGraphicBufferProducer_test.cpp 127 timestamp = QUEUE_BUFFER_INPUT_TIMESTAMP;
138 timestamp,
147 QueueBufferInputBuilder& setTimestamp(int64_t timestamp) {
148 this->timestamp = timestamp;
183 int64_t timestamp; member in struct:android::IGraphicBufferProducerTest::QueueBufferInputBuilder
  /frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
GL2CameraEye.java 191 long timestamp = mSurface.getTimestamp(); local
192 doPhysics(timestamp);
339 private void doPhysics(long timestamp) {
345 mLastTime = timestamp;
347 float deltaT = (timestamp - mLastTime)/1000000000.f; // To seconds
355 mLastTime = timestamp;
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaItemStatus.java 61 private static final String KEY_TIMESTAMP = "timestamp";
203 * Gets the timestamp associated with the status information in
206 * @return The status timestamp in the {@link SystemClock#elapsedRealtime()} time base.
258 result.append("timestamp=");
318 * reference timestamp.
341 * Sets the timestamp associated with the status information in
  /hardware/qcom/msm8994/original-kernel-headers/media/
msm_vpu.h 150 * VPU_EVENT_SESSION_TIMESTAMP: New Session timestamp
242 /* presentation timestamp of the frame */
261 struct vpu_info_frame_timestamp timestamp; member in union:vpu_control::control_data
329 * VPU_CTRL_TIMESTAMP_INFO_MODE: timestamp reporting mode,
330 * data: value specifying how frequent a timestamp reporting info, value
333 * VPU_INFO_TIMESTAMP: timestamp information (get only)
  /hardware/qcom/msm8996/original-kernel-headers/media/
msm_vpu.h 150 * VPU_EVENT_SESSION_TIMESTAMP: New Session timestamp
242 /* presentation timestamp of the frame */
261 struct vpu_info_frame_timestamp timestamp; member in union:vpu_control::control_data
329 * VPU_CTRL_TIMESTAMP_INFO_MODE: timestamp reporting mode,
330 * data: value specifying how frequent a timestamp reporting info, value
333 * VPU_INFO_TIMESTAMP: timestamp information (get only)
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_output_unittest.py 60 <testsuites tests="23" failures="4" disabled="2" errors="0" time="*" timestamp="*" name="AllTests" ad_hoc_property="42">
133 <testsuites tests="0" failures="0" disabled="0" errors="0" time="*" timestamp="*" name="AllTests">
167 """Checks whether the timestamp attribute in the XML output is valid.
170 the timestamp attribute in the testsuites tag is valid.
173 date_time_str = actual.documentElement.getAttributeNode('timestamp').value
186 # timestamp value should be near the current local time
  /system/bt/stack/btm/
btm_dev.c 94 p_dev_rec->timestamp = btm_cb.dev_rec_count++;
283 p_dev_rec->timestamp = btm_cb.dev_rec_count++;
549 if (p_dev_rec->timestamp < ot) {
551 ot = p_dev_rec->timestamp;
556 if (p_dev_rec->timestamp < ot_paired) {
558 ot_paired = p_dev_rec->timestamp;
  /bionic/libc/include/netinet/
ip_icmp.h 137 #define ICMP_TSLEN (8 + 3 * sizeof (n_time)) /* timestamp */
184 #define ICMP_TSTAMP 13 /* timestamp request */
185 #define ICMP_TSTAMPREPLY 14 /* timestamp reply */
  /cts/tests/camera/src/android/hardware/camera2/cts/helpers/
CameraSessionUtils.java 127 long timestamp, long frameNumber) {
128 mCaptureTimeQueue.offer(timestamp);
129 super.onCaptureStarted(session, request, timestamp, frameNumber);
  /cts/tests/tests/media/src/android/media/cts/
CodecImage.java 110 * Get the timestamp associated with this frame.
112 * The timestamp is measured in nanoseconds, and is monotonically
113 * increasing. However, the zero point and whether the timestamp can be

Completed in 997 milliseconds

<<41424344454647484950>>