Searched defs:tv (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/wilhelm/tests/sandbox/
H A Dgetch.c37 struct timeval tv = { 0L, 0L }; local
41 return select(1, &fds, NULL, NULL, &tv);
/frameworks/base/core/jni/
H A Dandroid_os_SystemClock.cpp70 struct timeval tv;
72 gettimeofday(&tv, NULL);
73 return tv.tv_sec * 1000LL + tv.tv_usec / 1000;
90 struct timeval tv;
92 gettimeofday(&tv, NULL);
93 return tv.tv_sec * 1000000LL + tv.tv_nsec / 1000;
103 struct timeval tv; local
105 gettimeofday(&tv, NUL
[all...]
/frameworks/base/include/androidfw/
H A DTypeWrappers.h62 iterator(const TypeVariant* tv, uint32_t index) argument
63 : mTypeVariant(tv), mIndex(index) {}
/frameworks/base/media/java/android/media/tv/
H A DTvContentRatingSystemInfo.java17 package android.media.tv;
H A DTvContentRating.java17 package android.media.tv;
134 * "com.android.tv",
146 * <td>com.android.tv</td>
697 * @param domain The domain string. For example, "com.android.tv".
747 * @param domain The string for domain of the content rating system such as "com.android.tv".
H A DTvInputHardwareInfo.java17 package android.media.tv;
H A DTvStreamConfig.java17 package android.media.tv;
H A DITvInputSessionWrapper.java17 package android.media.tv;
H A DTvTrackInfo.java17 package android.media.tv;
H A DTvInputInfo.java17 package android.media.tv;
105 public static final String EXTRA_INPUT_ID = "android.media.tv.extra.INPUT_ID";
109 private static final String XML_START_TAG_NAME = "tv-input";
233 "Meta-data does not start with tv-input-service tag in " + si.name);
/frameworks/base/media/mca/filterfw/native/core/
H A Dtime_util.cpp31 struct timeval tv; local
33 gettimeofday(&tv, 0);
35 basesec = tv.tv_sec;
37 nowtime = (uint64_t)(tv.tv_sec - basesec) * (uint64_t)1000000 +
38 (uint64_t)tv.tv_usec;
/frameworks/base/media/mca/filterpacks/native/base/
H A Dtime_util.cpp29 struct timeval tv; local
31 gettimeofday(&tv, 0);
33 basesec = tv.tv_sec;
35 nowtime = (uint64_t)(tv.tv_sec - basesec) * (uint64_t)1000000 +
36 (uint64_t)tv.tv_usec;
/frameworks/base/core/jni/android/opengl/
H A Dpoly_clip.cpp66 float t, tu, tv; local
73 for (v= &p->vert[0], i=p->n; i>0; i--, u=v, tu=tv, v++) {
75 /* tv is negative if vertex v is in */
76 tv = sign*COORD(v, index) - v->sw*k;
77 if ((tu <= 0.0f) ^ (tv <= 0.0f)) {
79 t = tu/(tu-tv);
88 if (tv<=0.0f) /* vertex v is in, copy it to q */
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecStandbyModeHandler.java95 public HdmiCecStandbyModeHandler(HdmiControlService service, HdmiCecLocalDeviceTv tv) { argument
97 mTv = tv;
H A DHdmiCecFeatureAction.java255 protected final HdmiCecLocalDeviceTv tv() { method in class:HdmiCecFeatureAction
/frameworks/base/services/core/java/com/android/server/tv/
H A DPersistentDataStore.java17 package com.android.server.tv;
21 import android.media.tv.TvContentRating;
22 import android.media.tv.TvInputManager;
55 * &lt;tv-input-manager-state>
60 * &lt;/tv-input-manager-state>
93 mAtomicFile = new AtomicFile(new File(userDir, "tv-input-manager-state.xml"));
173 Slog.w(TAG, "Failed to load tv input manager persistent store data.", ex);
216 Slog.w(TAG, "Failed to save tv input manager persistent store data.", ex);
233 private static final String TAG_TV_INPUT_MANAGER_STATE = "tv-input-manager-state";
H A DTvInputHal.java17 package com.android.server.tv;
19 import android.media.tv.TvInputHardwareInfo;
20 import android.media.tv.TvStreamConfig;
/frameworks/base/services/core/jni/
H A Dcom_android_server_AlarmManagerService.cpp62 virtual int setTime(struct timeval *tv) = 0;
76 int setTime(struct timeval *tv);
88 int setTime(struct timeval *tv);
114 int AlarmImplAlarmDriver::setTime(struct timeval *tv) argument
119 ts.tv_sec = tv->tv_sec;
120 ts.tv_nsec = tv->tv_usec * 1000;
160 int AlarmImplTimerFd::setTime(struct timeval *tv) argument
167 res = settimeofday(tv, NULL);
179 gmtime_res = gmtime_r(&tv->tv_sec, &tm);
235 struct timeval tv; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTPConnection.cpp249 struct timeval tv; local
250 tv.tv_sec = 0;
251 tv.tv_usec = kSelectTimeoutUs;
278 int res = select(maxSocket + 1, &rs, NULL, NULL, &tv);
H A DARTSPConnection.cpp362 struct timeval tv; local
363 tv.tv_sec = 0;
364 tv.tv_usec = kSelectTimeoutUs;
370 int res = select(mSocket + 1, NULL, &ws, NULL, &tv);
483 struct timeval tv; local
484 tv.tv_sec = 0;
485 tv.tv_usec = kSelectTimeoutUs;
491 int res = select(mSocket + 1, &rs, NULL, NULL, &tv);
H A DMyTransmitter.h138 struct timeval tv; local
139 gettimeofday(&tv, NULL);
141 uint64_t nowUs = tv.tv_sec * 1000000ll + tv.tv_usec;
429 struct timeval tv;
430 tv.tv_sec = 0;
431 tv.tv_usec = 0;
433 int res = select(mRTCPSocket + 1, &rs, NULL, NULL, &tv);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DRecentsView.java165 TaskView tv = (TaskView) stackView.getChildAt(j);
166 Task task = tv.getTask();
167 if (tv.isFocusedTask()) {
168 onTaskViewClicked(stackView, tv, stack, task, false);
194 TaskView tv = stackView.getChildViewForTask(task);
195 onTaskViewClicked(stackView, tv, stack, task, false);
404 public void onTaskViewClicked(final TaskStackView stackView, final TaskView tv, argument
417 if (tv == null) {
426 sourceView = tv.mThumbnailView;
437 if (tv !
[all...]
H A DTaskView.java42 public void onTaskViewAppIconClicked(TaskView tv); argument
43 public void onTaskViewAppInfoClicked(TaskView tv); argument
44 public void onTaskViewClicked(TaskView tv, Task task, boolean lockToTask); argument
45 public void onTaskViewDismissed(TaskView tv); argument
46 public void onTaskViewClipStateChanged(TaskView tv); argument
47 public void onTaskViewFocusChanged(TaskView tv, boolean focused); argument
476 final TaskView tv = this;
481 mCb.onTaskViewDismissed(tv);
705 final TaskView tv = this;
714 mCb.onTaskViewAppIconClicked(tv);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
H A DTvStatusBar.java17 package com.android.systemui.statusbar.tv;
/frameworks/av/media/libstagefright/wifi-display/rtp/
H A DRTPSender.cpp494 struct timeval tv; local
495 gettimeofday(&tv, NULL /* timezone */);
497 uint64_t nowUs = tv.tv_sec * 1000000ll + tv.tv_usec;

Completed in 9471 milliseconds

12