Searched defs:state (Results 201 - 225 of 841) sorted by relevance

1234567891011>>

/frameworks/base/telecomm/java/android/telecom/
H A DParcelableConference.java47 int state,
57 mState = state;
74 .append(", state: ")
136 int state = source.readInt();
148 return new ParcelableConference(phoneAccount, state, capabilities, properties,
45 ParcelableConference( PhoneAccountHandle phoneAccount, int state, int connectionCapabilities, int connectionProperties, List<String> connectionIds, IVideoProvider videoProvider, int videoState, long connectTimeMillis, StatusHints statusHints, Bundle extras) argument
/frameworks/base/telephony/java/android/telephony/
H A DPreciseDataConnectionState.java25 * Contains precise data connection state.
30 * <li>Data connection state.
56 public PreciseDataConnectionState(int state, int networkType, argument
59 mState = state;
90 * Get data connection state
263 sb.append("Data Connection state: " + mState);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccCardConstants.java27 /* UNKNOWN means the ICC state is unknown */
39 //TODO: we can remove this state in the future if Bug 18489776 analysis
64 * UNKNOWN is a transient state, for example, after user inputs ICC pin under
65 * PIN_REQUIRED state, the query for ICC status returns UNKNOWN before it
93 public static State intToState(int state) throws IllegalArgumentException { argument
94 switch(state) {
H A DOperatorInfo.java63 State state) {
69 mState = state;
88 * See state strings defined in ril.h RIL_REQUEST_QUERY_AVAILABLE_NETWORKS
101 "RIL impl error: Invalid network state '" + s + "'");
151 (State) in.readSerializable()); /*state*/
60 OperatorInfo(String operatorAlphaLong, String operatorAlphaShort, String operatorNumeric, State state) argument
/frameworks/base/tests/UsageStatsTest/src/com/android/tests/usagestats/
H A DUsageLogActivity.java134 holder.state = (TextView) convertView.findViewById(android.R.id.text2);
145 if (holder.state != null) {
146 holder.state.setText(eventToString(event.getEventType()));
178 public TextView state; field in class:UsageLogActivity.ViewHolder
/frameworks/base/tools/aapt2/
H A DResourceTable.h51 SymbolState state = SymbolState::kUndefined; member in struct:aapt::Symbol
/frameworks/base/tools/aapt2/proto/
H A DProtoHelpers.cpp58 pb::SymbolStatus_Visibility SerializeVisibilityToPb(SymbolState state) { argument
59 switch (state) {
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
H A DBlockingStateCallback.java32 * A camera device listener that implements blocking operations on state changes.
34 * <p>Provides wait calls that block until the next unobserved state of the
55 private void setCurrentState(int state) { argument
56 if (VERBOSE) Log.v(TAG, "Camera device state now " + stateToString(state));
58 mRecentStates.put(state);
60 throw new RuntimeException("Unable to set device state", e);
73 * Device has not reported any state yet
78 * Device is in the first-opened state (transitory)
143 * Wait until the desired state i
153 waitForState(int state, long timeout) argument
222 stateToString(int state) argument
[all...]
/frameworks/opt/net/wifi/libwifi_hal/
H A Dwifi_hal_common.cpp86 int wifi_change_driver_state(const char *state) { argument
91 if (!state) return -1;
94 PLOG(ERROR) << "Failed to open driver state control param";
97 len = strlen(state) + 1;
98 if (TEMP_FAILURE_RETRY(write(fd, state, len)) != len) {
99 PLOG(ERROR) << "Failed to write driver state control param";
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiSettingsStore.java37 /* Persisted state that tracks the wifi & airplane interaction from settings */
39 /* Tracks current airplane mode state */
48 /* Tracks if we have checked the saved wi-fi state after boot */
96 // When wifi state is disabled, we do not care
118 /* On airplane mode disable, restore wifi state if necessary */
136 private void persistWifiState(int state) { argument
138 mPersistWifiState = state;
139 Settings.Global.putInt(cr, Settings.Global.WIFI_ON, state);
160 * The settings app tracks the saved state, but the framework has to check it at boot to
177 * When changing states, we need to remember what the wifi state wa
184 setWifiSavedState(int state) argument
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseFragmentPagerAdapter.java166 public void restoreState(Parcelable state, ClassLoader loader) { argument
/frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/
H A DDividerItemDecoration.java105 public void onDraw(Canvas c, RecyclerView parent, RecyclerView.State state) { argument
124 RecyclerView.State state) {
123 getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
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());
108 + state + ","
120 stateFromCLCC(int state) throws ATParseEx { argument
121 switch(state) {
129 throw new ATParseEx("illegal call state " + state);
H A DHardwareConfig.java53 * hardware state of the resource.
78 * state - see DEV_HARDWARE_STATE_
82 public int state; field in class:HardwareConfig
130 Integer.parseInt(split[2]), /* state */
142 Integer.parseInt(split[2]), /* state */
150 public void assignModem(String id, int state, int model, int ratBits, argument
155 this.state = state;
167 public void assignSim(String id, int state, String link) { argument
171 this.state
[all...]
H A DPhoneNotifier.java43 PhoneConstants.DataState state);
42 notifyDataConnection(Phone sender, String reason, String apnType, PhoneConstants.DataState state) argument
H A DSimActivationTracker.java41 * voice & data activation state which is set by custom/default carrier apps.
85 if (DBG) log("onSimAbsent, reset activation state to UNKNOWN");
97 public void setVoiceActivationState(int state) { argument
98 if (!isValidActivationState(state) || (SIM_ACTIVATION_STATE_RESTRICTED == state)) {
99 throw new IllegalArgumentException("invalid voice activation state: " + state);
101 if (DBG) log("setVoiceActivationState=" + state);
102 mVoiceActivationState = state;
103 mVoiceActivationStateLog.log(toString(state));
107 setDataActivationState(int state) argument
125 isValidActivationState(int state) argument
138 toString(int state) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
H A DSmsSessionEventBuilder.java62 public SmsSessionEventBuilder setServiceState(TelephonyServiceState state) { argument
63 mEvent.serviceState = state;
67 public SmsSessionEventBuilder setImsConnectionState(ImsConnectionState state) { argument
68 mEvent.imsConnectionState = state;
H A DTelephonyEventBuilder.java54 public TelephonyEventBuilder setServiceState(TelephonyServiceState state) { argument
56 mEvent.serviceState = state;
60 public TelephonyEventBuilder setImsConnectionState(ImsConnectionState state) { argument
62 mEvent.imsConnectionState = state;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipConnectionBase.java61 protected void setState(Call.State state) { argument
62 if (DBG) log("setState: state=" + state);
63 switch (state) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccCardStatus.java68 public void setCardState(int state) { argument
69 switch(state) {
83 throw new RuntimeException("Unrecognized RIL_CardState: " + state);
87 public void setUniversalPinState(int state) { argument
88 switch(state) {
108 throw new RuntimeException("Unrecognized RIL_PinState: " + state);
/frameworks/rs/
H A DrsMesh.h54 State state; member in struct:android::renderscript::Mesh::Hal
69 mHal.state.vertexBuffers[index] = vb;
74 mHal.state.indexBuffers[index] = idx;
75 mHal.state.primitives[index] = prim;
H A DrsProgram.h57 State state; member in struct:android::renderscript::Program::Hal
H A DrsProgramFragment.cpp48 if (mHal.state.constants[0] == nullptr) {
57 void *p = rsc->mHal.funcs.allocation.lock1D(rsc, mHal.state.constants[0]);
60 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]);
63 void ProgramFragment::setup(Context *rsc, ProgramFragmentState *state) { argument
64 if ((state->mLast.get() == this) && !mDirty) {
67 state->mLast.set(this);
69 for (uint32_t ct=0; ct < mHal.state.texturesCount; ct++) {
70 if (!mHal.state.textures[ct]) {
H A DrsProgramStore.cpp30 mHal.state.ditherEnable = ditherEnable;
32 mHal.state.colorRWriteEnable = colorMaskR;
33 mHal.state.colorGWriteEnable = colorMaskG;
34 mHal.state.colorBWriteEnable = colorMaskB;
35 mHal.state.colorAWriteEnable = colorMaskA;
36 mHal.state.blendSrc = srcFunc;
37 mHal.state.blendDst = destFunc;
39 mHal.state.depthWriteEnable = depthMask;
40 mHal.state.depthFunc = depthFunc;
57 void ProgramStore::setup(const Context *rsc, ProgramStoreState *state) { argument
[all...]
H A DrsType.h60 State state; member in struct:android::renderscript::Type::Hal
73 uint32_t getDimX() const {return mHal.state.dimX;}
74 uint32_t getDimY() const {return mHal.state.dimY;}
75 uint32_t getDimZ() const {return mHal.state.dimZ;}
77 bool getDimFaces() const {return mHal.state.faces;}
78 uint32_t getDimYuv() const {return mHal.state.dimYuv;}
80 if (idx < mHal.state.arrayCount) {
81 return mHal.state.arrays[idx];
87 rsAssert(lod < mHal.state.lodCount);
88 return mHal.state
[all...]

Completed in 331 milliseconds

1234567891011>>