Lines Matching defs:client

384      * Windows that are being resized.  Used so we can tell the client about
1100 final IWindow client = win.mClient;
1152 if (localLOGV) Slog.v(TAG, "Figuring out where to add app window " + client.asBinder()
2076 // First, make sure the client has the current visibility state.
2353 public int addWindow(Session session, IWindow client, int seq,
2385 if (mWindowMap.containsKey(client.asBinder())) {
2386 Slog.w(TAG, "Window " + client + " is already added");
2501 WindowState win = new WindowState(this, session, client, token,
2506 Slog.w(TAG, "Adding window client " + client.asBinder()
2544 mWindowMap.put(client.asBinder(), win);
2633 if (localLOGV || DEBUG_ADD_REMOVE) Slog.v(TAG, "addWindow: New client "
2634 + client.asBinder() + ": window=" + win + " Callers=" + Debug.getCallers(5));
2696 public void removeWindow(Session session, IWindow client) {
2698 WindowState win = windowForClientLocked(session, client, false);
2713 TAG, "Remove " + win + " client="
2947 void setTransparentRegionWindow(Session session, IWindow client, Region region) {
2951 WindowState w = windowForClientLocked(session, client, false);
2961 void setInsetsWindow(Session session, IWindow client,
2967 WindowState w = windowForClientLocked(session, client, false);
2991 public void getWindowDisplayFrame(Session session, IWindow client,
2994 WindowState win = windowForClientLocked(session, client, false);
3087 public int relayoutWindow(Session session, IWindow client, int seq,
3105 WindowState win = windowForClientLocked(session, client, false);
3262 Slog.w(TAG, "Exception thrown when creating surface for client "
3263 + client + " (" + win.mAttrs.getTitle() + ")",
3384 TAG, "Relayout given client " + client.asBinder()
3414 public void performDeferredDestroyWindow(Session session, IWindow client) {
3419 WindowState win = windowForClientLocked(session, client, false);
3430 public boolean outOfMemoryWindow(Session session, IWindow client) {
3435 WindowState win = windowForClientLocked(session, client, false);
3439 return reclaimSomeSurfaceMemoryLocked(win.mWinAnimator, "from-client", false);
3446 public void finishDrawingWindow(Session session, IWindow client) {
3450 WindowState win = windowForClientLocked(session, client, false);
4729 // to tell the client to make its windows visible so
5363 mLastFinishedFreezeSource = "client";
6904 * @param client The remote client to send the listing to.
6907 boolean viewServerListWindows(Socket client) {
6928 OutputStream clientStream = client.getOutputStream();
6962 * @param client The remote client to send the listing to.
6965 boolean viewServerGetFocusedWindow(Socket client) {
6978 OutputStream clientStream = client.getOutputStream();
7016 * @param client The remote client to sent the result, if any, to.
7023 boolean viewServerWindowCommand(Socket client, String command, String parameters) {
7061 ParcelFileDescriptor.fromSocket(client).writeToParcel(data, 0);
7071 if (!client.isOutputShutdown()) {
7072 out = new BufferedWriter(new OutputStreamWriter(client.getOutputStream()));
8080 mLastFinishedFreezeSource = "client-timeout";
8294 public IWindowSession openSession(IWindowSessionCallback callback, IInputMethodClient client,
8296 if (client == null) throw new IllegalArgumentException("null client");
8298 Session session = new Session(this, callback, client, inputContext);
8303 public boolean inputMethodClientHasFocus(IInputMethodClient client) {
8305 // The focus for the client is the window immediately below
8321 // The client has definitely started, so it really should
8333 Slog.i(TAG, "IM target client: " + imFocus.mSession.mClient);
8335 Slog.i(TAG, "IM target client binder: "
8337 Slog.i(TAG, "Requesting client binder: " + client.asBinder());
8341 imFocus.mSession.mClient.asBinder() == client.asBinder()) {
8356 && mCurrentFocus.mSession.mClient.asBinder() == client.asBinder()) {
8725 final WindowState windowForClientLocked(Session session, IWindow client,
8727 return windowForClientLocked(session, client.asBinder(), throwOnError);
8730 final WindowState windowForClientLocked(Session session, IBinder client,
8732 WindowState win = mWindowMap.get(client);
8734 TAG, "Looking up client " + client + ": " + win);
8737 "Requested window " + client + " does not exist");
8746 "Requested window " + client + " is in session " +
11433 pw.print(" client="); pw.print(mClientFreezingScreen);