HomeSort by relevance Sort by last modified time
    Searched refs:timeMs (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /frameworks/av/media/libstagefright/rtsp/
UDPPusher.cpp 63 uint32_t timeMs;
64 CHECK_EQ(fread(&timeMs, 1, sizeof(timeMs), mFile), sizeof(timeMs));
65 mFirstTimeMs = fromlel(timeMs);
94 uint32_t timeMs;
95 if (fread(&timeMs, 1, sizeof(timeMs), mFile) < sizeof(timeMs)) {
100 timeMs = fromlel(timeMs)
    [all...]
  /frameworks/base/media/java/android/media/
SubtitleTrack.java 128 protected synchronized void updateActiveCues(boolean rebuild, long timeMs) {
131 if (rebuild || mLastUpdateTimeMs > timeMs) {
136 mCues.entriesBetween(mLastUpdateTimeMs, timeMs).iterator(); it.hasNext(); ) {
152 cue.onTime(timeMs);
157 cue.onTime(timeMs);
163 mRunsByEndTime.keyAt(0) <= timeMs) {
166 mLastUpdateTimeMs = timeMs;
199 private synchronized void takeTime(long timeMs) {
200 mLastTimeMs = timeMs;
230 long timeMs = timeUs / 1000
    [all...]
IRemoteControlClient.aidl 60 void seekTo(int clientGeneration, long timeMs);
  /frameworks/base/media/java/android/media/tv/
ITvInputSessionCallback.aidl 41 void onTimeShiftStartPositionChanged(long timeMs);
42 void onTimeShiftCurrentPositionChanged(long timeMs);
ITvInputClient.aidl 44 void onTimeShiftStartPositionChanged(long timeMs, int seq);
45 void onTimeShiftCurrentPositionChanged(long timeMs, int seq);
ITvInputSession.aidl 53 void timeShiftSeekTo(long timeMs);
TvInputManager.java 404 * @param timeMs The start playback position of the time shifted program, in milliseconds
407 public void onTimeShiftStartPositionChanged(Session session, long timeMs) {
414 * @param timeMs The current playback position of the time shifted program, in milliseconds
417 public void onTimeShiftCurrentPositionChanged(Session session, long timeMs) {
551 void postTimeShiftStartPositionChanged(final long timeMs) {
555 mSessionCallback.onTimeShiftStartPositionChanged(mSession, timeMs);
560 void postTimeShiftCurrentPositionChanged(final long timeMs) {
564 mSessionCallback.onTimeShiftCurrentPositionChanged(mSession, timeMs);
857 public void onTimeShiftStartPositionChanged(long timeMs, int seq) {
    [all...]
TvView.java 469 * Seeks to a specified time position. {@code timeMs} must be equal to or greater than the start
473 * @param timeMs The time position to seek to, in milliseconds since the epoch.
475 public void timeShiftSeekTo(long timeMs) {
477 mSession.timeShiftSeekTo(timeMs);
817 * <p>Note that {@code timeMs} is not relative time in the program but wall-clock time,
821 * @param timeMs The start playback position of the time shifted program, in milliseconds
824 public void onTimeShiftStartPositionChanged(String inputId, long timeMs) {
830 * <p>Note that {@code timeMs} is not relative time in the program but wall-clock time,
834 * @param timeMs The current playback position of the time shifted program, in milliseconds
837 public void onTimeShiftCurrentPositionChanged(String inputId, long timeMs) {
    [all...]
TvInputService.java 621 private void notifyTimeShiftStartPositionChanged(final long timeMs) {
628 mSessionCallback.onTimeShiftStartPositionChanged(timeMs);
637 private void notifyTimeShiftCurrentPositionChanged(final long timeMs) {
644 mSessionCallback.onTimeShiftCurrentPositionChanged(timeMs);
    [all...]
  /frameworks/av/media/libstagefright/timedtext/
TextDescriptions.h 38 uint32_t flags, int timeMs, Parcel *parcel);
72 int timeMs, Parcel *parcel);
78 int timeMs, Parcel *parcel, int depth);
TextDescriptions.cpp 28 uint32_t flags, int timeMs, Parcel *parcel) {
35 return extract3GPPLocalDescriptions(data, size, timeMs, parcel, 0);
39 return extractSRTLocalDescriptions(data, size, timeMs, parcel);
50 const uint8_t *data, ssize_t size, int timeMs, Parcel *parcel) {
53 parcel->writeInt32(timeMs);
72 int timeMs, Parcel *parcel, int depth) {
78 parcel->writeInt32(timeMs);
  /frameworks/base/core/java/android/os/
PowerManagerInternal.java 115 public abstract void setMaximumScreenOffTimeoutFromDeviceAdmin(int timeMs);
  /external/jetty/src/java/org/eclipse/jetty/io/bio/
SocketEndPoint.java 257 public void setMaxIdleTime(int timeMs) throws IOException
259 if (timeMs!=getMaxIdleTime())
260 _socket.setSoTimeout(timeMs>0?timeMs:0);
261 super.setMaxIdleTime(timeMs);
StreamEndPoint.java 320 public void setMaxIdleTime(int timeMs) throws IOException
322 _maxIdleTime=timeMs;
  /external/jetty/src/java/org/eclipse/jetty/io/
EndPoint.java 168 * @param timeMs the max idle time in MS. Timeout <= 0 implies an infinite timeout
171 public void setMaxIdleTime(int timeMs) throws IOException;
ByteArrayEndPoint.java 402 public void setMaxIdleTime(int timeMs) throws IOException
404 _maxIdleTime=timeMs;
  /developers/build/prebuilts/gradle/AlwaysOn/Wearable/src/main/java/com/example/android/wearable/wear/alwayson/
MainActivity.java 255 long timeMs = System.currentTimeMillis();
259 long delayMs = AMBIENT_INTERVAL_MS - (timeMs % AMBIENT_INTERVAL_MS);
260 long triggerTimeMs = timeMs + delayMs;
274 long delayMs = ACTIVE_INTERVAL_MS - (timeMs % ACTIVE_INTERVAL_MS);
  /developers/samples/android/wearable/wear/AlwaysOn/Wearable/src/main/java/com/example/android/wearable/wear/alwayson/
MainActivity.java 255 long timeMs = System.currentTimeMillis();
259 long delayMs = AMBIENT_INTERVAL_MS - (timeMs % AMBIENT_INTERVAL_MS);
260 long triggerTimeMs = timeMs + delayMs;
274 long delayMs = ACTIVE_INTERVAL_MS - (timeMs % ACTIVE_INTERVAL_MS);
  /development/samples/browseable/AlwaysOn/src/com.example.android.wearable.wear.alwayson/
MainActivity.java 255 long timeMs = System.currentTimeMillis();
259 long delayMs = AMBIENT_INTERVAL_MS - (timeMs % AMBIENT_INTERVAL_MS);
260 long triggerTimeMs = timeMs + delayMs;
274 long delayMs = ACTIVE_INTERVAL_MS - (timeMs % ACTIVE_INTERVAL_MS);
  /external/jetty/src/java/org/eclipse/jetty/io/nio/
ChannelEndPoint.java 503 public void setMaxIdleTime(int timeMs) throws IOException
505 if (_socket!=null && timeMs!=_maxIdleTime)
506 _socket.setSoTimeout(timeMs>0?timeMs:0);
507 _maxIdleTime=timeMs;
  /frameworks/av/media/libstagefright/
MidiExtractor.cpp 237 EAS_I32 timeMs;
238 EAS_GetLocation(mEasData, mEasHandle, &timeMs);
239 int64_t timeUs = 1000ll * timeMs;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
MockTvInputService.java 445 public void onTimeShiftSeekTo(long timeMs) {
447 if (mCurrentPositionMs > timeMs) {
452 } else if (mCurrentPositionMs < timeMs) {
461 Math.min(timeMs, mLastCurrentPositionUpdateTimeMs));
  /frameworks/av/media/libstagefright/timedtext/test/
TimedTextSRTSource_test.cpp 91 void CheckStartTimeMs(const Parcel& parcel, int32_t timeMs) {
95 EXPECT_EQ(timeMs, intval);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DozeService.java 341 long timeMs = System.currentTimeMillis();
342 timeMs = Math.max(timeMs, mEarliestPulseDueToLight);
343 updateNotificationPulse(timeMs);
  /development/samples/Support4Demos/src/com/example/android/supportv4/media/
MediaController.java 204 private String stringForTime(int timeMs) {
205 int totalSeconds = timeMs / 1000;

Completed in 1075 milliseconds

1 2 3 4 5