Lines Matching refs:client

443      * Windows that are being resized.  Used so we can tell the client about
1153 final IWindow client = win.mClient;
1164 if (localLOGV) Slog.v(TAG_WM, "Figuring out where to add app window " + client.asBinder()
1849 public int addWindow(Session session, IWindow client, int seq,
1881 if (mWindowMap.containsKey(client.asBinder())) {
1882 Slog.w(TAG_WM, "Window " + client + " is already added");
2009 WindowState win = new WindowState(this, session, client, token,
2014 Slog.w(TAG_WM, "Adding window client " + client.asBinder()
2052 mWindowMap.put(client.asBinder(), win);
2170 if (localLOGV || DEBUG_ADD_REMOVE) Slog.v(TAG_WM, "addWindow: New client "
2171 + client.asBinder() + ": window=" + win + " Callers=" + Debug.getCallers(5));
2294 public void removeWindow(Session session, IWindow client) {
2296 WindowState win = windowForClientLocked(session, client, false);
2319 TAG_WM, "Remove " + win + " client="
2600 void setTransparentRegionWindow(Session session, IWindow client, Region region) {
2604 WindowState w = windowForClientLocked(session, client, false);
2617 void setInsetsWindow(Session session, IWindow client, int touchableInsets, Rect contentInsets,
2622 WindowState w = windowForClientLocked(session, client, false);
2648 public void getWindowDisplayFrame(Session session, IWindow client,
2651 WindowState win = windowForClientLocked(session, client, false);
2688 void repositionChild(Session session, IWindow client,
2696 WindowState win = windowForClientLocked(session, client, false);
2746 public int relayoutWindow(Session session, IWindow client, int seq,
2760 WindowState win = windowForClientLocked(session, client, false);
2857 Slog.w(TAG_WM, "Exception thrown when creating surface for client "
2858 + client + " (" + win.mAttrs.getTitle() + ")",
2963 TAG_WM, "Relayout given client " + client.asBinder()
3077 // notifying the client to render to with an offset from the surface's top-left.
3097 // If we're animating with a saved surface now, request client to report draw.
3104 public void performDeferredDestroyWindow(Session session, IWindow client) {
3109 WindowState win = windowForClientLocked(session, client, false);
3121 public boolean outOfMemoryWindow(Session session, IWindow client) {
3126 WindowState win = windowForClientLocked(session, client, false);
3130 return reclaimSomeSurfaceMemoryLocked(win.mWinAnimator, "from-client", false);
3137 public void finishDrawingWindow(Session session, IWindow client) {
3141 WindowState win = windowForClientLocked(session, client, false);
4416 // We need to inform the client the enter animation was finished.
4513 // to tell the client to make its windows visible so
5331 mLastFinishedFreezeSource = "client";
6935 * @param client The remote client to send the listing to.
6938 boolean viewServerListWindows(Socket client) {
6959 OutputStream clientStream = client.getOutputStream();
6993 * @param client The remote client to send the listing to.
6996 boolean viewServerGetFocusedWindow(Socket client) {
7009 OutputStream clientStream = client.getOutputStream();
7047 * @param client The remote client to sent the result, if any, to.
7054 boolean viewServerWindowCommand(Socket client, String command, String parameters) {
7092 ParcelFileDescriptor.fromSocket(client).writeToParcel(data, 0);
7102 if (!client.isOutputShutdown()) {
7103 out = new BufferedWriter(new OutputStreamWriter(client.getOutputStream()));
8366 mLastFinishedFreezeSource = "client-timeout";
8625 // eventually be removed when the client process finishes.
8666 public IWindowSession openSession(IWindowSessionCallback callback, IInputMethodClient client,
8668 if (client == null) throw new IllegalArgumentException("null client");
8670 Session session = new Session(this, callback, client, inputContext);
8675 public boolean inputMethodClientHasFocus(IInputMethodClient client) {
8677 // The focus for the client is the window immediately below
8693 // The client has definitely started, so it really should
8705 Slog.i(TAG_WM, "IM target client: " + imFocus.mSession.mClient);
8707 Slog.i(TAG_WM, "IM target client binder: "
8709 Slog.i(TAG_WM, "Requesting client binder: " + client.asBinder());
8713 imFocus.mSession.mClient.asBinder() == client.asBinder()) {
8728 && mCurrentFocus.mSession.mClient.asBinder() == client.asBinder()) {
9089 final WindowState windowForClientLocked(Session session, IWindow client,
9091 return windowForClientLocked(session, client.asBinder(), throwOnError);
9094 final WindowState windowForClientLocked(Session session, IBinder client,
9096 WindowState win = mWindowMap.get(client);
9098 TAG_WM, "Looking up client " + client + ": " + win);
9101 "Requested window " + client + " does not exist");
9110 "Requested window " + client + " is in session " +
9289 // notify the client of frame changes in this case. Not only
9292 // phases in the animation, and the client will become
10401 pw.print(" client="); pw.print(mClientFreezingScreen);
11090 void updatePointerIcon(IWindow client) {
11106 WindowState callingWin = windowForClientLocked(null, client, false);
11108 Slog.w(TAG_WM, "Bad requesting window " + client);