/hardware/invensense/65xx/libsensors_iio/ |
CompassSensor.AKM.cpp | 120 @para[in] timestamp data's timestamp 123 int CompassSensor::readSample(long *data, int64_t *timestamp) 128 return mCompassSensor->readSample(data, timestamp); 135 @para[in] timestamp data's timestamp 138 int CompassSensor::readRawSample(float *data, int64_t *timestamp) 143 int res = mCompassSensor->readSample(ldata, timestamp);
|
/hardware/qcom/msm8960/original-kernel-headers/linux/ |
msm_kgsl.h | 160 driver. The timestamp fields are volatile because they are written by the 180 /* timestamp id*/ 182 KGSL_TIMESTAMP_CONSUMED = 0x00000001, /* start-of-pipeline timestamp */ 183 KGSL_TIMESTAMP_RETIRED = 0x00000002, /* end-of-pipeline timestamp*/ 268 /* block until the GPU has executed past a given timestamp 272 unsigned int timestamp; member in struct:kgsl_device_waittimestamp 281 unsigned int timestamp; member in struct:kgsl_device_waittimestamp_ctxtid 293 * timestamp is a returned counter value which can be passed to 304 unsigned int timestamp; /*output param */ member in struct:kgsl_ringbuffer_issueibcmds 311 /* read the most recently executed timestamp valu 316 unsigned int timestamp; \/*output param *\/ member in struct:kgsl_cmdstream_readtimestamp 333 unsigned int timestamp; member in struct:kgsl_cmdstream_freememontimestamp 385 unsigned int timestamp; \/*output param *\/ member in struct:kgsl_cmdstream_readtimestamp_ctxtid 395 unsigned int timestamp; member in struct:kgsl_cmdstream_freememontimestamp_ctxtid 543 unsigned int timestamp; \/* Timestamp to trigger event on *\/ member in struct:kgsl_timestamp_event 825 unsigned int timestamp; member in struct:kgsl_cmd_syncpoint_timestamp 876 unsigned int timestamp; member in struct:kgsl_submit_commands [all...] |
/hardware/qcom/msm8x74/original-kernel-headers/linux/ |
msm_kgsl.h | 160 driver. The timestamp fields are volatile because they are written by the 180 /* timestamp id*/ 182 KGSL_TIMESTAMP_CONSUMED = 0x00000001, /* start-of-pipeline timestamp */ 183 KGSL_TIMESTAMP_RETIRED = 0x00000002, /* end-of-pipeline timestamp*/ 268 /* block until the GPU has executed past a given timestamp 272 unsigned int timestamp; member in struct:kgsl_device_waittimestamp 281 unsigned int timestamp; member in struct:kgsl_device_waittimestamp_ctxtid 293 * timestamp is a returned counter value which can be passed to 304 unsigned int timestamp; /*output param */ member in struct:kgsl_ringbuffer_issueibcmds 311 /* read the most recently executed timestamp valu 316 unsigned int timestamp; \/*output param *\/ member in struct:kgsl_cmdstream_readtimestamp 333 unsigned int timestamp; member in struct:kgsl_cmdstream_freememontimestamp 385 unsigned int timestamp; \/*output param *\/ member in struct:kgsl_cmdstream_readtimestamp_ctxtid 395 unsigned int timestamp; member in struct:kgsl_cmdstream_freememontimestamp_ctxtid 543 unsigned int timestamp; \/* Timestamp to trigger event on *\/ member in struct:kgsl_timestamp_event 825 unsigned int timestamp; member in struct:kgsl_cmd_syncpoint_timestamp 876 unsigned int timestamp; member in struct:kgsl_submit_commands [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
ChangedContacts.java | 203 long timestamp = 0; local 212 // Save the largest timestamp returned. Only need the first one due to the sort 215 timestamp = data.getLong(data.getColumnIndex( 219 if (timestamp > 0) { 220 saveLastTimestamp(timestamp, PREF_KEY_CHANGE); 221 mChangeButton.setText("Changed since " + timestamp); 229 timestamp = data.getLong(data.getColumnIndex( 233 if (timestamp > 0) { 234 saveLastTimestamp(timestamp, PREF_KEY_DELETE); 235 mDeleteButton.setText("Deleted since " + timestamp); 296 String timestamp = cursor.getString(cursor.getColumnIndex( local 329 String timestamp = cursor.getString(cursor.getColumnIndex( local [all...] |
/external/chromium_org/media/base/ |
audio_buffer_queue.h | 60 // Returns the current timestamp, taking into account current offset. The 61 // value calculated based on the timestamp of the current buffer. If timestamp 63 // the last position in a buffer that had timestamp set. kNoTimestamp() is 64 // returned if no buffers we read from had timestamp set.
|
/external/chromium_org/media/midi/ |
midi_manager.h | 30 // |timestamp| is the time the data was received, in seconds. 34 double timestamp) = 0; 66 // |timestamp| is the time to send the data, in seconds. A value of 0 71 double timestamp) = 0; 94 double timestamp);
|
midi_manager_mac.cc | 111 double timestamp) { 119 client, port_index, data, timestamp)); 159 double timestamp_seconds = MIDITimeStampToSeconds(packet.timeStamp); 172 double timestamp) { 176 MIDITimeStamp coremidi_timestamp = SecondsToMIDITimeStamp(timestamp); 245 double MIDIManagerMac::MIDITimeStampToSeconds(MIDITimeStamp timestamp) { 246 UInt64 nanoseconds = AudioConvertHostTimeToNanos(timestamp);
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebDevToolsAgent.h | 78 virtual void processGPUEvent(double timestamp, int phase, bool foreign) = 0; 82 GPUEvent(double timestamp, int phase, bool foreign, size_t usedGPUMemoryBytes) : 83 timestamp(timestamp), 87 double timestamp; member in class:blink::WebDevToolsAgent::GPUEvent
|
/external/chromium_org/ui/base/test/ |
cocoa_test_event_utils.mm | 40 timestamp:0 59 timestamp:0 102 timestamp:0 115 timestamp:0 127 timestamp:0
|
/external/stressapptest/ |
configure.ac | 90 timestamp=$(date) 91 AC_MSG_CHECKING([current timestamp]) 92 AC_MSG_RESULT([$timestamp]) 95 "$username @ $hostname on $timestamp", 96 [Timestamp when ./configure was executed])
|
/frameworks/native/services/surfaceflinger/ |
EventThread.cpp | 48 mVSyncEvent[i].header.timestamp = 0; 114 void EventThread::onVSyncEvent(nsecs_t timestamp) { 118 mVSyncEvent[0].header.timestamp = timestamp; 132 event.header.timestamp = systemTime(); 181 nsecs_t timestamp = 0; local 183 timestamp = mVSyncEvent[i].header.timestamp; 184 if (timestamp) { 187 mVSyncEvent[i].header.timestamp = 0 [all...] |
/external/chromium_org/tools/perf/metrics/ |
rendering_stats_unittest.py | 58 timestamp = mock_timer.Get() 63 timestamp, duration=0.0, thread_timestamp=None, thread_duration=None, 69 # Add timestamp only if a frame was output 75 ref_stats.frame_times.append(round(timestamp - prev_timestamp, 2)) 76 ref_stats.frame_timestamps.append(timestamp) 96 timestamp = mock_timer.Get() 101 timestamp, duration=0.0, thread_timestamp=None, thread_duration=None, 107 # Add timestamp only if a frame was output 113 ref_stats.frame_times.append(round(timestamp - prev_timestamp, 2)) 114 ref_stats.frame_timestamps.append(timestamp) [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppNotification.java | 118 long timeStamp = 0; // Database time stamp. Used for sorting ongoing transfers. 229 final int timestampIndex = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP); 241 long timeStamp = cursor.getLong(timestampIndex); 257 String batchID = Long.toString(timeStamp); 259 // sending objects in one batch has same timeStamp 265 item.timeStamp = timeStamp; 321 b.setWhen(item.timeStamp); 345 long timeStamp = 0; 372 WHERE_COMPLETED_OUTBOUND, null, BluetoothShare.TIMESTAMP + " DESC") [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsContract_StreamItemsTest.java | 77 values.put(StreamItems.TIMESTAMP, UPDATE_TIMESTAMP); 102 values.put(StreamItems.TIMESTAMP, INSERT_TIMESTAMP); 125 .withValue(StreamItems.TIMESTAMP, INSERT_TIMESTAMP) 151 .withValue(StreamItems.TIMESTAMP, UPDATE_TIMESTAMP) 168 private void assertStreamItem(Uri uri, String text, long timestamp, String comments) { 174 assertEquals(timestamp, cursor.getLong( 175 cursor.getColumnIndexOrThrow(StreamItems.TIMESTAMP)));
|
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/ |
VoicemailImpl.java | 39 Long timestamp, 51 mTimestamp = timestamp; 62 * The number and the timestamp are mandatory for insertion. 64 public static Builder createForInsertion(long timestamp, String number) { 65 return new Builder().setNumber(number).setTimestamp(timestamp); 112 public Builder setTimestamp(long timestamp) { 113 mBuilderTimestamp = timestamp;
|
/external/chromium_org/ash/wm/gestures/ |
overview_gesture_handler_unittest.cc | 90 base::TimeDelta timestamp = base::TimeDelta::FromInternalValue( local 97 timestamp, 106 timestamp += step_delay; 109 timestamp, 121 timestamp += step_delay; 124 timestamp, 135 timestamp,
|
/external/chromium_org/media/cast/rtp_receiver/ |
receiver_stats_unittest.cc | 36 rtp_header_.webrtc.header.timestamp = 0; 75 rtp_header_.webrtc.header.timestamp += 33 * 90; 94 rtp_header_.webrtc.header.timestamp += 33 * 90; 116 // Update timestamp. 117 ++rtp_header_.webrtc.header.timestamp; 135 rtp_header_.webrtc.header.timestamp += 33 * 90; 153 rtp_header_.webrtc.header.timestamp += 33 * 90;
|
/external/chromium_org/media/cdm/ppapi/ |
cdm_helpers.h | 114 virtual void SetTimestamp(int64_t timestamp) OVERRIDE { 115 timestamp_ = timestamp; 117 virtual int64_t Timestamp() const OVERRIDE { return timestamp_; } 163 virtual void SetTimestamp(int64_t timestamp) OVERRIDE { 164 timestamp_ = timestamp; 166 virtual int64_t Timestamp() const OVERRIDE { return timestamp_; } 186 // Presentation timestamp in microseconds.
|
/external/chromium_org/tools/cygprofile/ |
mergetraces.py | 85 timestamp = (timestamp_secs * 1000000) + timestamp_ms 87 if (timestamp < last_timestamp): 89 + " " + str(last_timestamp_ms) + " timestamp: " 119 def Timestamp(trace_entry): 137 Timestamp(tracemap[call]) > Timestamp(trace_entry)): 177 merged_trace.sort(key=Timestamp)
|
/external/chromium_org/ui/message_center/ |
notification.h | 44 base::Time timestamp; member in class:message_center::RichNotificationData 99 base::Time timestamp() const { return optional_fields_.timestamp; } function in class:message_center::Notification 100 void set_timestamp(const base::Time& timestamp) { 101 optional_fields_.timestamp = timestamp; 158 // Used to keep the order of notifications with the same timestamp.
|
/frameworks/av/media/libmedia/ |
IAudioTrack.cpp | 172 virtual status_t getTimestamp(AudioTimestamp& timestamp) { 179 timestamp.mPosition = reply.readInt32(); 180 timestamp.mTime.tv_sec = reply.readInt32(); 181 timestamp.mTime.tv_nsec = reply.readInt32(); 269 AudioTimestamp timestamp; local 270 status_t status = getTimestamp(timestamp); 273 reply->writeInt32(timestamp.mPosition); 274 reply->writeInt32(timestamp.mTime.tv_sec); 275 reply->writeInt32(timestamp.mTime.tv_nsec);
|
/frameworks/base/core/jni/ |
android_view_DisplayEventReceiver.cpp | 66 void dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count); 67 void dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected); 145 ALOGV("receiver %p ~ Vsync pulse: timestamp=%lld, id=%d, count=%d", 168 *outTimestamp = ev.header.timestamp; 173 dispatchHotplug(ev.header.timestamp, ev.header.id, ev.hotplug.connected); 187 void NativeDisplayEventReceiver::dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count) { 192 gDisplayEventReceiverClassInfo.dispatchVsync, timestamp, id, count); 198 void NativeDisplayEventReceiver::dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected) { 203 gDisplayEventReceiverClassInfo.dispatchHotplug, timestamp, id, connected);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
InboundSmsTracker.java | 69 * @param timestamp the message timestamp 74 InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, 77 mTimestamp = timestamp; 96 * @param timestamp the message timestamp 105 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, 109 mTimestamp = timestamp; 231 StringBuilder builder = new StringBuilder("SmsTracker{timestamp=");
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
DeletedContactUtil.java | 70 * Queries all records after a given timestamp. 75 long timestamp) { 77 String[] args = new String[] {timestamp + ""};
|
/development/testrunner/ |
logger.py | 60 """Returns the log_string prepended with current timestamp """ 66 # timestamp logging disabled 88 """ Enable or disable outputting a timestamp with each log entry"""
|