HomeSort by relevance Sort by last modified time
    Searched defs:mState (Results 251 - 275 of 951) sorted by null

<<11121314151617181920>>

  /frameworks/base/telecomm/java/android/telecom/
ParcelableCall.java 37 private final int mState;
92 mState = state;
126 return mState;
383 destination.writeInt(mState);
  /frameworks/base/telephony/java/android/telephony/ims/feature/
ImsFeature.java 346 private @ImsState int mState = STATE_UNAVAILABLE;
372 return mState;
384 if (mState != state) {
385 mState = state;
  /frameworks/ml/nn/runtime/
ExecutionPlan.h 271 enum { EMPTY, SIMPLE, COMPOUND } mState = EMPTY;
274 nnAssert(mState == COMPOUND);
278 nnAssert(mState == COMPOUND);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
PasspointProvisioner.java 128 private int mState = INITIAL_STATE;
154 Log.v(TAG, "startProvisioning received in state=" + mState);
156 if (mState != INITIAL_STATE) {
201 Log.v(TAG, "Wifi Disabled in state=" + mState);
203 if (mState == INITIAL_STATE) {
204 Log.w(TAG, "Wifi Disable unhandled in state=" + mState);
215 Log.v(TAG, "Server Validation failure received in " + mState);
222 if (mState != OSU_SERVER_CONNECTED) {
223 Log.wtf(TAG, "Server Validation Failure unhandled in mState=" + mState);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
IconLoader.java 37 private int mState = STATE_SINGLE_ICON;
98 mState = STATE_MULTI_ICONS;
107 mState = STATE_SINGLE_ICON;
218 if (mState == STATE_SINGLE_ICON) {
221 } else if (mState == STATE_MULTI_ICONS) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaMmiCode.java 74 State mState = State.PENDING;
159 return mState;
178 if (mState == State.COMPLETE || mState == State.FAILED) {
182 mState = State.CANCELLED;
270 mState = State.FAILED;
277 mState = State.FAILED;
315 mState = State.FAILED;
334 mState = State.CANCELLED;
364 mState = State.COMPLETE
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCall.java 128 sb.append(mState.toString());
169 mState = state;
180 if (mState != State.DISCONNECTED) {
193 mState = State.DISCONNECTED;
196 mState);
234 mState = State.DISCONNECTING;
236 Rlog.v(LOG_TAG, "onHangupLocal : " + mCallContext + " state = " + mState);
312 State oldState = mState;
331 if ((state != mState) && (state != State.DISCONNECTED)) {
332 mState = state
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedGsmCallState.java 46 State mState;
53 mState = state;
79 + mState.value() + ",0," + (mIsMpty ? "1" : "0")
93 ret.state = DriverCall.stateFromCLCC(mState.value());
110 return mState == State.ACTIVE || mState == State.HOLDING;
115 return mState == State.DIALING || mState == State.ALERTING;
120 return mState == State.INCOMING || mState == State.WAITING
    [all...]
  /hardware/qcom/gps/msm8909w_3100/gnss/
Agps.h 207 AgpsState mState;
226 mCurrentSubscriber(NULL), mState(AGPS_STATE_RELEASED),
  /hardware/qcom/gps/msm8998/gnss/
Agps.h 207 AgpsState mState;
226 mCurrentSubscriber(NULL), mState(AGPS_STATE_RELEASED),
  /packages/apps/Camera2/src/com/android/camera/
MultiToggleImageButton.java 68 private int mState = UNSET;
123 return mState;
154 mOnStatePreChangeListener.stateChanged(MultiToggleImageButton.this, mState);
157 if (mState == state || mState == UNSET) {
206 }.execute(mState, state);
220 mState = state;
222 setImageByState(mState);
227 String newContentDescription = getResources().getString(mDescIds[mState]);
244 int state = mState + 1
    [all...]
  /packages/apps/Camera2/src/com/android/camera/data/
MediaDetails.java 71 private int mState;
74 mState = state;
78 return (mState & FLASH_FIRED_MASK) != 0;
  /packages/apps/Contacts/src/com/android/contacts/detail/
PhotoSelectionHandler.java 76 private final RawContactDeltaList mState;
88 mState = state;
192 return mState.indexOfFirstWritableRawContact(mContext);
202 return mState.get(index).getValues().getId();
218 final RawContactDelta delta = mState.get(writableEntityIndex);
232 return mState;
  /packages/apps/DeskClock/src/com/android/deskclock/data/
Timer.java 85 private final State mState;
111 mState = state;
122 public State getState() { return mState; }
127 public boolean isReset() { return mState == RESET; }
128 public boolean isRunning() { return mState == RUNNING; }
129 public boolean isPaused() { return mState == PAUSED; }
130 public boolean isExpired() { return mState == EXPIRED; }
131 public boolean isMissed() { return mState == MISSED; }
145 if (mState == PAUSED || mState == RESET)
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/
DragAndDropManager.java 166 private @State int mState = STATE_UNKNOWN;
219 if (mState == STATE_COPY || mState == STATE_MOVE) {
358 mState = state;
MenuManager.java 41 final protected State mState;
49 mState = displayState;
221 grid.setVisible(mState.derivedMode != State.MODE_GRID);
222 list.setVisible(mState.derivedMode != State.MODE_LIST);
226 advanced.setVisible(mState.showDeviceStorageOption);
227 advanced.setTitle(mState.showDeviceStorageOption && mState.showAdvanced
232 debug.setVisible(mState.debugMode);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
UriImage.java 54 private int mState = STATE_INIT;
82 mState = state;
83 if (mState != STATE_DOWNLOADED) {
150 if (mState == STATE_INIT) {
151 mState = STATE_DOWNLOADING;
153 } else if (mState == STATE_ERROR) {
155 } else if (mState == STATE_DOWNLOADED) {
157 } else /* if (mState == STATE_DOWNLOADING) */ {
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ActionMonitor.java 129 protected int mState;
192 mState = initialState;
202 complete = (mState == STATE_COMPLETE);
246 mState != expectedOldState) {
247 throw new IllegalStateException("On updateState to " + newState + " was " + mState
250 if (newState != mState) {
251 mState = newState;
273 oldMonitorState = monitor.mState;
275 newMonitorState = monitor.mState;
345 oldMonitorState = monitor.mState;
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/
NotificationPlayer.java 248 private int mState = STOP;
288 mState = PLAY;
306 if (mState != STOP) {
312 mState = STOP;
  /packages/apps/Settings/tests/robotests/src/com/android/settings/applications/manageapplications/
ManageApplicationsTest.java 71 private ApplicationsState mState;
87 ReflectionHelpers.setStaticField(ApplicationsState.class, "sInstance", mState);
88 when(mState.newSession(any())).thenReturn(mSession);
89 when(mState.getBackgroundLooper()).thenReturn(Looper.myLooper());
151 spy(new ManageApplications.ApplicationsAdapter(mState, fragment,
175 spy(new ManageApplications.ApplicationsAdapter(mState, fragment,
216 spy(new ManageApplications.ApplicationsAdapter(mState, fragment,
243 spy(new ManageApplications.ApplicationsAdapter(mState,
258 spy(new ManageApplications.ApplicationsAdapter(mState,
284 new ManageApplications.ApplicationsAdapter(mState,
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/
AppButtonsPreferenceControllerTest.java 82 private ApplicationsState mState;
113 doReturn(mAppEntry).when(mState).getEntry(anyString(), anyInt());
118 mLifecycle, PACKAGE_NAME, mState, mDpm, mUserManager, mPackageManger,
153 doReturn(null).when(mState).getEntry(eq(PACKAGE_NAME), anyInt());
165 doReturn(mAppEntry).when(mState).getEntry(anyString(), anyInt());
293 doReturn(appEntry).when(mState).getEntry(anyString(), anyInt());
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
Recorder.java 41 int mState = IDLE_STATE;
70 if (mState != RECORDING_STATE)
102 return mState;
106 if (mState == RECORDING_STATE || mState == PLAYING_STATE)
261 if (state == mState)
264 mState = state;
265 signalStateChanged(mState);
  /packages/apps/StorageManager/robotests/src/com/android/storagemanager/deletionhelper/
AppStateUsageStatsBridgeTest.java 64 @Mock private ApplicationsState mState;
77 when(mState.newSession(any(ApplicationsState.Callbacks.class))).thenReturn(mSession);
78 when(mState.getBackgroundLooper()).thenReturn(Looper.getMainLooper());
90 mBridge = new AppStateUsageStatsBridge(RuntimeEnvironment.application, mState, null);
  /packages/services/Telecomm/src/com/android/server/telecom/
InCallTonePlayer.java 112 private int mState;
133 mState = STATE_OFF;
253 if (mState != STATE_STOPPED) {
254 mState = STATE_ON;
265 mState = STATE_OFF;
303 if (mState == STATE_ON) {
307 mState = STATE_STOPPED;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
StateViewPage.java 81 private IGLProperty mState;
100 mState = GLState.createDefaultState();
104 mTreeViewer.setInput(mState);
130 mTreeViewer.setInput(mState);
163 mState.prettyPrint(pp);
298 f.apply(mState);
299 IGLProperty changedProperty = f.getChangedProperty(mState);
324 f.revert(mState);
326 IGLProperty changedProperty = f.getChangedProperty(mState);

Completed in 714 milliseconds

<<11121314151617181920>>