Home
last modified time | relevance | path

Searched defs:window (Results 1 – 25 of 138) sorted by relevance

123456

/frameworks/base/native/android/
Dnative_window.cpp35 void ANativeWindow_acquire(ANativeWindow* window) { in ANativeWindow_acquire()
39 void ANativeWindow_release(ANativeWindow* window) { in ANativeWindow_release()
43 static int32_t getWindowProp(ANativeWindow* window, int what) { in getWindowProp()
49 int32_t ANativeWindow_getWidth(ANativeWindow* window) { in ANativeWindow_getWidth()
53 int32_t ANativeWindow_getHeight(ANativeWindow* window) { in ANativeWindow_getHeight()
57 int32_t ANativeWindow_getFormat(ANativeWindow* window) { in ANativeWindow_getFormat()
61 int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width, in ANativeWindow_setBuffersGeometry()
77 int32_t ANativeWindow_lock(ANativeWindow* window, ANativeWindow_Buffer* outBuffer, in ANativeWindow_lock()
82 int32_t ANativeWindow_unlockAndPost(ANativeWindow* window) { in ANativeWindow_unlockAndPost()
/frameworks/base/core/java/android/view/
DIWindowSession.aidl38 int add(IWindow window, int seq, in WindowManager.LayoutParams attrs, in add()
41 int addToDisplay(IWindow window, int seq, in WindowManager.LayoutParams attrs, in addToDisplay()
44 int addWithoutInputChannel(IWindow window, int seq, in WindowManager.LayoutParams attrs, in addWithoutInputChannel()
46 … int addToDisplayWithoutInputChannel(IWindow window, int seq, in WindowManager.LayoutParams attrs, in addToDisplayWithoutInputChannel()
49 void remove(IWindow window); in remove()
94 int relayout(IWindow window, int seq, in WindowManager.LayoutParams attrs, in relayout()
140 void performDeferredDestroy(IWindow window); in performDeferredDestroy()
145 boolean outOfMemory(IWindow window); in outOfMemory()
152 void setTransparentRegion(IWindow window, in Region region); in setTransparentRegion()
164 void setInsets(IWindow window, int touchableInsets, in Rect contentInsets, in setInsets()
[all …]
DFrameMetricsObserver.java51 FrameMetricsObserver(@NonNull Window window, @NonNull Looper looper, in FrameMetricsObserver()
70 final Window window = mWindow.get(); in notifyDataAvailable() local
DWindowInfo.java55 WindowInfo window = sPool.acquire(); in obtain() local
63 WindowInfo window = obtain(); in obtain() local
/frameworks/base/core/tests/coretests/src/android/database/
DCursorWindowTest.java39 CursorWindow window = new CursorWindow("MyWindow"); in testConstructor_WithName() local
47 CursorWindow window = new CursorWindow(""); in testConstructorWithEmptyName() local
55 CursorWindow window = new CursorWindow(null); in testConstructorWithNullName() local
64 CursorWindow window = new CursorWindow(true /*this argument is ignored*/); in testDeprecatedConstructor() local
72 CursorWindow window = new CursorWindow("MyWindow"); in testValues() local
77 private void doTestValues(CursorWindow window) { in doTestValues()
/frameworks/base/services/core/java/com/android/server/wm/
DSession.java163 public int add(IWindow window, int seq, WindowManager.LayoutParams attrs, in add()
171 public int addToDisplay(IWindow window, int seq, WindowManager.LayoutParams attrs, in addToDisplay()
179 public int addWithoutInputChannel(IWindow window, int seq, WindowManager.LayoutParams attrs, in addWithoutInputChannel()
186 …public int addToDisplayWithoutInputChannel(IWindow window, int seq, WindowManager.LayoutParams att… in addToDisplayWithoutInputChannel()
192 public void remove(IWindow window) { in remove()
197 public void repositionChild(IWindow window, int left, int top, int right, int bottom, in repositionChild()
208 public int relayout(IWindow window, int seq, WindowManager.LayoutParams attrs, in relayout()
224 public void performDeferredDestroy(IWindow window) { in performDeferredDestroy()
228 public boolean outOfMemory(IWindow window) { in outOfMemory()
232 public void setTransparentRegion(IWindow window, Region region) { in setTransparentRegion()
[all …]
DWallpaperController.java326 WindowState window, float x, float y, float xStep, float yStep) { in setWindowWallpaperPosition()
336 void setWindowWallpaperDisplayOffset(WindowState window, int x, int y) { in setWindowWallpaperDisplayOffset()
345 WindowState window, String action, int x, int y, int z, Bundle extras, boolean sync) { in sendWindowWallpaperCommand()
436 void wallpaperCommandComplete(IBinder window) { in wallpaperCommandComplete()
444 void wallpaperOffsetsComplete(IBinder window) { in wallpaperOffsetsComplete()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeWindowSession.java84 public boolean performHapticFeedback(IWindow window, int effectId, boolean always) { in performHapticFeedback()
99 public void repositionChild(IWindow window, int left, int top, int right, int bottom, in repositionChild()
106 public void performDeferredDestroy(IWindow window) { in performDeferredDestroy()
111 public boolean outOfMemory(IWindow window) throws RemoteException { in outOfMemory()
116 public void getDisplayFrame(IWindow window, Rect outDisplayFrame) { in getDisplayFrame()
136 public void setInsets(IWindow window, int touchable, Rect contentInsets, in setInsets()
142 public IBinder prepareDrag(IWindow window, int flags, in prepareDrag()
150 public boolean performDrag(IWindow window, IBinder dragToken, in performDrag()
159 public boolean startMovingTask(IWindow window, float startX, float startY) in startMovingTask()
166 public void reportDropResult(IWindow window, boolean consumed) throws RemoteException { in reportDropResult()
[all …]
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
DSystemBarHelper.java79 final Window window = dialog.getWindow(); in hideSystemBars() local
100 public static void hideSystemBars(final Window window) { in hideSystemBars()
126 public static void showSystemBars(final Window window, final Context context) { in showSystemBars()
157 public static void addVisibilityFlag(final Window window, final int flag) { in addVisibilityFlag()
180 public static void removeVisibilityFlag(final Window window, final int flag) { in removeVisibilityFlag()
188 public static void setBackButtonVisible(final Window window, final boolean visible) { in setBackButtonVisible()
223 private static void addImmersiveFlagsToDecorView(final Window window, final int vis) { in addImmersiveFlagsToDecorView()
233 private static void removeImmersiveFlagsFromDecorView(final Window window, final int vis) { in removeImmersiveFlagsFromDecorView()
242 private static void getDecorView(Window window, OnDecorViewInstalledListener callback) { in getDecorView()
273 public void getDecorView(Window window, OnDecorViewInstalledListener callback, in getDecorView()
[all …]
/frameworks/support/v17/leanback/api21/android/support/v17/leanback/transition/
DTransitionHelperApi21.java50 public static Object getSharedElementEnterTransition(Window window) { in getSharedElementEnterTransition()
54 public static Object getSharedElementReturnTransition(Window window) { in getSharedElementReturnTransition()
58 public static Object getSharedElementExitTransition(Window window) { in getSharedElementExitTransition()
62 public static Object getSharedElementReenterTransition(Window window) { in getSharedElementReenterTransition()
66 public static Object getEnterTransition(Window window) { in getEnterTransition()
70 public static Object getReturnTransition(Window window) { in getReturnTransition()
74 public static Object getExitTransition(Window window) { in getExitTransition()
78 public static Object getReenterTransition(Window window) { in getReenterTransition()
/frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
DSystemBarHelperTest.java74 final Window window = createWindowWithSystemUiVisibility(0x456); in testAddVisibilityFlagWindow() local
85 final Window window = createWindowWithSystemUiVisibility(0x456); in testRemoveVisibilityFlagWindow() local
96 final Window window = createWindowWithSystemUiVisibility(0x456); in testHideSystemBarsWindow() local
113 final Window window = createWindowWithSystemUiVisibility(0x456); in testShowSystemBarsWindow() local
133 final TestWindow window = new TestWindow(getContext(), null); in testHideSystemBarsNoInfiniteLoop() local
171 final Window window = createWindowWithSystemUiVisibility(0x456); in testSetBackButtonVisibleTrue() local
181 final Window window = createWindowWithSystemUiVisibility(0x456); in testSetBackButtonVisibleFalse() local
198 final Window window = new TestWindow(getContext(), createViewWithSystemUiVisibility(vis)); in createWindowWithSystemUiVisibility() local
/frameworks/base/core/jni/
Dandroid_database_CursorWindow.cpp70 CursorWindow* window; in nativeCreate() local
85 CursorWindow* window; in nativeCreateFromParcel() local
98 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeDispose() local
106 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeGetName() local
112 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeWriteToParcel() local
124 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeClear() local
133 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeGetNumRows() local
139 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeSetNumColumns() local
145 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeAllocRow() local
151 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeFreeLastRow() local
[all …]
Dandroid_view_TextureView.cpp101 static int32_t native_window_lock(ANativeWindow* window, ANativeWindow_Buffer* outBuffer, in native_window_lock()
106 static int32_t native_window_unlockAndPost(ANativeWindow* window) { in native_window_unlockAndPost()
114 sp<ANativeWindow> window = new Surface(producer, true); in android_view_TextureView_createNativeWindow() local
126 sp<ANativeWindow> window(nativeWindow); in android_view_TextureView_destroyNativeWindow() local
151 sp<ANativeWindow> window((ANativeWindow*) nativeWindow); in android_view_TextureView_lockCanvas() local
185 sp<ANativeWindow> window((ANativeWindow*) nativeWindow); in android_view_TextureView_unlockCanvasAndPost() local
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityCache.java68 final AccessibilityWindowInfo window = windows.get(i); in setWindows() local
75 public void addWindow(AccessibilityWindowInfo window) { in addWindow()
220 AccessibilityWindowInfo window = mWindowCache.valueAt(i); in getWindows() local
221 sortedWindows.put(window.getLayer(), window); in getWindows() local
229 AccessibilityWindowInfo window = sortedWindows.valueAt(i); in getWindows() local
242 AccessibilityWindowInfo window = mWindowCache.get(windowId); in getWindow() local
325 AccessibilityWindowInfo window = mWindowCache.valueAt(i); in clearWindowCache() local
407 AccessibilityWindowInfo window = mWindowCache.valueAt(i); in checkIntegrity() local
/frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/
DTransitionHelper.java76 public Object getSharedElementEnterTransition(Window window); in getSharedElementEnterTransition()
78 public Object getSharedElementReturnTransition(Window window); in getSharedElementReturnTransition()
80 public Object getSharedElementExitTransition(Window window); in getSharedElementExitTransition()
82 public Object getSharedElementReenterTransition(Window window); in getSharedElementReenterTransition()
84 public Object getEnterTransition(Window window); in getEnterTransition()
86 public Object getReturnTransition(Window window); in getReturnTransition()
88 public Object getExitTransition(Window window); in getExitTransition()
90 public Object getReenterTransition(Window window); in getReenterTransition()
182 public Object getSharedElementEnterTransition(Window window) { in getSharedElementEnterTransition()
187 public Object getSharedElementReturnTransition(Window window) { in getSharedElementReturnTransition()
[all …]
/frameworks/native/services/surfaceflinger/EventLog/
DEventLog.cpp34 void EventLog::doLogFrameDurations(const String8& window, in doLogFrameDurations()
46 void EventLog::logFrameDurations(const String8& window, in logFrameDurations()
/frameworks/native/opengl/libs/EGL/
Degl_object.cpp79 ANativeWindow* const window = win.get(); in ~egl_surface_t() local
87 ANativeWindow* const window = win.get(); in disconnect() local
/frameworks/native/vulkan/libvulkan/
Dswapchain.cpp111 android::sp<ANativeWindow> window; member
152 ANativeWindow* window, in ReleaseSwapchainImage()
281 ANativeWindow* window = SurfaceFromHandle(surface)->window.get(); in GetPhysicalDeviceSurfaceCapabilitiesKHR() local
723 ANativeWindow* window = active ? swapchain->surface.window.get() : nullptr; in DestroySwapchainKHR() local
767 ANativeWindow* window = swapchain.surface.window.get(); in AcquireNextImageKHR() local
883 ANativeWindow* window = swapchain.surface.window.get(); in QueuePresentKHR() local
/frameworks/base/media/mca/filterfw/jni/
Djni_gl_environment.cpp42 NativeWindowHandle(ANativeWindow* window) : window_(window) { in NativeWindowHandle()
142 ANativeWindow* window = ANativeWindow_fromSurface(env, surface); in Java_android_filterfw_core_GLEnvironment_nativeAddSurface() local
204 ANativeWindow* window = ANativeWindow_fromSurface(env, surface); in Java_android_filterfw_core_GLEnvironment_nativeAddSurfaceWidthHeight() local
295 sp<ANativeWindow> window = surfaceTC; in Java_android_filterfw_core_GLEnvironment_nativeAddSurfaceFromMediaRecorder() local
/frameworks/native/opengl/tools/glgen/stubs/egl/
DeglCreateWindowSurface.cpp15 android::sp<ANativeWindow> window; in android_eglCreateWindowSurface() local
88 android::sp<ANativeWindow> window; in android_eglCreateWindowSurfaceTexture() local
/frameworks/base/core/java/android/database/
DCrossProcessCursor.java61 void fillWindow(int position, CursorWindow window); in fillWindow()
/frameworks/native/libs/gui/
DSurface.cpp136 int Surface::hook_setSwapInterval(ANativeWindow* window, int interval) { in hook_setSwapInterval()
141 int Surface::hook_dequeueBuffer(ANativeWindow* window, in hook_dequeueBuffer()
147 int Surface::hook_cancelBuffer(ANativeWindow* window, in hook_cancelBuffer()
153 int Surface::hook_queueBuffer(ANativeWindow* window, in hook_queueBuffer()
159 int Surface::hook_dequeueBuffer_DEPRECATED(ANativeWindow* window, in hook_dequeueBuffer_DEPRECATED()
180 int Surface::hook_cancelBuffer_DEPRECATED(ANativeWindow* window, in hook_cancelBuffer_DEPRECATED()
186 int Surface::hook_lockBuffer_DEPRECATED(ANativeWindow* window, in hook_lockBuffer_DEPRECATED()
192 int Surface::hook_queueBuffer_DEPRECATED(ANativeWindow* window, in hook_queueBuffer_DEPRECATED()
198 int Surface::hook_query(const ANativeWindow* window, in hook_query()
204 int Surface::hook_perform(ANativeWindow* window, int operation, ...) { in hook_perform()
/frameworks/support/v7/appcompat/src/android/support/v7/app/
DAppCompatDelegateImplV11.java27 AppCompatDelegateImplV11(Context context, Window window, AppCompatCallback callback) { in AppCompatDelegateImplV11()
/frameworks/native/libs/gui/tests/
DSurface_test.cpp190 sp<ANativeWindow> window(surface); in TEST_F() local
229 sp<ANativeWindow> window(surface); in TEST_F() local
245 sp<ANativeWindow> window(surface); in TEST_F() local
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
DBrightnessDialog.java40 final Window window = getWindow(); in onCreate() local

123456