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

123

/frameworks/native/cmds/bugreport/
H A Dbugreport.cpp58 struct timeval tv; local
59 tv.tv_sec = 3 * 60;
60 tv.tv_usec = 0;
61 if (setsockopt(s, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)) == -1) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/tv/pip/
H A DPipUI.java17 package com.android.systemui.tv.pip;
H A DPipMenuActivity.java17 package com.android.systemui.tv.pip;
H A DPipOnboardingActivity.java17 package com.android.systemui.tv.pip;
H A DPipOverlayActivity.java17 package com.android.systemui.tv.pip;
/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.cpp89 struct timeval tv; local
91 gettimeofday(&tv, NULL);
92 return tv.tv_sec * 1000000LL + tv.tv_usec;
/frameworks/native/cmds/bugreportz/
H A Dbugreportz.cpp90 struct timeval tv; local
91 tv.tv_sec = 10 * 60;
92 tv.tv_usec = 0;
93 if (setsockopt(s, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)) == -1) {
/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 DDvbDeviceInfo.java17 package android.media.tv;
H A DTvContentRatingSystemInfo.java17 package android.media.tv;
H A DTvContentRating.java17 package android.media.tv;
138 * "com.android.tv",
150 * <td>com.android.tv</td>
799 * @param domain The domain string. For example, "com.android.tv".
849 * @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;
/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/packages/SystemUI/src/com/android/systemui/recents/tv/animations/
H A DRecentsRowFocusAnimationHolder.java16 package com.android.systemui.recents.tv.animations;
26 import com.android.systemui.recents.tv.views.TaskCardView;
H A DDismissAnimationsHolder.java16 package com.android.systemui.recents.tv.animations;
26 import com.android.systemui.recents.tv.views.TaskCardView;
H A DHomeRecentsEnterExitAnimationHolder.java17 package com.android.systemui.recents.tv.animations;
23 import com.android.systemui.recents.tv.views.TaskCardView;
24 import com.android.systemui.recents.tv.views.TaskStackHorizontalGridView;
H A DViewFocusAnimator.java16 package com.android.systemui.recents.tv.animations;
29 import com.android.systemui.recents.tv.views.TaskCardView;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/
H A DRecentsTvImpl.java17 package com.android.systemui.recents.tv;
39 import com.android.systemui.recents.tv.views.TaskCardView;
40 import com.android.systemui.statusbar.tv.TvStatusBar;
41 import com.android.systemui.tv.pip.PipManager;
45 "com.android.systemui.recents.tv.RecentsTvActivity";
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/views/
H A DRecentsTvTransitionHelper.java16 package com.android.systemui.recents.tv.views;
H A DTaskStackHorizontalGridView.java16 package com.android.systemui.recents.tv.views;
101 TaskCardView tv = (TaskCardView) getChildAt(i);
102 if (tv.getTask() == task) {
103 return tv;
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DSelectRequestBuffer.java55 protected HdmiCecLocalDeviceTv tv() { method in class:SelectRequestBuffer.SelectRequest
56 return mService.tv();
60 if (tv() == null) {
61 Slog.e(TAG, "Local tv device not available");
94 tv().deviceSelect(mId, mCallback);
108 tv().doManualPortSwitching(mId, mCallback);
/frameworks/base/core/jni/android/opengl/
H A Dpoly_clip.cpp65 float t, tu, tv; local
72 for (v= &p->vert[0], i=p->n; i>0; i--, u=v, tu=tv, v++) {
74 /* tv is negative if vertex v is in */
75 tv = sign*COORD(v, index) - v->sw*k;
76 if ((tu <= 0.0f) ^ (tv <= 0.0f)) {
78 t = tu/(tu-tv);
87 if (tv<=0.0f) /* vertex v is in, copy it to q */

Completed in 4557 milliseconds

123