Searched refs:active (Results 51 - 75 of 83) sorted by last modified time

1234

/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java123 * <p>After starting mS5 the list of active states is mP0, mP1, mS1 and mS5.
133 * mS4.enter. The new list of active states is mP0, mP1, mS2 and mS4. So
728 boolean active; field in class:StateMachine.SmHandler.StateInfo
735 return "state=" + state.getName() + ",active=" + active + ",parent="
998 mStateStack[mStateStackTopIndex].active = false;
1010 mStateStack[i].active = true;
1063 * state that is already active i.e. StateInfo.active == true.
1072 * Search up the parent list of the destination state for an active
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethodClient.aidl29 void setActive(boolean active);
/frameworks/base/core/java/com/android/server/net/
H A DBaseNetworkObserver.java61 public void interfaceClassDataActivityChanged(String label, boolean active, long tsNanos) { argument
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DConnectivityManagerTestBase.java229 String[] active = mCm.getTetheredIfaces();
231 for (String iface: active) {
454 assertTrue("no active network connection", waitForActiveNetworkConnection(LONG_TIMEOUT));
490 assertNotNull("no active wifi info", mWifiManager.getConnectionInfo());
/frameworks/base/core/java/android/app/
H A DFragmentManager.java1726 // First collect all active fragments.
1728 FragmentState[] active = new FragmentState[N];
1735 "Failure saving state: active " + f
1742 active[i] = fs;
1791 "Failure saving state: active " + mAdded.get(i)
1814 fms.mActive = active;
1849 // Build the full list of active fragments, instantiating them from
1859 if (DEBUG) Log.v(TAG, "restoreAllState: active #" + i + ": " + f);
/frameworks/base/core/java/android/content/pm/
H A DIPackageInstallerCallback.aidl23 void onSessionActiveChanged(int sessionId, boolean active);
H A DPackageInstaller.java473 * A session is considered active whenever there is ongoing forward
483 public abstract void onActiveChanged(int sessionId, boolean active); argument
530 final boolean active = msg.arg2 != 0;
531 mCallback.onActiveChanged(sessionId, active);
554 public void onSessionActiveChanged(int sessionId, boolean active) { argument
555 mHandler.obtainMessage(MSG_SESSION_ACTIVE_CHANGED, sessionId, active ? 1 : 0)
1077 * Details for an active install session.
1092 public boolean active; field in class:PackageInstaller.SessionInfo
1116 active = source.readInt() != 0;
1153 * Return if this session is currently active
[all...]
/frameworks/base/core/java/android/hardware/radio/
H A DRadioTuner.java30 * configuring the active band, muting/unmuting, scanning and tuning, etc...
53 * Set the active band configuration for this module.
282 public void onTrafficAnnouncement(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/core/java/android/os/
H A DBatteryStats.java110 * A constant indicating a wifi batched scan is active
352 * Returns a mapping containing active process data.
412 // Time this uid has any process in active state (not cached).
511 * Returns true if this process is still active in the battery stats.
1172 // Event is about active sync operations.
1185 // Event for becoming active taking us out of idle mode.
1197 // Event for a package becoming active due to an interaction.
1445 HashMap<String, SparseIntArray> active = mActiveEvents[idx];
1446 if (active == null) {
1447 active
[all...]
H A DRemoteCallbackList.java199 * be active at a time, so you must be sure to always call this from the
237 Object[] active = mActiveBroadcast;
238 if (active == null || active.length < N) {
239 mActiveBroadcast = active = new Object[N];
242 active[i] = mCallbacks.valueAt(i);
249 * Retrieve an item in the active broadcast that was previously started
296 Object[] active = mActiveBroadcast;
297 if (active != null) {
300 active[
[all...]
/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
113 * @param active Whether the carrier network change is or shortly will be
114 * 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/base/core/java/android/view/accessibility/
H A DAccessibilityWindowInfo.java232 * Gets if this window is active. An active window is the one
236 * @return Whether this is the active window.
243 * Sets if this window is active, which is this is the window
247 * @param active Whether this is the active window.
251 public void setActive(boolean active) { argument
252 setBooleanProperty(BOOLEAN_PROPERTY_ACTIVE, active);
473 builder.append(", active=").append(isActive());
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java98 * one such client is ever active (working with the IME) at a time.
171 * be active at a time. The inactive clients can not interact with key
177 * the active client will be processed by the current IME. This is enforced
182 * <li> <p>Only the active client's {@link InputConnection} will accept
183 * operations. The IMF tells each client process whether it is active, and
271 * True if this input method client is active, initially false.
478 final boolean active = msg.arg1 != 0;
480 Log.i(TAG, "handleMessage: MSG_SET_ACTIVE " + active + ", was " + mActive);
483 mActive = active;
485 if (!active) {
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DNetworkStatsFactory.java108 final boolean active = reader.nextInt() != 0;
116 // fold in active numbers, but only when active
117 if (active) {
/frameworks/av/include/soundtrigger/
H A DISoundTriggerHwService.h43 virtual status_t setCaptureState(bool active) = 0;
H A DSoundTrigger.h44 static status_t setCaptureState(bool active);
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp453 // as only one capture can be active at a time.
876 bool active = mActive; local
942 if (!active) {
1243 // audio record is active and internally paused with timeout.
H A DAudioTrack.cpp874 // See setPosition() regarding setting parameters such as loop points or position while active
892 // Waking the AudioTrackThread is not needed as this cannot be called when active.
984 // Waking the AudioTrackThread is not needed as this cannot be called when active.
1047 // See setPosition() regarding setting parameters such as loop points or position while active
1754 bool active = mState == STATE_ACTIVE; local
1761 // the track stays active in continuous underrun state. It's up to the application
1767 active = false;
1910 if (!active) {
2573 // audio track is active and internally paused with timeout.
/frameworks/av/media/libstagefright/
H A DACodec.cpp367 bool active() const { return mActive; } function in struct:android::ACodec::ExecutingState
5926 // We'll be active soon enough.
5998 // We'll be active soon enough.
6127 ALOGV("[%s] We're already active, no need to resume.", mCodec->mComponentName.c_str());
6527 if (mCodec->mExecutingState->active()) {
/frameworks/av/media/libstagefright/codecs/aacenc/inc/
H A Dtns_func.h36 Word16 active);
43 Word16 active);
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dtns.c140 Word16 active) /*!< tns active flag */
158 tC->tnsActive = active;
207 Word16 active) /*!< tns active flag */
224 tC->tnsActive = active;
135 InitTnsConfigurationLong(Word32 bitRate, Word32 sampleRate, Word16 channels, TNS_CONFIG *tC, PSY_CONFIGURATION_LONG *pC, Word16 active) argument
202 InitTnsConfigurationShort(Word32 bitRate, Word32 sampleRate, Word16 channels, TNS_CONFIG *tC, PSY_CONFIGURATION_SHORT *pC, Word16 active) argument
/frameworks/av/media/libstagefright/omx/
H A DOMXNodeInstance.cpp270 // This ensures that all active buffers are properly freed even
1563 ActiveBuffer active; local
1564 active.mPortIndex = portIndex;
1565 active.mID = id;
1566 mActiveBuffers.push(active);
1587 CLOGW("Attempt to remove an active buffer [%#x] we know nothing about...", id);
1592 // the active buffer from the vector...
/frameworks/av/services/audioflinger/
H A DPlaybackTracks.h42 void dump(char* buffer, size_t size, bool active);
148 // but the slot is only used if track is active
H A DRecordTracks.h52 void dump(char* buffer, size_t size, bool active);

Completed in 1164 milliseconds

1234