HomeSort by relevance Sort by last modified time
    Searched full:timestamp (Results 176 - 200 of 4313) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
hdsmart.h 70 unsigned int timestamp; member in struct:ata_smart_errorlog_command_struct_s
77 unsigned short timestamp; member in struct:ata_smart_errorlog_error_struct_s
99 unsigned short timestamp; member in struct:ata_smart_selftestlog_struct_s
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
hdsmart.h 70 unsigned int timestamp; member in struct:ata_smart_errorlog_command_struct_s
77 unsigned short timestamp; member in struct:ata_smart_errorlog_error_struct_s
99 unsigned short timestamp; member in struct:ata_smart_selftestlog_struct_s
  /external/chromium_org/base/test/
test_reg_util_win.cc 52 const base::Time& timestamp) {
54 key_path += L"\\" + base::Int64ToString16(timestamp.ToInternalValue());
84 RegistryOverrideManager::RegistryOverrideManager(const base::Time& timestamp,
86 : timestamp_(timestamp), test_key_root_(test_key_root) {
  /external/chromium_org/chrome/browser/resources/user_actions/
user_actions.html 16 <thead><th>User Action</th><th>Timestamp (sec.)</th></thead>
  /external/chromium_org/chrome/browser/spellchecker/
misspelling.cc 35 : location(0), length(0), hash(0), timestamp(base::Time::Now()) {
48 timestamp(base::Time::Now()) {
57 "timestamp",
58 base::Int64ToString(static_cast<long>(timestamp.ToJsTime())));
  /external/chromium_org/chrome/common/metrics/proto/
user_action_event.proto 19 // The timestamp for the event, in seconds since the epoch.
  /external/chromium_org/media/base/
audio_buffer.h 42 const base::TimeDelta timestamp,
46 // not initialized. Timestamp and duration are set to kNoTimestamp().
55 const base::TimeDelta timestamp,
74 // Timestamp and duration are adjusted to reflect the fewer frames.
75 // Note that repeated calls to TrimStart() may result in timestamp() and
90 base::TimeDelta timestamp() const { return timestamp_; } function in class:media::AudioBuffer
96 void set_timestamp(base::TimeDelta timestamp) { timestamp_ = timestamp; }
119 const base::TimeDelta timestamp,
demuxer_perftest.cc 58 // present in |demuxer| in as-close-to-monotonically-increasing timestamp order.
77 base::TimeDelta* timestamp,
118 base::TimeDelta timestamp; local
122 base::MessageLoop::current(), &end_of_stream, &timestamp));
125 CHECK(end_of_stream || timestamp != media::kNoTimestamp());
127 last_read_timestamp_[index] = timestamp;
142 base::TimeDelta* timestamp,
148 *timestamp = *end_of_stream ? media::kNoTimestamp() : buffer->timestamp();
  /external/chromium_org/mojo/shell/
init.cc 21 false, // Timestamp
  /external/chromium_org/net/cert/
ct_serialization.h 37 // Encodes the data signed by a Signed Certificate Timestamp (SCT) into
40 // |timestamp| timestamp from the SCT.
46 const base::Time& timestamp,
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.h 56 virtual void dispatchKeyEvent(ErrorString*, const String& type, const int* modifiers, const double* timestamp, const String* text, const String* unmodifiedText, const String* keyIdentifier, const int* windowsVirtualKeyCode, const int* nativeVirtualKeyCode, const int* macCharCode, const bool* autoRepeat, const bool* isKeypad, const bool* isSystemKey);
57 virtual void dispatchMouseEvent(ErrorString*, const String& type, int x, int y, const int* modifiers, const double* timestamp, const String* button, const int* clickCount, const bool* deviceSpace);
58 virtual void dispatchTouchEvent(ErrorString*, const String& type, const RefPtr<JSONArray>& touchPoints, const int* modifiers, const double* timestamp);
59 virtual void dispatchGestureEvent(ErrorString*, const String& type, int x, int y, const double* timestamp, const int* deltaX, const int* deltaY, const double* scale);
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCStatsReport.cpp 33 PassRefPtr<RTCStatsReport> RTCStatsReport::create(const String& id, const String& type, double timestamp)
35 return adoptRef(new RTCStatsReport(id, type, timestamp));
38 RTCStatsReport::RTCStatsReport(const String& id, const String& type, double timestamp)
41 , m_timestamp(timestamp)
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIAccessor.cpp 63 void MIDIAccessor::sendMIDIData(unsigned portIndex, const unsigned char* data, size_t length, double timeStamp)
65 m_accessor->sendMIDIData(portIndex, data, length, timeStamp);
83 void MIDIAccessor::didReceiveMIDIData(unsigned portIndex, const unsigned char* data, size_t length, double timeStamp)
85 m_client->didReceiveMIDIData(portIndex, data, length, timeStamp);
  /external/chromium_org/tools/gyp/test/ninja/solibs_avoid_relinking/
solibs_avoid_relinking.gyp 11 # Incremental linking enabled so that .lib timestamp is maintained when
  /external/chromium_org/ui/message_center/
notification_types.cc 10 const char kTimestampKey[] = "timestamp";
  /frameworks/av/camera/
ICameraRecordingProxyListener.cpp 38 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData)
43 data.writeInt64(timestamp);
61 nsecs_t timestamp = data.readInt64(); local
64 dataCallbackTimestamp(timestamp, msgType, imageData);
  /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);
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 54 * Time Synchronization Function (tsf) timestamp in microseconds when
57 public long timestamp; field in class:ScanResult
87 this.timestamp = tsf;
101 this.timestamp = tsf;
115 timestamp = source.timestamp;
136 append(", timestamp: ").
137 append(timestamp);
164 dest.writeLong(timestamp);
  /frameworks/native/services/sensorservice/tests/
sensorservicetest.cpp 40 t = float(buffer[i].timestamp - oldTimeStamp) / s2ns(1);
42 t = float(buffer[i].timestamp - sStartTime) / s2ns(1);
44 oldTimeStamp = buffer[i].timestamp;
48 buffer[i].timestamp,
  /external/chromium_org/build/android/pylib/perf/
surface_stats_collector.py 139 td = surface_after['timestamp'] - self._surface_before['timestamp']
181 timestamps += [timestamp for timestamp in new_timestamps
182 if timestamp > last_timestamp]
240 # C) timestamp immediately after SF submitted that frame to the h/w
242 # The difference between the 1st and 3rd timestamp is the frame-latency.
266 # latency data, SurfaceFlinger gives the frame a timestamp of INT64_MAX.
275 timestamp = long(fields[1])
276 if timestamp == pending_fence_timestamp
    [all...]
  /external/chromium_org/chrome/browser/ui/toolbar/
recent_tabs_builder_test_helper.cc 24 base::Time timestamp; member in struct:__anon6208::TitleTimestampPair
29 return t1.timestamp > t2.timestamp;
63 base::Time timestamp; member in struct:RecentTabsBuilderTestHelper::TabInfo
132 base::Time timestamp = local
134 AddTabWithInfo(session_index, window_index, timestamp, base::string16());
139 base::Time timestamp,
143 tab_info.timestamp = timestamp;
163 .tabs[tab_index].timestamp;
    [all...]
  /external/chromium_org/media/filters/
source_buffer_stream.h 81 // buffers starting from the closest keyframe before |timestamp|.
82 void Seek(base::TimeDelta timestamp);
95 // |out_buffer|'s timestamp may be earlier than the |timestamp| passed to
169 // Removes buffers, from the |track_buffer_|, that come after |timestamp|.
170 void PruneTrackBuffer(const base::TimeDelta timestamp);
177 // Returns true if |second_timestamp| is the timestamp of the next buffer in
182 // Helper method that returns the timestamp for the next buffer that
187 // Returns the timestamp of the last buffer in the |selected_range_| or
246 // |timestamp| if necessary and possible. This method only attempts t
    [all...]
  /build/tools/check_prereq/
check_prereq.c 22 // Compare the timestamp of the new build (passed on the command line)
29 fprintf(stderr, "usage: %s <timestamp>\n", argv[0]);
  /cts/tests/tests/media/src/android/media/cts/
IvfWriter.java 41 * Timestamp values supplied while writing frames should be in accordance
90 * @param width timestamp of the frame (in accordance to specified timebase)
92 public void writeFrame(byte[] frame, long timeStamp) throws IOException {
93 mOutputFile.write(makeIvfFrameHeader(frame.length, timeStamp));
134 * @param timestamp presentation timestamp of the frame
136 private static byte[] makeIvfFrameHeader(int size, long timestamp){
139 lay64bits(frameHeader, 4, timestamp);
  /external/chromium_org/ash/wm/
power_button_controller.h 45 void OnPowerButtonEvent(bool down, const base::TimeTicks& timestamp);
46 void OnLockButtonEvent(bool down, const base::TimeTicks& timestamp);

Completed in 9185 milliseconds

1 2 3 4 5 6 78 91011>>