Home
last modified time | relevance | path

Searched refs:mWrapper (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Connectivity/tests/integration/util/com/android/server/
DNetworkAgentWrapper.java185 private final NetworkAgentWrapper mWrapper; field in NetworkAgentWrapper.InstrumentedNetworkAgent
199 mWrapper = wrapper; in InstrumentedNetworkAgent()
205 mWrapper.mDisconnected.open(); in unwanted()
211 if (mWrapper.mExpectedKeepaliveSlot != null) { in startSocketKeepalive()
212 assertEquals((int) mWrapper.mExpectedKeepaliveSlot, slot); in startSocketKeepalive()
214 mWrapper.mHandlerThread.getThreadHandler().postDelayed( in startSocketKeepalive()
215 () -> onSocketKeepaliveEvent(slot, mWrapper.mStartKeepaliveError), in startSocketKeepalive()
216 mWrapper.mKeepaliveResponseDelay); in startSocketKeepalive()
222 mWrapper.mHandlerThread.getThreadHandler().postDelayed( in stopSocketKeepalive()
223 () -> onSocketKeepaliveEvent(slot, mWrapper.mStopKeepaliveError), in stopSocketKeepalive()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/qsb/
DQsbContainerView.java184 private FrameLayout mWrapper; field in QsbContainerView.QsbFragment
190 mWrapper = new FrameLayout(getContext()); in onCreateView()
194 mWrapper.addView(createQsb(mWrapper)); in onCreateView()
196 return mWrapper; in onCreateView()
288 if (mWrapper != null && getContext() != null) { in rebindFragment()
289 mWrapper.removeAllViews(); in rebindFragment()
290 mWrapper.addView(createQsb(mWrapper)); in rebindFragment()
/packages/services/Telecomm/src/com/android/server/telecom/
DCallStreamingController.java175 private final TransactionalServiceWrapper mWrapper; field in CallStreamingController.StreamingServiceTransaction
183 mWrapper = wrapper; in StreamingServiceTransaction()
240 mConnection = new CallStreamingServiceConnection(mCall, mWrapper, future); in processTransaction()
397 private TransactionalServiceWrapper mWrapper; field in CallStreamingController.CallStreamingServiceConnection
403 mWrapper = wrapper; in CallStreamingServiceConnection()
411 onConnectedInternal(mCall, mWrapper, service); in onServiceConnected()
444 mWrapper.onCallStreamingFailed(mCall, STREAMING_FAILED_SENDER_BINDING_ERROR); in clearBinding()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/
DKitchenSink2Activity.java88 private View mWrapper; field in KitchenSink2Activity
215 mWrapper = findViewById(R.id.wrapper); in onCreate()
216 mWrapper.setVisibility(mSharedPreferences.getInt(KEY_COLLAPSE_STATE, View.VISIBLE)); in onCreate()
282 .setIcon(mWrapper.getVisibility() == View.GONE in setUpToolbars()
385 if (mWrapper.getVisibility() == View.VISIBLE) { in toggleMenuWrapper()
386 mWrapper.setVisibility(View.GONE); in toggleMenuWrapper()
389 mWrapper.setVisibility(View.VISIBLE); in toggleMenuWrapper()
399 .putInt(KEY_COLLAPSE_STATE, mWrapper.getVisibility()) in saveVisibilityState()
/packages/apps/Settings/src/com/android/settings/wifi/tether/
DTetherService.java91 private TetherServiceWrapper mWrapper; field in TetherService
357 mWrapper = wrapper; in setTetherServiceWrapper()
361 if (mWrapper == null) { in getTetherServiceWrapper()
362 mWrapper = new TetherServiceWrapper(this); in getTetherServiceWrapper()
364 return mWrapper; in getTetherServiceWrapper()