Home
last modified time | relevance | path

Searched refs:mSession (Results 1 – 13 of 13) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
DPreloader.java41 private volatile PreloaderSession mSession; field in Preloader
54 mSession = null; in Preloader()
60 if (mSession == null) { in getSession()
62 mSession = new PreloaderSession(id); in getSession()
64 mSession.getWebView()); in getSession()
65 return mSession; in getSession()
66 } else if (mSession.mId.equals(id)) { in getSession()
68 return mSession; in getSession()
71 if (LOGD_ENABLED) Log.d(LOGTAG, "Existing session in progress : " + mSession.mId + in getSession()
78 if (mSession != null && mSession.mId.equals(id)) { in takeSession()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppTransfer.java95 private BluetoothOppObexSession mSession; field in BluetoothOppTransfer
112 mSession = session; in BluetoothOppTransfer()
187 mSession.stop(); in handleMessage()
209 mSession.stop(); in handleMessage()
411 if (mSession != null) { in stop()
413 mSession.stop(); in stop()
439 mSession = new BluetoothOppObexClientSession(mContext, mTransport); in startObexSession()
446 if (mSession == null) { in startObexSession()
453 if (V) Log.v(TAG, "Transfer has Server session" + mSession.toString()); in startObexSession()
456 mSession.start(mSessionHandler, mBatch.getNumShares()); in startObexSession()
[all …]
DBluetoothOppObexServerSession.java88 private ServerSession mSession; field in BluetoothOppObexServerSession
122 mSession = new ServerSession(mTransport, this, null); in preStart()
148 if (mSession != null) { in stop()
150 mSession.close(); in stop()
157 mSession = null; in stop()
/packages/services/Telecomm/src/com/android/server/telecom/
DHeadsetMediaButton.java55 private final MediaSession mSession; field in HeadsetMediaButton
62 mSession = new MediaSession(context, HeadsetMediaButton.class.getSimpleName()); in HeadsetMediaButton()
63 mSession.setCallback(mSessionCallback); in HeadsetMediaButton()
64 mSession.setFlags(MediaSession.FLAG_EXCLUSIVE_GLOBAL_PRIORITY in HeadsetMediaButton()
66 mSession.setPlaybackToLocal(AUDIO_ATTRIBUTES); in HeadsetMediaButton()
89 if (!mSession.isActive()) { in onCallAdded()
90 mSession.setActive(true); in onCallAdded()
98 if (mSession.isActive()) { in onCallRemoved()
99 mSession.setActive(false); in onCallRemoved()
/packages/apps/Settings/src/com/android/settings/net/
DChartDataLoader.java44 private final INetworkStatsSession mSession; field in ChartDataLoader
61 mSession = session; in ChartDataLoader()
89 data.network = mSession.getHistoryForNetwork(template, fields); in loadInBackground()
135 final NetworkStatsHistory history = mSession.getHistoryForUid( in collectHistoryForUid()
DSummaryForAllUidLoader.java32 private final INetworkStatsSession mSession; field in SummaryForAllUidLoader
45 mSession = session; in SummaryForAllUidLoader()
62 return mSession.getSummaryForAllUid(template, start, end, false); in loadInBackground()
/packages/apps/Camera2/src/com/android/camera/one/v2/
DOneCameraZslImpl.java224 private final CaptureSession mSession; field in OneCameraZslImpl.ImageCaptureTask
229 mSession = session; in ImageCaptureTask()
253 mSession.startEmpty(); in onImageCaptured()
254 savePicture(image, mParams, mSession); in onImageCaptured()
255 mParams.callback.onPictureTaken(mSession); in onImageCaptured()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
DAppsBrowseInfo.java48 private final ApplicationsState.Session mSession; field in AppsBrowseInfo
63 mSession = mApplicationsState.newSession(this); in AppsBrowseInfo()
152 mSession.resume(); in init()
DAppManagementActivity.java61 private ApplicationsState.Session mSession; field in AppManagementActivity
77 mSession = mApplicationsState.newSession(this); in onCreate()
78 mSession.resume(); in onCreate()
/packages/apps/Settings/src/com/android/settings/applications/
DManageApplications.java549 private final ApplicationsState.Session mSession; field in ManageApplications.ApplicationsAdapter
584 mSession = state.newSession(this); in ApplicationsAdapter()
594 mSession.resume(); in resume()
605 mSession.pause(); in pause()
610 mSession.release(); in release()
667 = mSession.rebuild(filterObj, comparatorObj); in rebuild()
DInstalledAppDetails.java112 private ApplicationsState.Session mSession; field in InstalledAppDetails
438 mSession = mState.newSession(this); in onCreate()
450 mSession.resume(); in onCreate()
601 mSession.resume(); in onResume()
610 mSession.pause(); in onPause()
616 mSession.release(); in onDestroyView()
/packages/experimental/PrintService/src/foo/bar/printservice/
DMyPrintService.java73 private FakePrinterDiscoverySession mSession; field in MyPrintService
96 if (mSession != null) { in onDisconnected()
97 mSession.cancellAddingFakePrinters(); in onDisconnected()
/packages/apps/Camera2/src/com/android/camera/processing/
DProcessingTask.java34 public final CaptureSession mSession; field in ProcessingTask.ProcessingResult
42 mSession = session; in ProcessingResult()