Searched refs:state (Results 251 - 275 of 756) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/android/app/
H A DStatusBarManager.java190 public static String windowStateToString(int state) { argument
191 if (state == WINDOW_STATE_HIDING) return "WINDOW_STATE_HIDING";
192 if (state == WINDOW_STATE_HIDDEN) return "WINDOW_STATE_HIDDEN";
193 if (state == WINDOW_STATE_SHOWING) return "WINDOW_STATE_SHOWING";
H A DExpandableListActivity.java204 protected void onRestoreInstanceState(Bundle state) { argument
206 super.onRestoreInstanceState(state);
210 * Updates the screen state (current list and other views) when the
H A DListActivity.java152 * // requerying or closing it as the activity changes state.
217 protected void onRestoreInstanceState(Bundle state) { argument
219 super.onRestoreInstanceState(state);
232 * Updates the screen state (current list and other views) when the
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuPresenter.java41 * of menu state so that it does not attempt to hide the action bar
130 * Returns an ID for determining how to save/restore instance state.
136 * Returns a Parcelable describing the current state of the presenter.
139 * @return The saved instance state
144 * Supplies the previously saved instance state to be restored.
145 * @param state The previously saved instance state
147 public void onRestoreInstanceState(Parcelable state); argument
H A DIconMenuPresenter.java163 Bundle state = new Bundle();
164 saveHierarchyState(state);
166 state.putInt(OPEN_SUBMENU_KEY, mOpenSubMenuId);
168 return state;
172 public void onRestoreInstanceState(Parcelable state) { argument
173 restoreHierarchyState((Bundle) state);
/frameworks/base/libs/hwui/
H A DLayerCache.cpp86 layer->state = Layer::kState_DeletedFromCache;
110 layer->state = Layer::kState_RemovedFromCache;
171 layer->state = Layer::kState_InCache;
175 layer->state = Layer::kState_FailedToCache;
/frameworks/base/media/java/android/media/
H A DAudioManagerInternal.java44 public abstract void setMasterMuteForUid(boolean state, int flags, String callingPackage, argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DSignalTileView.java104 protected void handleStateChanged(QSTile.State state) { argument
105 super.handleStateChanged(state);
106 final SignalState s = (SignalState) state;
120 if (state.autoMirrorDrawable && drawable != null) {
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DDataConnectionStats.java87 boolean visible = (simReadyOrUnknown || isCdma()) // we only check the sim state for GSM
96 Log.w(TAG, "Error noting data connection state", e);
138 public void onServiceStateChanged(ServiceState state) {
139 mServiceState = state;
144 public void onDataConnectionStateChanged(int state, int networkType) {
145 mDataState = state;
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DNewDeviceAction.java191 public void handleTimerEvent(int state) { argument
192 if (mState == STATE_NONE || mState != state) {
195 if (state == STATE_WAITING_FOR_SET_OSD_NAME) {
202 } else if (state == STATE_WAITING_FOR_DEVICE_VENDOR_ID) {
H A DSystemAudioStatusAction.java120 void handleTimerEvent(int state) { argument
121 if (mState != state) {
/frameworks/base/telecomm/java/android/telecom/
H A DParcelableConnection.java53 int state,
67 mState = state;
144 .append(", state:")
158 int state = source.readInt();
176 state,
51 ParcelableConnection( PhoneAccountHandle phoneAccount, int state, int capabilities, Uri address, int addressPresentation, String callerDisplayName, int callerDisplayNamePresentation, IVideoProvider videoProvider, int videoState, boolean ringbackRequested, boolean isVoipAudioMode, StatusHints statusHints, DisconnectCause disconnectCause, List<String> conferenceableConnectionIds) argument
/frameworks/base/tests/UsageStatsTest/src/com/android/tests/usagestats/
H A DUsageLogActivity.java136 holder.state = (TextView) convertView.findViewById(android.R.id.text2);
147 if (holder.state != null) {
148 holder.state.setText(eventToString(event.getEventType()));
177 public TextView state; field in class:UsageLogActivity.ViewHolder
/frameworks/native/include/gui/
H A DBufferSlot.h93 static const char* bufferStateName(BufferState state);
95 // mBufferState is the current state of this buffer slot.
130 // consumer. This is set when a buffer in ACQUIRED state is freed.
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DTestPhoneNotifier.java55 PhoneConstants.DataState state) {
54 notifyDataConnection(Phone sender, String reason, String apnType, PhoneConstants.DataState state) argument
/frameworks/rs/
H A DrsFBOCache.h51 State state; member in struct:android::renderscript::FBOCache::Hal
H A DrsPath.h36 State state; member in struct:android::renderscript::Path::__anon1526
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuPresenter.java46 * of menu state so that it does not attempt to hide the action bar
135 * Returns an ID for determining how to save/restore instance state.
141 * Returns a Parcelable describing the current state of the presenter.
144 * @return The saved instance state
149 * Supplies the previously saved instance state to be restored.
150 * @param state The previously saved instance state
152 public void onRestoreInstanceState(Parcelable state); argument
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.h101 status_t onOutputFormatChanged(size_t trackIndex, CodecState *state);
104 CodecState *state, BufferInfo *info, const sp<ABuffer> &buffer);
/frameworks/base/core/java/android/preference/
H A DDialogPreference.java282 * @param state Optional instance state to restore on the dialog
284 protected void showDialog(Bundle state) { argument
309 if (state != null) {
310 dialog.onRestoreInstanceState(state);
439 protected void onRestoreInstanceState(Parcelable state) { argument
440 if (state == null || !state.getClass().equals(SavedState.class)) {
441 // Didn't save state for us in onSaveInstanceState
442 super.onRestoreInstanceState(state);
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DLocalDisplayAdapter.java118 static int getPowerModeForState(int state) { argument
119 switch (state) {
183 mInfo.state = mState;
228 public Runnable requestDisplayStateLocked(final int state) { argument
229 if (mState != state) {
232 final int mode = getPowerModeForState(state);
233 mState = state;
243 + Display.stateToString(state) + ", id=" + displayId + ")");
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DFingerprintService.java82 int state; field in class:FingerprintService.ClientData
175 if (clientData.state == STATE_ENROLLING) {
188 clientData.state = STATE_IDLE; // Nothing left to do
209 clientData.state = STATE_LISTENING;
220 clientData.state = STATE_ENROLLING;
231 clientData.state = STATE_LISTENING;
243 clientData.state = STATE_REMOVING;
258 clientData.state = STATE_LISTENING;
/frameworks/compile/mclinker/include/mcld/LD/
H A DDiagnosticEngine.h121 State& state() function in class:mcld::DiagnosticEngine
124 const State& state() const function in class:mcld::DiagnosticEngine
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DOperatorInfo.java63 State state) {
69 mState = state;
82 * See state strings defined in ril.h RIL_REQUEST_QUERY_AVAILABLE_NETWORKS
95 "RIL impl error: Invalid network state '" + s + "'");
145 (State) in.readSerializable()); /*state*/
60 OperatorInfo(String operatorAlphaLong, String operatorAlphaShort, String operatorNumeric, State state) argument
/frameworks/support/v4/java/android/support/v4/media/session/
H A DIMediaControllerCallback.aidl34 void onPlaybackStateChanged(in PlaybackStateCompat state);

Completed in 664 milliseconds

<<11121314151617181920>>