Searched defs:session (Results 1 - 25 of 61) sorted by relevance

123

/frameworks/av/media/libmedia/
H A DIRemoteDisplayClient.cpp41 uint32_t width, uint32_t height, uint32_t flags, uint32_t session)
49 data.writeInt32(session);
84 uint32_t session = data.readInt32(); local
85 onDisplayConnected(surfaceTexture, width, height, flags, session);
40 onDisplayConnected(const sp<IGraphicBufferProducer>& bufferProducer, uint32_t width, uint32_t height, uint32_t flags, uint32_t session) argument
/frameworks/av/media/libstagefright/rtsp/
H A Drtp_test.cpp79 sp<ARTPSession> session = new ARTPSession; local
80 looper->registerHandler(session);
166 CHECK_EQ(session->setup(desc), (status_t)OK);
178 CHECK_EQ(session->countTracks(), 1u);
179 sp<MediaSource> source = session->trackAt(0);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DEnergyProbe.java41 public EnergyProbe(int session) { argument
43 mVisualizer = new Visualizer(session);
/frameworks/base/services/java/com/android/server/wm/
H A DStrictModeFlash.java41 public StrictModeFlash(Display display, SurfaceSession session) { argument
44 ctrl = new SurfaceControl(session, "StrictModeFlash",
H A DFocusedStackFrame.java47 public FocusedStackFrame(Display display, SurfaceSession session) { argument
51 ctrl = new SurfaceTrace(session, "FocusedStackFrame",
54 ctrl = new SurfaceControl(session, "FocusedStackFrame",
H A DWatermark.java54 Watermark(Display display, DisplayMetrics dm, SurfaceSession session, String[] tokens) { argument
115 ctrl = new SurfaceControl(session, "WatermarkSurface",
H A DBlackFrame.java39 BlackSurface(SurfaceSession session, int layer, int l, int t, int r, int b, int layerStack) argument
48 surface = new WindowStateAnimator.SurfaceTrace(session, "BlackSurface("
52 surface = new SurfaceControl(session, "BlackSurface",
115 public BlackFrame(SurfaceSession session, Rect outer, Rect inner, int layer, int layerStack, argument
125 mBlackSurfaces[0] = new BlackSurface(session, layer,
129 mBlackSurfaces[1] = new BlackSurface(session, layer,
133 mBlackSurfaces[2] = new BlackSurface(session, layer,
137 mBlackSurfaces[3] = new BlackSurface(session, layer,
/frameworks/base/core/java/android/hardware/display/
H A DWifiDisplaySessionInfo.java23 * This class contains information regarding a wifi display session
24 * (such as session id, source ip address, etc.). This is needed for
44 int session = in.readInt();
49 return new WifiDisplaySessionInfo(client, session, group, pp, ip);
63 boolean client, int session, String group, String pp, String ip) {
65 mSessionId = session;
62 WifiDisplaySessionInfo( boolean client, int session, String group, String pp, String ip) argument
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaBassBoostTest.java184 private void getBassBoost(int session) { argument
185 if (mBassBoost == null || session != mSession) {
186 if (session != mSession && mBassBoost != null) {
191 mBassBoost = new BassBoost(0, session);
192 mSession = session;
H A DMediaPresetReverbTest.java295 // reverb will be chosen by the effect framework as we are on session 0
353 private void getReverb(int session) { argument
354 if (mReverb == null || session != mSession) {
355 if (session != mSession && mReverb != null) {
360 mReverb = new PresetReverb(0, session);
361 mSession = session;
H A DMediaVirtualizerTest.java185 private void getVirtualizer(int session) { argument
186 if (mVirtualizer == null || session != mSession) {
187 if (session != mSession && mVirtualizer != null) {
192 mVirtualizer = new Virtualizer(0, session);
193 mSession = session;
H A DMediaEnvReverbTest.java452 // auxiliary reverb will be chosen by the effect framework as we are on session 0
512 private void getReverb(int session) { argument
513 if (mReverb == null || session != mSession) {
514 if (session != mSession && mReverb != null) {
519 mReverb = new EnvironmentalReverb(0, session);
520 mSession = session;
H A DMediaEqualizerTest.java253 private void getEqualizer(int session) { argument
254 if (mEqualizer == null || session != mSession) {
255 if (session != mSession && mEqualizer != null) {
260 mEqualizer = new Equalizer(0, session);
261 mSession = session;
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipSessionAdapter.java25 public void onCalling(ISipSession session) { argument
28 public void onRinging(ISipSession session, SipProfile caller, argument
32 public void onRingingBack(ISipSession session) { argument
35 public void onCallEstablished(ISipSession session, argument
39 public void onCallEnded(ISipSession session) { argument
42 public void onCallBusy(ISipSession session) { argument
45 public void onCallTransferring(ISipSession session, argument
49 public void onCallChangeFailed(ISipSession session, int errorCode, argument
53 public void onError(ISipSession session, int errorCode, String message) { argument
56 public void onRegistering(ISipSession session) { argument
59 onRegistrationDone(ISipSession session, int duration) argument
62 onRegistrationFailed(ISipSession session, int errorCode, String message) argument
66 onRegistrationTimeout(ISipSession session) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DAbstractInputMethodService.java58 * Instantiate a new client session for the input method, by calling
67 * Take care of enabling or disabling an existing session by calling its
71 public void setSessionEnabled(InputMethodSession session, boolean enabled) { argument
72 ((AbstractInputMethodSessionImpl)session).setEnabled(enabled);
76 * Take care of killing an existing session by calling its
80 public void revokeSession(InputMethodSession session) { argument
81 ((AbstractInputMethodSessionImpl)session).revokeSelf();
87 * interface. This takes care of basic maintenance of the session,
95 * Check whether this session has been enabled by the system. If not
103 * Check whether this session ha
[all...]
H A DIInputMethodWrapper.java94 public void sessionCreated(InputMethodSession session) { argument
96 if (session != null) {
98 new IInputMethodSessionWrapper(mContext, session, mChannel);
278 public void setSessionEnabled(IInputMethodSession session, boolean enabled) { argument
281 session).getInternalInputMethodSession();
283 Log.w(TAG, "Session is already finished: " + session);
289 Log.w(TAG, "Incoming session not of correct type: " + session, e);
294 public void revokeSession(IInputMethodSession session) { argument
297 session)
[all...]
/frameworks/base/core/java/android/net/
H A DVpnService.java266 * Set the name of this session. It will be displayed in
270 public Builder setSession(String session) { argument
271 mConfig.session = session;
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethod.java77 public void sessionCreated(InputMethodSession session); argument
82 * unique token for the session it has with the system service. It is
153 * use {@link #revokeSession(InputMethodSession)} to destroy the session
156 * @param callback Interface that is called with the newly created session.
161 * Control whether a particular input method session is active.
163 * @param session The {@link InputMethodSession} previously provided through
166 public void setSessionEnabled(InputMethodSession session, boolean enabled); argument
169 * Disable and destroy a session that was previously created with
171 * After this call, the given session interface is no longer active and
174 * @param session Th
177 revokeSession(InputMethodSession session) argument
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DVpnConfig.java64 public String session; field in class:VpnConfig
111 out.writeString(session);
129 config.session = in.readString();
/frameworks/base/media/java/android/media/
H A DRemoteDisplay.java126 final int width, final int height, final int flags, final int session) {
130 mListener.onDisplayConnected(surface, width, height, flags, session);
160 int width, int height, int flags, int session);
125 notifyDisplayConnected(final Surface surface, final int width, final int height, final int flags, final int session) argument
159 onDisplayConnected(Surface surface, int width, int height, int flags, int session) argument
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipSessionListenerProxy.java47 public void onCalling(final ISipSession session) { argument
53 mListener.onCalling(session);
62 public void onRinging(final ISipSession session, final SipProfile caller, argument
69 mListener.onRinging(session, caller, sessionDescription);
78 public void onRingingBack(final ISipSession session) { argument
84 mListener.onRingingBack(session);
93 public void onCallEstablished(final ISipSession session, argument
100 mListener.onCallEstablished(session, sessionDescription);
109 public void onCallEnded(final ISipSession session) { argument
115 mListener.onCallEnded(session);
140 onCallBusy(final ISipSession session) argument
155 onCallChangeFailed(final ISipSession session, final int errorCode, final String message) argument
171 onError(final ISipSession session, final int errorCode, final String message) argument
187 onRegistering(final ISipSession session) argument
202 onRegistrationDone(final ISipSession session, final int duration) argument
218 onRegistrationFailed(final ISipSession session, final int errorCode, final String message) argument
234 onRegistrationTimeout(final ISipSession session) argument
[all...]
/frameworks/base/core/java/android/print/
H A DPrinterDiscoverySession.java71 Log.e(LOG_TAG, "Error creating printer discovery session", re);
77 Log.w(LOG_TAG, "Ignoring start printers dsicovery - session destroyed");
92 Log.w(LOG_TAG, "Ignoring stop printers discovery - session destroyed");
107 Log.w(LOG_TAG, "Ignoring start printer state tracking - session destroyed");
119 Log.w(LOG_TAG, "Ignoring stop printer state tracking - session destroyed");
131 Log.w(LOG_TAG, "Ignoring validate printers - session destroyed");
143 Log.w(LOG_TAG, "Ignoring destroy - session destroyed");
150 Log.w(LOG_TAG, "Ignoring get printers - session destroyed");
174 Log.e(LOG_TAG, "Destroying leaked printer discovery session");
189 Log.e(LOG_TAG, "Error destroying printer discovery session", r
292 PrinterDiscoveryObserver(PrinterDiscoverySession session) argument
[all...]
/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java49 * {@link #createSession()} to provide a spell checker session that is corresponding
50 * to requested language and so on. The spell checker session returned by this method
91 * Factory method to create a spell checker session impl
106 public final void setInternalISpellCheckerSession(InternalISpellCheckerSession session) { argument
107 mInternalSession = session;
214 * Request to close this session.
222 * @return Locale for this session
229 * @return Bundle for this session
244 Bundle bundle, Session session) {
246 mSession = session;
243 InternalISpellCheckerSession(String locale, ISpellCheckerSessionListener listener, Bundle bundle, Session session) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java32 public void setSession(IWindowSession session) { argument
33 mSession = session;
/frameworks/base/core/jni/
H A Dandroid_media_RemoteDisplay.cpp65 uint32_t width, uint32_t height, uint32_t flags, uint32_t session) {
77 surfaceObj, width, height, flags, session);
64 onDisplayConnected(const sp<IGraphicBufferProducer>& bufferProducer, uint32_t width, uint32_t height, uint32_t flags, uint32_t session) argument

Completed in 5783 milliseconds

123