/external/nist-sip/java/gov/nist/javax/sip/parser/ |
TimeStampParser.java | 33 * Parser for TimeStamp header. 46 * @param timeStamp the header to parse 48 public TimeStampParser(String timeStamp) { 49 super(timeStamp); 62 * @return SIPHeader (TimeStamp object) 69 TimeStamp timeStamp = new TimeStamp(); 71 headerName(TokenTypes.TIMESTAMP); 73 timeStamp.setHeaderName(SIPHeaderNames.TIMESTAMP) [all...] |
/developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/ |
MidiFramer.java | 49 public void onSend(byte[] data, int offset, int count, long timestamp) 70 offset - sysExStartOffset + 1, timestamp); 84 offset - sysExStartOffset, timestamp); 87 mReceiver.send(data, offset, 1, timestamp); 96 mReceiver.send(mBuffer, 0, mCount, timestamp); 108 offset - sysExStartOffset, timestamp);
|
/developers/build/prebuilts/gradle/MidiSynth/Application/src/main/java/com/example/android/common/midi/ |
MidiFramer.java | 49 public void onSend(byte[] data, int offset, int count, long timestamp) 70 offset - sysExStartOffset + 1, timestamp); 84 offset - sysExStartOffset, timestamp); 87 mReceiver.send(data, offset, 1, timestamp); 96 mReceiver.send(mBuffer, 0, mCount, timestamp); 108 offset - sysExStartOffset, timestamp);
|
/developers/samples/android/common/src/java/com/example/android/common/midi/ |
MidiFramer.java | 49 public void onSend(byte[] data, int offset, int count, long timestamp) 70 offset - sysExStartOffset + 1, timestamp); 84 offset - sysExStartOffset, timestamp); 87 mReceiver.send(data, offset, 1, timestamp); 96 mReceiver.send(mBuffer, 0, mCount, timestamp); 108 offset - sysExStartOffset, timestamp);
|
/development/samples/browseable/MidiScope/src/com.example.android.common.midi/ |
MidiFramer.java | 49 public void onSend(byte[] data, int offset, int count, long timestamp) 70 offset - sysExStartOffset + 1, timestamp); 84 offset - sysExStartOffset, timestamp); 87 mReceiver.send(data, offset, 1, timestamp); 96 mReceiver.send(mBuffer, 0, mCount, timestamp); 108 offset - sysExStartOffset, timestamp);
|
/development/samples/browseable/MidiSynth/src/com.example.android.common.midi/ |
MidiFramer.java | 49 public void onSend(byte[] data, int offset, int count, long timestamp) 70 offset - sysExStartOffset + 1, timestamp); 84 offset - sysExStartOffset, timestamp); 87 mReceiver.send(data, offset, 1, timestamp); 96 mReceiver.send(mBuffer, 0, mCount, timestamp); 108 offset - sysExStartOffset, timestamp);
|
/external/conscrypt/src/main/java/org/conscrypt/ct/ |
SignedCertificateTimestamp.java | 45 private final long timestamp; field in class:SignedCertificateTimestamp 54 long timestamp, byte[] extensions, 58 this.timestamp = timestamp; 71 return timestamp; 119 Serialization.writeNumber(output, timestamp, CTConstants.TIMESTAMP_LENGTH);
|
/external/webrtc/webrtc/modules/video_coding/test/ |
stream_generator.cc | 38 uint32_t timestamp = 90 * (time_ms - start_time_); local 43 packets_.push_back(GeneratePacket(sequence_number_, timestamp, packet_size, 48 packets_.push_back(GeneratePacket(sequence_number_, timestamp, 0, false, 55 uint32_t timestamp, 63 packet.timestamp = timestamp;
|
stream_generator.h | 33 // |time_ms| denotes the timestamp you want to put on the frame, and the unit 35 // timestamp and put it on the frame. 54 uint32_t timestamp,
|
/frameworks/base/core/java/com/android/internal/midi/ |
MidiFramer.java | 60 public void onSend(byte[] data, int offset, int count, long timestamp) 81 offset - sysExStartOffset + 1, timestamp); 95 offset - sysExStartOffset, timestamp); 98 mReceiver.send(data, offset, 1, timestamp); 107 mReceiver.send(mBuffer, 0, mCount, timestamp); 119 offset - sysExStartOffset, timestamp);
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/ |
MotionSensorWTime.java | 54 .addOutputPort("timestamp", Signature.PORT_OPTIONAL, FrameType.single(long.class)) 108 OutputPort timeOutPort = getConnectedOutputPort("timestamp"); 110 long timestamp = System.nanoTime(); local 111 Log.v("MotionSensor", "Timestamp is: " + timestamp); 113 timeStampFrame.setValue(timestamp);
|
/packages/apps/DevCamera/src/com/android/devcamera/ |
GyroOperations.java | 60 public long timestamp; field in class:GyroOperations.GyroEvent2D 64 this.timestamp = event.timestamp; 87 mGyroLastTimestamp = event.timestamp; 90 long dt = (event.timestamp - mGyroLastTimestamp) / 1000; // microseconds between samples 96 mGyroLastTimestamp = event.timestamp;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
WordInputEventForPersonalization.java | 48 final NgramContext ngramContext, final int timestamp) { 52 mTimestamp = timestamp; 58 final List<String> tokens, final int timestamp, 88 ngramContext, tempWord, timestamp, locale); 99 final NgramContext ngramContext, final String targetWord, final int timestamp, 104 return new WordInputEventForPersonalization(targetWord, ngramContext, timestamp);
|
/system/connectivity/shill/net/ |
event_history.h | 61 // this same timestamp to remove all entries that occurred more than 66 // Returns a vector of human-readable strings representing each timestamp in 77 Timestamp Front() { return events_.front(); } 85 void RecordEventInternal(Timestamp now); 87 void ExpireEventsBeforeInternal(int seconds_ago, Timestamp now, 92 std::deque<Timestamp> events_;
|
/system/security/keystore/tests/ |
auth_token_table_test.cpp | 70 uint64_t timestamp = 0) { 76 token->timestamp = hton(timestamp); 280 // expired. An additional check of the secure timestamp (in the token) will be made by 308 // on timestamp (fourth arg to make_token). 313 EXPECT_EQ(1U, ntoh(found->timestamp)); 324 EXPECT_EQ(3U, ntoh(found->timestamp)); 326 EXPECT_EQ(4U, ntoh(found->timestamp)); 343 EXPECT_EQ(5U, ntoh(found->timestamp)); 347 EXPECT_EQ(6U, ntoh(found->timestamp)); [all...] |
/developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/midiscope/ |
LoggingReceiver.java | 44 public void onSend(byte[] data, int offset, int count, long timestamp) 47 if (timestamp == 0) { 50 long monoTime = timestamp - mStartTime;
|
/developers/samples/android/media/MidiScope/Application/src/main/java/com/example/android/midiscope/ |
LoggingReceiver.java | 44 public void onSend(byte[] data, int offset, int count, long timestamp) 47 if (timestamp == 0) { 50 long monoTime = timestamp - mStartTime;
|
/development/ndk/platforms/android-3/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
|
/development/samples/browseable/MidiScope/src/com.example.android.midiscope/ |
LoggingReceiver.java | 44 public void onSend(byte[] data, int offset, int count, long timestamp) 47 if (timestamp == 0) { 50 long monoTime = timestamp - mStartTime;
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/ |
CodeSigner_ImplTest.java | 25 import java.security.Timestamp; 41 private Timestamp ts = new Timestamp(now, cpath);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/ |
spotpricehistory.py | 36 self.timestamp = None 49 elif name == 'timestamp': 50 self.timestamp = value
|
/external/libweave/src/states/ |
state_change_queue.cc | 17 base::Time timestamp, 19 auto& stored_changes = state_changes_[timestamp]; 32 // - Keep the timestamp of [new].
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
decode_bwe.c | 57 // translate the send timestamp if required 72 // arrival timestamp in 16 kHz 75 // send timestamp in 16 kHz
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
temporal_layers.h | 42 virtual int EncodeFlags(uint32_t timestamp) = 0; 51 uint32_t timestamp) = 0; 53 virtual void FrameEncoded(unsigned int size, uint32_t timestamp, int qp) = 0;
|
/frameworks/av/include/camera/android/hardware/ |
ICameraClient.h | 38 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& data) = 0; 40 // Invoked to send a recording frame handle with a timestamp. Call 42 virtual void recordingFrameHandleCallbackTimestamp(nsecs_t timestamp,
|