Searched defs:state (Results 251 - 275 of 340) sorted by path

<<11121314

/frameworks/ex/photoviewer/src/com/android/ex/photo/
H A DPhotoViewActivity.java59 * The full screen state has changed.
128 /** The set of listeners wanting full screen state */
130 /** The set of listeners wanting full screen state */
358 public void onPageScrollStateChanged(int state) { argument
/frameworks/ex/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseFragmentPagerAdapter.java163 public void restoreState(Parcelable state, ClassLoader loader) { argument
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java1274 // and onscreen views if they have changed instead of removing all of the state here.
1290 * Clear all state because the grid will be used for a completely different set of data.
1305 * Reset all internal state to be at the top of the grid.
1374 public void onRestoreInstanceState(Parcelable state) { argument
1375 SavedState ss = (SavedState) state;
/frameworks/native/include/private/gui/
H A DLayerState.h93 layer_state_t state; member in struct:android::ComposerState
/frameworks/native/include/utils/
H A DVector.h166 typedef int (*compar_r_t)(const TYPE* lhs, const TYPE* rhs, void* state);
169 inline status_t sort(compar_r_t cmp, void* state);
375 status_t Vector<TYPE>::sort(Vector<TYPE>::compar_r_t cmp, void* state) { argument
376 return VectorImpl::sort((VectorImpl::compar_r_t)cmp, state);
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp1000 // want to run in that state in this process. The driver set our
1125 IPCThreadState* state = self(); local
1126 state->mOut.writeInt32(BC_FREE_BUFFER);
1127 state->mOut.writeInt32((int32_t)data);
/frameworks/native/libs/gui/
H A DBufferQueue.cpp249 ST_LOGE("requestBuffer: slot %d is not owned by the client (state=%d)",
306 const int state = mSlots[i].mBufferState; local
307 if (state == BufferSlot::DEQUEUED) {
311 if (state == BufferSlot::FREE) {
513 "(state=%d)", buf, mSlots[buf].mBufferState);
609 ST_LOGE("cancelBuffer: slot %d is not owned by the client (state=%d)",
738 const char * operator()(int state) const {
739 switch (state) {
753 "state=%-8s, crop=[%d,%d,%d,%d], "
876 // The buffer can now only be released if its in the acquired state
1047 BufferSlot::BufferState state = mSlots[i].mBufferState; local
[all...]
H A DISurfaceComposer.cpp72 const Vector<ComposerState>& state,
79 Vector<ComposerState>::const_iterator b(state.begin());
80 Vector<ComposerState>::const_iterator e(state.end());
81 data.writeInt32(state.size());
250 Vector<ComposerState> state; local
251 state.setCapacity(count);
254 state.add(s);
265 setTransactionState(state, displays, flags);
71 setTransactionState( const Vector<ComposerState>& state, const Vector<DisplayState>& displays, uint32_t flags) argument
/frameworks/native/libs/utils/
H A DVectorImpl.cpp165 status_t VectorImpl::sort(VectorImpl::compar_r_t cmp, void* state) argument
178 if (cmp(curr, item, state) > 0) {
202 } while (j>=0 && (cmp(curr, temp, state) > 0));
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h114 DisplayImpl() : dpy(EGL_NO_DISPLAY), state(NOT_INITIALIZED) { }
116 EGLint state; member in struct:android::egl_display_t::DisplayImpl
151 // EGLDisplay is entering or leaving a long-term idle state.
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_context.cpp132 GLTraceContext::GLTraceContext(int id, int version, GLTraceState *state, argument
136 mState(state),
H A Dgltrace_eglapi.cpp44 GLTraceState *state = (GLTraceState *)arg; local
45 TCPStream *stream = state->getStream();
94 state->setCollectFbOnEglSwap(collectFbOnEglSwap);
95 state->setCollectFbOnGlDraw(collectFbOnGlDraw);
96 state->setCollectTextureDataOnGlTexImage(collectTextureData);
121 // initialize tracing state
133 // update trace state for new EGL context
142 // setup per context state
/frameworks/native/services/surfaceflinger/
H A DBarrier.h29 inline Barrier() : state(CLOSED) { }
33 state = OPENED;
38 state = CLOSED;
42 while (state == CLOSED) {
50 volatile int state; member in class:android::Barrier
H A DSurfaceFlinger.cpp524 // initialize our drawing state
1098 // (ie: in drawing state but not in current state)
1104 // in drawing state but not in current state
1119 const DisplayDeviceState& state(curr[j]);
1121 if (state.surface->asBinder() != draw[i].surface->asBinder()) {
1124 // from the drawing state, so that it get re-added
1135 if (state.layerStack != draw[i].layerStack) {
1136 disp->setLayerStack(state
1675 setTransactionState( const Vector<ComposerState>& state, const Vector<DisplayState>& displays, uint32_t flags) argument
[all...]
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DICalendar.java431 ParserState state = new ParserState();
432 state.index = 0;
441 current = parseLine(line, state, current);
466 private static Component parseLine(String line, ParserState state, argument
469 state.line = line;
470 int len = state.line.length();
474 for (state.index = 0; state.index < len; ++state.index) {
475 c = line.charAt(state
525 extractValue(ParserState state) argument
541 extractParameter(ParserState state) argument
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewActivity.java60 * The full screen state has changed.
129 /** The set of listeners wanting full screen state */
131 /** The set of listeners wanting full screen state */
375 public void onPageScrollStateChanged(int state) { argument
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseFragmentPagerAdapter.java167 public void restoreState(Parcelable state, ClassLoader loader) { argument
/frameworks/opt/telephony/mockril/src/com/android/internal/telephony/mockril/
H A DMockRilController.java87 * @return the radio state if it is valid, otherwise return -1
101 int state = resp.getState();
102 if ((state >= RilCmds.RADIOSTATE_OFF) && (state <= RilCmds.RADIOSTATE_NV_READY))
103 return state;
109 * Set the radio state of mock ril to the given state
110 * @param state for given radio state
111 * @return true if the state i
113 setRadioState(int state) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCall.java48 public State state = State.IDLE; field in class:Call
99 * @return state of class call
102 return state;
H A DCallManager.java103 // state registrants
232 * Get current coarse-grained voice call state.
234 * then the phone state is RINGING not OFFHOOK
251 * @return the service state of CallManager, which represents the
252 * highest priority state of all the service states of phones
376 // change the audio mode and request/abandon audio focus according to phone state,
393 // There is no active Fg calls, the OFFHOOK state
653 * state--that is, one call holding and one call active.
724 throw new CallStateException("cannot dial in current state");
817 * phone state
1690 getFirstCallOfState(ArrayList<Call> calls, Call.State state) argument
[all...]
H A DDefaultPhoneNotifier.java107 PhoneConstants.DataState state) {
108 doNotifyDataConnection(sender, reason, apnType, state);
112 PhoneConstants.DataState state) {
121 if (state == PhoneConstants.DataState.CONNECTED) {
130 convertDataState(state),
186 public static int convertCallState(PhoneConstants.State state) { argument
187 switch (state) {
201 public static PhoneConstants.State convertCallState(int state) { argument
202 switch (state) {
216 public static int convertDataState(PhoneConstants.DataState state) { argument
106 notifyDataConnection(Phone sender, String reason, String apnType, PhoneConstants.DataState state) argument
111 doNotifyDataConnection(Phone sender, String reason, String apnType, PhoneConstants.DataState state) argument
233 convertDataState(int state) argument
250 convertDataActivityState(Phone.DataActivityState state) argument
269 convertDataActivityState(int state) argument
[all...]
H A DDriverCall.java36 // If you add a state, make sure to look for the switch()
42 public State state; // May be null if unavail field in class:DriverCall
60 // index,isMT,state,mode,isMpty(,number,TOA)?
66 ret.state = stateFromCLCC(p.nextInt());
107 + state + ","
119 stateFromCLCC(int state) throws ATParseEx { argument
120 switch(state) {
128 throw new ATParseEx("illegal call state " + state);
H A DIccCardApplicationStatus.java129 AppState AppStateFromRILInt(int state) { argument
132 switch(state) {
141 "Unrecognized RIL_AppState: " +state);
182 PinState PinStateFromRILInt(int state) { argument
184 switch(state) {
204 throw new RuntimeException("Unrecognized RIL_PinState: " + state);
H A DIccCardProxy.java177 + " Force broadcast of current state=" + mExternalState);
240 CardState state = CardState.CARDSTATE_ABSENT;
244 state = newCard.getCardState();
397 private String getIccStateIntentString(State state) { argument
398 switch (state) {
411 * Locked state have a reason (PIN, PUK, NETWORK, PERM_DISABLED)
414 private String getIccStateReason(State state) { argument
415 switch (state) {
H A DIccCardStatus.java68 public void setCardState(int state) { argument
69 switch(state) {
80 throw new RuntimeException("Unrecognized RIL_CardState: " + state);
84 public void setUniversalPinState(int state) { argument
85 switch(state) {
105 throw new RuntimeException("Unrecognized RIL_PinState: " + state);

Completed in 313 milliseconds

<<11121314