HomeSort by relevance Sort by last modified time
    Searched refs:AppState (Results 1 - 25 of 25) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/app/state/
AppStateManager.java 42 * The <code>AppStateManager</code> holds a list of {@link AppState}s which
44 * When an {@link AppState} is attached or detached, the
45 * {@link AppState#stateAttached(com.jme3.app.state.AppStateManager) } and
46 * {@link AppState#stateDetached(com.jme3.app.state.AppStateManager) } methods
49 * <p>The lifecycle for an attached AppState is as follows:</p>
73 private final SafeArrayList<AppState> initializing = new SafeArrayList<AppState>(AppState.class);
78 private final SafeArrayList<AppState> states = new SafeArrayList<AppState>(AppState.class);
    [all...]
AppState.java 39 * AppState represents a continously executing code inside the main loop.
40 * An <code>AppState</code> can track when it is attached to the
41 * {@link AppStateManager} or when it is detached. <br/><code>AppState</code>s
42 * are initialized in the render thread, upon a call to {@link AppState#initialize(com.jme3.app.state.AppStateManager, com.jme3.app.Application) }
43 * and are de-initialized upon a call to {@link AppState#cleanup()}.
45 * {@link AppState#isInitialized() } as specified above.<br/>
50 public interface AppState {
53 * Called to initialize the AppState.
67 * Enable or disable the functionality of the <code>AppState</code>.
69 * <code>AppState</code> starts as being enabled by default
    [all...]
AbstractAppState.java 43 public class AbstractAppState implements AppState {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccCardApplicationStatus.java 39 public enum AppState{
102 public AppState app_state;
131 public AppState AppStateFromRILInt(int state) {
132 AppState newState;
135 case 0: newState = AppState.APPSTATE_UNKNOWN; break;
136 case 1: newState = AppState.APPSTATE_DETECTED; break;
137 case 2: newState = AppState.APPSTATE_PIN; break;
138 case 3: newState = AppState.APPSTATE_PUK; break;
139 case 4: newState = AppState.APPSTATE_SUBSCRIPTION_PERSO; break;
140 case 5: newState = AppState.APPSTATE_READY; break
    [all...]
UiccCardApplication.java 28 import com.android.internal.telephony.uicc.IccCardApplicationStatus.AppState;
54 private AppState mAppState;
99 if (mAppState == AppState.APPSTATE_READY) {
116 AppState oldAppState = mAppState;
143 if (mAppState == AppState.APPSTATE_READY) {
459 if (mAppState == AppState.APPSTATE_READY) {
463 loge("Sanity check failed! APPSTATE is ready while PIN1 is not verified!!!");
487 if (mAppState == AppState.APPSTATE_PIN ||
488 mAppState == AppState.APPSTATE_PUK) {
491 loge("Sanity check failed! APPSTATE is locked while PIN1 is not!!!")
    [all...]
IccRecords.java 27 import com.android.internal.telephony.uicc.IccCardApplicationStatus.AppState;
377 if (mParentApp.getState() == AppState.APPSTATE_READY) {
IccCardProxy.java 43 import com.android.internal.telephony.uicc.IccCardApplicationStatus.AppState;
369 AppState appState = mUiccApplication.getState();
370 switch (appState) {
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_app_helper.cc 19 struct AppState {
20 AppState();
21 ~AppState();
23 bool Equals(const AppState& other) const;
29 typedef std::map<std::string, AppState> AppStateMap;
31 AppState::AppState() {}
33 AppState::~AppState() {}
35 bool AppState::IsValid() const
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
SimpleApplication.java 34 import com.jme3.app.state.AppState;
103 public SimpleApplication( AppState... initialStates ) {
107 for (AppState a : initialStates) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmConnection.java 34 import com.android.internal.telephony.uicc.IccCardApplicationStatus.AppState;
374 AppState uiccAppState = (cardApp != null) ? cardApp.getState() :
375 AppState.APPSTATE_UNKNOWN;
381 } else if (uiccAppState != AppState.APPSTATE_READY) {
GsmMmiCode.java 24 import com.android.internal.telephony.uicc.IccCardApplicationStatus.AppState;
802 && mUiccApplication.getState() == AppState.APPSTATE_PUK) {
    [all...]
GsmServiceStateTracker.java 67 import com.android.internal.telephony.uicc.IccCardApplicationStatus.AppState;
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_controller.h 64 enum AppState {
253 AppState app_state) = 0;
browser_launcher_item_controller.cc 307 ChromeLauncherController::AppState app_state;
chrome_launcher_controller_per_app.h 250 AppState app_state) OVERRIDE;
chrome_launcher_controller_per_browser.h 238 AppState app_state) OVERRIDE;
chrome_launcher_controller_per_browser.cc 802 AppState app_state) {
    [all...]
chrome_launcher_controller_per_app.cc 815 AppState app_state) {
    [all...]
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/
BulletAppState.java 8 import com.jme3.app.state.AppState;
21 public class BulletAppState implements AppState, PhysicsTickListener {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaConnection.java 36 import com.android.internal.telephony.uicc.IccCardApplicationStatus.AppState;
418 AppState uiccAppState = (app != null) ? app.getState() : AppState.APPSTATE_UNKNOWN;
426 && uiccAppState != AppState.APPSTATE_READY) {
CdmaMmiCode.java 23 import com.android.internal.telephony.uicc.IccCardApplicationStatus.AppState;
227 && mUiccApplication.getState() == AppState.APPSTATE_PUK) {
CdmaLteServiceStateTracker.java 23 import com.android.internal.telephony.uicc.IccCardApplicationStatus.AppState;
385 if (mUiccApplcation != null && mUiccApplcation.getState() == AppState.APPSTATE_READY &&
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
Cinematic.java 36 import com.jme3.app.state.AppState;
61 public class Cinematic extends AbstractCinematicEvent implements AppState {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
ServiceStateTracker.java 37 import com.android.internal.telephony.uicc.IccCardApplicationStatus.AppState;
691 iccCardExist = mUiccApplcation.getState() != AppState.APPSTATE_UNKNOWN;
  /frameworks/base/docs/html/
gms_navtree_data.js 14 , null ], [ "com.google.android.gms.appstate", "reference/com/google/android/gms/appstate/package-summary.html", [ [ "Interfaces", null, [ [ "AppState", "reference/com/google/android/gms/appstate/AppState.html", null, null ], [ "OnSignOutCompleteListener", "reference/com/google/android/gms/appstate/OnSignOutCompleteListener.html", null, null ], [ "OnStateDeletedListener", "reference/com/google/android/gms/appstate/OnStateDeletedListener.html", null, null ], [ "OnStateListLoadedListener", "reference/com/google/android/gms/appstate/OnStateListLoadedListener.html", null, null ], [ "OnStateLoadedListener", "reference/com/google/android/gms/appstate/OnStateLoadedListener.html", null, null ] ]
15 , null ], [ "Classes", null, [ [ "AppStateBuffer", "reference/com/google/android/gms/appstate/AppStateBuffer.html", null, null ], [ "AppStateClient", "reference/com/google/android/gms/appstate (…)
    [all...]

Completed in 3319 milliseconds