Searched refs:active (Results 1 - 25 of 113) sorted by relevance

12345

/frameworks/base/core/java/android/os/
H A DIMaintenanceActivityListener.aidl21 void onMaintenanceActivityChanged(boolean active);
H A DRemoteCallbackList.java208 * be active at a time, so you must be sure to always call this from the
246 Object[] active = mActiveBroadcast;
247 if (active == null || active.length < N) {
248 mActiveBroadcast = active = new Object[N];
251 active[i] = mCallbacks.valueAt(i);
258 * Retrieve an item in the active broadcast that was previously started
306 Object[] active = mActiveBroadcast;
307 if (active != null) {
310 active[
[all...]
/frameworks/base/core/java/android/content/pm/
H A DIPackageInstallerCallback.aidl23 void onSessionActiveChanged(int sessionId, boolean active);
/frameworks/native/services/surfaceflinger/
H A DLayerRejecter.cpp58 if (mFront.active != mFront.requested) {
63 mFront.active = mFront.requested;
70 // because State::active is only accessed from this thread.
71 mCurrent.active = mFront.active;
93 " drawing={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) "
96 mName, bufWidth, bufHeight, item.mTransform, item.mScalingMode, mFront.active.w,
97 mFront.active.h, mFront.crop.left, mFront.crop.top, mFront.crop.right,
103 if (mFront.active.w != bufWidth || mFront.active
[all...]
H A DLayer.cpp129 mCurrentState.active.w = w;
130 mCurrentState.active.h = h;
131 mCurrentState.active.transform.set(0, 0);
145 mCurrentState.requested = mCurrentState.active;
393 Rect win(s.active.w, s.active.h);
436 Rect win(s.active.w, s.active.h);
473 Rect activeCrop(s.active.w, s.active
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethodClient.aidl30 void setActive(boolean active, boolean fullscreen);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DLocationController.java32 * @param active
34 default void onLocationActiveChanged(boolean active) {} argument
/frameworks/base/core/java/android/service/carrier/
H A DCarrierService.java103 * Based on the active parameter passed in, this method will either show or
105 * this UX, so a carrier app must be sure to call with active set to false
112 * @param active Whether the carrier network change is or shortly will be
113 * active. Set this value to true to begin showing
117 public final void notifyCarrierNetworkChange(boolean active) { argument
119 if (sRegistry != null) sRegistry.notifyCarrierNetworkChange(active);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DPhoneSwitcherMock.java77 public void setPhoneActive(int phoneId, boolean active) { argument
79 if (mIsActive[phoneId].getAndSet(active) != active) {
/frameworks/base/core/java/android/accessibilityservice/
H A DFingerprintGestureController.java92 Log.w(LOG_TAG, "Failed to check if fingerprint gestures are active", re);
125 * Called when gesture detection becomes active or inactive
128 public void onGestureDetectionActiveChanged(boolean active) { argument
138 handler.post(() -> callback.onGestureDetectionAvailabilityChanged(active));
140 callback.onGestureDetectionAvailabilityChanged(active);
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeHost.java43 default void onPowerSaveChanged(boolean active) {} argument
/frameworks/av/media/libstagefright/codecs/aacenc/inc/
H A Dtns_func.h36 Word16 active);
43 Word16 active);
/frameworks/base/core/java/android/hardware/radio/
H A DRadioTuner.java33 * configuring the active band, muting/unmuting, scanning and tuning, etc...
56 * Set the active band configuration for this module.
299 public void onTrafficAnnouncement(boolean active) {} argument
303 public void onEmergencyAnnouncement(boolean active) {} argument
/frameworks/base/core/java/android/net/
H A DINetworkManagementEventObserver.aidl89 * @param active True if the interface is actively transmitting data, false if it is idle.
92 void interfaceClassDataActivityChanged(String label, boolean active, long tsNanos);
/frameworks/base/tools/layoutlib/bridge/src/android/text/
H A DOptimizingLineBreaker.java60 ArrayList<Integer> active = new ArrayList<Integer>();
61 active.add(0);
69 for (ListIterator<Integer> it = active.listIterator(); it.hasNext();
100 active.clear();
104 active.add(i);
107 if (active.isEmpty()) {
115 active.add(breakIndex);
/frameworks/av/include/soundtrigger/
H A DISoundTriggerHwService.h43 virtual status_t setCaptureState(bool active) = 0;
/frameworks/base/core/java/com/android/server/net/
H A DBaseNetworkObserver.java61 public void interfaceClassDataActivityChanged(String label, boolean active, long tsNanos) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataCallResponse.java42 public final int active; field in class:DataCallResponse
75 public DataCallResponse(int status, int suggestedRetryTime, int cid, int active, String type, argument
81 this.active = active;
101 .append(" active=").append(active)
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleDrawable.java275 private void setRippleActive(boolean active) { argument
276 if (mRippleActive != active) {
277 mRippleActive = active;
278 if (active) {
286 private void setBackgroundActive(boolean active, boolean focused) { argument
287 if (mBackgroundActive != active) {
288 mBackgroundActive = active;
289 if (active) {
549 * Creates an active hotspot at the specified location.
569 * Attempts to start an enter animation for the active hotspo
[all...]
/frameworks/base/media/java/android/media/session/
H A DISession.aidl36 void setActive(boolean active);
/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/wifi/
H A DTestAccessPointBuilder.java75 public TestAccessPointBuilder setActive(boolean active) { argument
76 if (active) {
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIPhoneStateListener.aidl49 void onCarrierNetworkChange(in boolean active);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DTestUtil.java96 Context context, ArrayList<String> available, ArrayList<String> active) {
99 intent.putExtra(ConnectivityManager.EXTRA_ACTIVE_TETHER, active);
95 sendTetherStateChanged(BroadcastReceiver broadcastReceiver, Context context, ArrayList<String> available, ArrayList<String> active) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneSwitcher.java54 * and determine which phone/phones are active.
57 * the active phones. Note we don't wait for data attach (which may not happen anyway).
264 * phones that aren't in the active phone list. Finally, activate all
265 * phones in the active phone list.
329 public volatile boolean active = false; field in class:PhoneSwitcher.PhoneState
335 if (state.active == false) return;
336 state.active = false;
345 if (state.active == true) return;
346 state.active = true;
364 mCommandsInterfaces[phoneId].setDataAllowed(mPhoneStates[phoneId].active, nul
[all...]
/frameworks/native/opengl/libagl/
H A Dtexture.cpp110 c->rasterizer.procs.activeTexture(c, c->textures.active);
119 * If the active textures are EGLImage, they need to be locked before
165 c->rasterizer.procs.activeTexture(c, c->textures.active);
304 const int active = c->textures.active; local
305 const GLuint name = c->textures.tmu[active].name;
308 texture_unit_t& u(c->textures.tmu[active]);
326 // bind this texture to the current active texture unit
331 invalidate_texture(c, active);
346 // bind this texture to the current active textur
360 const int active = c->textures.active; local
377 const int active = c->textures.active; local
613 const int active = c->textures.active; local
[all...]

Completed in 1837 milliseconds

12345