Searched defs:active (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DDataCallState.java22 public int active; field in class:DataCallState
29 return "DataCallState: {" + " cid: " + cid + ", active: " + active + ", type: " + type
/frameworks/base/services/jni/
H A Dcom_android_server_SensorService.cpp125 int active = sSensorDevice->activate(sSensorDevice, sensor, activate); local
126 return (active<0) ? false : true;
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DMultiRectAreaOp.java69 int[] active; field in class:MultiRectAreaOp.Region
75 active = new int[RECT_CAPACITY];
77 active[0] = 1;
83 int length = active[0];
84 active = checkBufSize(active, 4);
88 if (region[index] < active[i]) {
90 System.arraycopy(active, i, active, i + 4, length - i);
96 System.arraycopy(region, index, active, lengt
[all...]
/frameworks/base/core/java/android/text/method/
H A DArrowKeyMovementMethod.java272 tap[0].active = true;
283 newtap.active = false;
313 if (tap.length > 0 && tap[0].active) {
360 if (onepointfivetap.length > 0 && onepointfivetap[0].active &&
398 if (onepointfivetap.length > 0 && onepointfivetap[0].active) {
437 boolean active; field in class:ArrowKeyMovementMethod.OnePointFiveTapState
/frameworks/base/media/libmedia/
H A DAudioRecord.cpp441 int active; local
456 active = mActive;
457 if (UNLIKELY(!active)) {
516 active = mActive;
517 return active ? status_t(NO_ERROR) : status_t(STOPPED);
H A DAudioTrack.cpp663 int active; local
678 active = mActive;
679 if (UNLIKELY(!active)) {
680 LOGV("Not active and NO_MORE_BUFFERS");
751 active = mActive;
752 return active ? status_t(NO_ERROR) : status_t(STOPPED);
956 snprintf(buffer, 255, " active(%d), latency (%d)\n", mActive, mLatency);
/frameworks/base/media/libstagefright/omx/
H A DOMXNodeInstance.cpp122 // This ensures that all active buffers are properly freed even
463 ActiveBuffer active; local
464 active.mPortIndex = portIndex;
465 active.mID = id;
466 mActiveBuffers.push(active);
482 LOGW("Attempt to remove an active buffer we know nothing about...");
488 // the active buffer from the vector...
/frameworks/base/core/java/com/android/internal/util/
H A DHierarchicalStateMachine.java110 * After starting mS5 the list of active states is mP0, mP1, mS1 and mS5.
120 * mS4.enter. The new list of active states is mP0, mP1, mS2 and mS4. So
510 boolean active; field in class:HierarchicalStateMachine.HsmHandler.StateInfo
517 return "state=" + state.getName() + ",active=" + active
743 mStateStack[mStateStackTopIndex].active = false;
755 mStateStack[i].active = true;
808 * state that is already active i.e. StateInfo.active == true.
817 * Search up the parent list of the destination state for an active
[all...]
/frameworks/base/opengl/libagl/
H A Dtexture.cpp112 c->rasterizer.procs.activeTexture(c, c->textures.active);
121 * If the active textures are EGLImage, they need to be locked before
177 c->rasterizer.procs.activeTexture(c, c->textures.active);
316 const int active = c->textures.active; local
317 const GLuint name = c->textures.tmu[active].name;
320 texture_unit_t& u(c->textures.tmu[active]);
338 // bind this texture to the current active texture unit
343 invalidate_texture(c, active);
358 // bind this texture to the current active textur
372 const int active = c->textures.active; local
389 const int active = c->textures.active; local
625 const int active = c->textures.active; local
[all...]
/frameworks/base/services/java/com/android/server/
H A DProcessStats.java180 public boolean active; field in class:ProcessStats.Stats
352 if (st.active) {
353 st.active = false;
358 if (!st.active) {
359 st.active = true;
H A DPowerManagerService.java171 private int mProximityPendingValue = -1; // -1 == nothing, 0 == inactive, 1 == active
2693 private void proximityChangedLocked(boolean active) { argument
2695 Slog.d(TAG, "proximityChangedLocked, active: " + active);
2701 if (active) {
2752 boolean active = (distance >= 0.0 && distance < PROXIMITY_THRESHOLD &&
2756 Slog.d(TAG, "mProximityListener.onSensorChanged active: " + active);
2760 mProximityPendingValue = (active ? 1 : 0);
2766 proximityChangedLocked(active);
[all...]
/frameworks/base/include/private/opengles/
H A Dgl_context.h359 int active; // active tmu member in struct:android::gl::texture_state_t
/frameworks/base/libs/audioflinger/
H A DAudioFlinger.cpp979 snprintf(buffer, SIZE, "Output thread %p active tracks\n", this);
1573 // Remove it from the list of active tracks.
1578 // fill a buffer, then remove it from active list.
1580 LOGV("BUFFER TIMEOUT: remove(%d) from active list on thread %p", track->name(), this);
1842 LOGV("DirectOutputThread %p TID %d waking up in active mode\n", this, gettid());
1917 // Remove it from the list of active tracks.
1921 // fill a buffer, then remove it from active list.
1923 LOGV("BUFFER TIMEOUT: remove(%d) from active list", track->name());
2634 // If the track is not active (PAUSED and buffers full), flush buffers
3001 int active; local
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewCore.java502 private native void nativeSetFocusControllerActive(boolean active); argument
H A DWebView.java2550 * network traffic. When the view is again "active", call onResume().
3257 // sometimes the tracker doesn't draw, even though its active
3896 // of focus, and make the focuscontroller active
4125 private void setActive(boolean active) { argument
4126 if (active) {
4187 * not draw the blinking cursor. It gets set to "active" to draw the cursor
6532 // active, restart it so that its hint text is updated.

Completed in 301 milliseconds