/frameworks/base/core/java/com/android/internal/util/ |
H A D | State.java | 26 public class State implements IState { class in inherits:IState 31 protected State() { method in class:State 57 * Name of State for debugging purposes. 60 * the instance name would better in cases where a State class
|
/frameworks/rs/ |
H A D | rsFBOCache.h | 46 struct State { struct in struct:android::renderscript::FBOCache::Hal 51 State state;
|
H A D | rsProgramRaster.h | 40 struct State { struct in struct:android::renderscript::ProgramRaster::Hal 44 State state;
|
H A D | rsProgramStore.h | 41 struct State { struct in struct:android::renderscript::ProgramStore::Hal 56 State state;
|
H A D | rsSampler.h | 42 struct State { struct in struct:android::renderscript::Sampler::Hal 50 State state;
|
H A D | rsMesh.h | 41 struct State { struct in struct:android::renderscript::Mesh::Hal 54 State state;
|
H A D | rsProgram.h | 36 struct State { struct in struct:android::renderscript::Program::Hal 57 State state;
|
H A D | rsType.h | 41 struct State { struct in struct:android::renderscript::Type::Hal 58 State state;
|
/frameworks/av/include/common_time/ |
H A D | ICommonClock.h | 54 enum State { enum in class:android::ICommonClock 83 virtual status_t getState(State* state) = 0;
|
/frameworks/av/include/media/stagefright/ |
H A D | MediaMuxer.h | 125 enum State { enum in struct:android::MediaMuxer 131 State mState;
|
H A D | SimpleDecodingSource.h | 80 enum State { enum in class:android::SimpleDecodingSource 95 State mState;
|
H A D | MediaFilter.h | 88 enum State { enum in struct:android::MediaFilter 117 State mState;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | MmiCode.java | 27 public enum State { enum in interface:MmiCode 38 public State getState(); 54 * State becomes CANCELLED unless already COMPLETE or FAILED
|
H A D | DriverCall.java | 29 public enum State { enum in class:DriverCall 42 public State state; // May be null if unavail 119 public static State 122 case 0: return State.ACTIVE; 123 case 1: return State.HOLDING; 124 case 2: return State.DIALING; 125 case 3: return State.ALERTING; 126 case 4: return State.INCOMING; 127 case 5: return State.WAITING;
|
/frameworks/base/core/java/android/os/ |
H A D | SystemService.java | 31 private static HashMap<String, State> sStates = Maps.newHashMap(); 34 * State of a known {@code init} service. 36 public enum State { enum in class:SystemService 42 State(String state) { method in class:SystemService.State 78 public static State getState(String service) { 80 final State state = sStates.get(rawState); 84 return State.STOPPED; 89 * Check if given service is {@link State#STOPPED}. 92 return State.STOPPED.equals(getState(service)); 96 * Check if given service is {@link State#RUNNIN [all...] |
/frameworks/compile/mclinker/include/mcld/LD/ |
H A D | EhFrameReader.h | 45 enum State { Q0, Q1, Accept, NumOfStates = 2, Reject = -1 }; enum in class:mcld::EhFrameReader
|
H A D | DiagnosticEngine.h | 96 struct State { struct in class:mcld::DiagnosticEngine 98 State() : numArgs(0), ID(-1), severity(None), file(NULL) {} function in struct:mcld::DiagnosticEngine::State 99 ~State() {} 119 State& state() { return m_State; } 121 const State& state() const { return m_State; } 140 State m_State;
|
/frameworks/av/cmds/stagefright/ |
H A D | SimplePlayer.h | 47 enum State { enum in struct:android::SimplePlayer 85 State mState;
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
H A D | NuPlayerDriver.h | 86 enum State { enum in struct:android::NuPlayerDriver 103 State mState;
|
/frameworks/av/media/libstagefright/rtsp/ |
H A D | ARTSPConnection.h | 54 enum State { enum in struct:android::ARTSPConnection 81 State mState;
|
/frameworks/base/core/java/android/service/notification/ |
H A D | Condition.java | 44 public @interface State {} interface in class:Condition 89 @State
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
H A D | IccCardConstants.java | 70 public enum State { enum in class:IccCardConstants 93 public static State intToState(int state) throws IllegalArgumentException {
|
H A D | OperatorInfo.java | 26 public enum State { enum in class:OperatorInfo 37 private State mState = State.UNKNOWN; 55 public State 63 State state) { 84 this(operatorAlphaLong, operatorAlphaShort, operatorNumeric, State.UNKNOWN); 90 private static State rilStateToState(String s) { 92 return State.UNKNOWN; 94 return State.AVAILABLE; 96 return State [all...] |
/frameworks/ex/common/java/com/android/common/ |
H A D | NetworkConnectivityListener.java | 46 private State mState; 78 mState = State.NOT_CONNECTED; 80 mState = State.CONNECTED; 108 public enum State { enum in class:NetworkConnectivityListener 129 mState = State.UNKNOWN; 182 public State getState() {
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/util/ |
H A D | StateMachine.java | 26 * Linear or DAG of {@link State}s. StateMachine is by default a linear model, until 27 * {@link #addState(State, State)} is called. Each State has three status: 28 * STATUS_ZERO, STATUS_INVOKED, STATUS_EXECUTED. We allow client to run a State, which will 29 * put State in STATUS_INVOKED. A State will be executed when prior States are executed and 30 * Precondition for this State is true, then the State will be marked as STATUS_EXECUTED. 38 * No request on the State 51 public static class State { class in class:StateMachine [all...] |