Home | History | Annotate | Download | only in textservice

Lines Matching defs:session

139      * @return true if the connection to a text service of this session is disconnected and not
147 * Get the spell checker service info this spell checker session has.
162 * Finish this session and allow TextServicesManagerService to disconnect the bound spell
283 private void processTask(ISpellCheckerSession session, SpellCheckerParams scp,
288 + " session.hashCode()=#" + Integer.toHexString(session.hashCode())
298 session.onCancel();
305 session.onGetSuggestionsMultiple(scp.mTextInfos,
313 session.onGetSentenceSuggestionsMultiple(
321 session.onClose();
330 scp.mSession = session;
345 + " session" + (mISpellCheckerSession != null ? ".hashCode()=#"
370 public void onServiceConnected(ISpellCheckerSession session) {
379 if (DBG) Log.i(TAG, "ignoring onServiceConnected since the session is"
387 if (session == null) {
388 Log.e(TAG, "ignoring onServiceConnected due to session=null");
391 mISpellCheckerSession = session;
392 if (session.asBinder() instanceof Binder && mThread == null) {
413 processTask(session, mPendingTasks.poll(), false);
446 ISpellCheckerSession session;
490 session = mISpellCheckerSession;
492 // session must never be null here.
493 processTask(session, scp, false);
547 public void onServiceConnected(ISpellCheckerSession session) {
548 mParentSpellCheckerSessionListenerImpl.onServiceConnected(session);