Searched refs:status (Results 76 - 100 of 388) sorted by relevance

1234567891011>>

/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Drs_core.c96 uint32_t prev, status; local
100 status = rsAtomicCas((volatile int32_t*) ptr, (int32_t) prev, (int32_t)n);
101 } while (status != prev);
106 int32_t prev, status; local
110 status = rsAtomicCas(ptr, prev, n);
111 } while (status != prev);
116 uint32_t prev, status; local
120 status = rsAtomicCas((volatile int32_t*) ptr, (int32_t) prev, (int32_t) n);
121 } while (status != prev);
126 int32_t prev, status; local
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DRuimPhoneBookInterfaceManager.java64 AtomicBoolean status = new AtomicBoolean(false);
65 Message response = mBaseHandler.obtainMessage(EVENT_GET_SIZE_DONE, status);
71 waitForResult(status);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSimPhoneBookInterfaceManager.java64 AtomicBoolean status = new AtomicBoolean(false);
65 Message response = mBaseHandler.obtainMessage(EVENT_GET_SIZE_DONE, status);
70 waitForResult(status);
/frameworks/base/core/java/com/android/internal/os/storage/
H A DExternalStorageFormatter.java144 String status = mStorageVolume == null ?
147 if (Environment.MEDIA_MOUNTED.equals(status)
148 || Environment.MEDIA_MOUNTED_READ_ONLY.equals(status)) {
160 } else if (Environment.MEDIA_NOFS.equals(status)
161 || Environment.MEDIA_UNMOUNTED.equals(status)
162 || Environment.MEDIA_UNMOUNTABLE.equals(status)) {
206 } else if (Environment.MEDIA_BAD_REMOVAL.equals(status)) {
208 } else if (Environment.MEDIA_CHECKING.equals(status)) {
210 } else if (Environment.MEDIA_REMOVED.equals(status)) {
212 } else if (Environment.MEDIA_SHARED.equals(status)) {
[all...]
/frameworks/base/media/libdrm/mobile1/src/parser/
H A Dparser_dm.c72 DM_PARSE_STATUS status = DM_PARSE_START; local
150 status = DM_PARSING_CONTENT; /* can go here means that the rights object has been parsed. */
179 status = DM_PARSING_RIGHTS;
183 status = DM_PARSING_CONTENT;
187 status = DM_PARSING_CONTENT;
227 status = DM_PARSE_END;
230 if (DM_PARSING_RIGHTS == status) {
236 status = DM_PARSE_END;
255 status = DM_PARSE_END;
262 if (DM_PARSING_RIGHTS == status) {
[all...]
/frameworks/native/libs/utils/
H A DPropertyMap.cpp122 status_t status = Tokenizer::open(filename, &tokenizer); local
123 if (status) {
124 ALOGE("Error %d opening property file %s.", status, filename.string());
129 status = NO_MEMORY;
135 status = parser.parse();
142 if (status) {
150 return status;
/frameworks/av/media/libmedia/
H A DIAudioFlinger.cpp97 status_t *status)
132 if (status) {
133 *status = lStatus;
147 status_t *status)
175 if (status) {
176 *status = lStatus;
501 status_t status = reply.readInt32(); local
502 if (status == NO_ERROR) {
512 return status;
528 status_t status local
86 createTrack( audio_stream_type_t streamType, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t frameCount, track_flags_t *flags, const sp<IMemory>& sharedBuffer, audio_io_handle_t output, pid_t tid, int *sessionId, status_t *status) argument
138 openRecord( audio_io_handle_t input, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t frameCount, track_flags_t flags, pid_t tid, int *sessionId, status_t *status) argument
556 status_t status = remote()->transact(QUERY_NUM_EFFECTS, data, &reply); local
578 status_t status = remote()->transact(QUERY_EFFECT, data, &reply); local
599 status_t status = remote()->transact(GET_EFFECT_DESCRIPTOR, data, &reply); local
611 createEffect( effect_descriptor_t *pDesc, const sp<IEffectClient>& client, int32_t priority, audio_io_handle_t output, int sessionId, status_t *status, int *id, int *enabled) argument
720 status_t status; local
740 status_t status; local
952 status_t status = getRenderPosition(&halFrames, &dspFrames, output); local
986 status_t status = queryNumberEffects(&numEffects); local
996 status_t status = queryEffect(data.readInt32(), &desc); local
1008 status_t status = getEffectDescriptor(&uuid, &desc); local
1023 status_t status; local
[all...]
H A DSoundPoolThread.cpp107 status_t status = -1; local
109 status = sample->doLoad();
111 mSoundPool->notify(SoundPoolEvent(SoundPoolEvent::SAMPLE_LOADED, sampleID, status));
/frameworks/base/core/jni/
H A Dandroid_view_DisplayEventReceiver.cpp86 ALOGW("Failed to initialize display event receiver, status=%d", result);
116 status_t status = mReceiver.requestNextVsync(); local
117 if (status) {
118 ALOGW("Failed to request next vsync, status=%d", status);
119 return status;
182 ALOGW("Failed to get events from display event receiver, status=%d", status_t(n));
220 status_t status = receiver->initialize(); local
221 if (status) {
223 message.appendFormat("Failed to initialize display event receiver. status
242 status_t status = receiver->scheduleVsync(); local
[all...]
/frameworks/base/libs/androidfw/
H A DKeyboard.cpp49 status_t status = loadKeyLayout(deviceIdenfifier, keyLayoutName); local
50 if (status == NAME_NOT_FOUND) {
60 status_t status = loadKeyCharacterMap(deviceIdenfifier, keyCharacterMapName); local
61 if (status == NAME_NOT_FOUND) {
115 status_t status = KeyLayoutMap::load(path, &keyLayoutMap); local
116 if (status) {
117 return status;
132 status_t status = KeyCharacterMap::load(path, local
134 if (status) {
135 return status;
[all...]
H A DKeyLayoutMap.cpp54 status_t status = Tokenizer::open(filename, &tokenizer); local
55 if (status) {
56 ALOGE("Error %d opening key layout map file %s.", status, filename.string());
61 status = NO_MEMORY;
67 status = parser.parse();
74 if (!status) {
80 return status;
175 status_t status = parseKey(); local
176 if (status) return status;
179 status_t status = parseAxis(); local
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.cpp122 PV_STATUS status; local
138 status = BitstreamSaveWord(stream);
139 if (status != PV_SUCCESS)
141 return status;
170 PV_STATUS status; local
179 status = BitstreamPutBits(stream, topLength, topValue);
181 if (status != PV_SUCCESS)
183 return status;
186 status = BitstreamPutBits(stream, 16, (UInt)(Value & 0xFFFF));
188 return status;
418 PV_STATUS status; local
534 PV_STATUS status = PV_SUCCESS; local
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothGattServerCallback.aidl26 void onServerRegistered(in int status, in int serverIf);
28 void onServerConnectionState(in int status, in int serverIf,
30 void onServiceAdded(in int status, in int srvcType,
H A DBluetoothGatt.java127 public void onClientRegistered(int status, int clientIf) {
128 if (DBG) Log.d(TAG, "onClientRegistered() - status=" + status
138 if (status != GATT_SUCCESS) {
158 public void onClientConnectionState(int status, int clientIf,
160 if (DBG) Log.d(TAG, "onClientConnectionState() - status=" + status
168 mCallback.onConnectionStateChange(BluetoothGatt.this, status, profileState);
289 public void onSearchComplete(String address, int status) {
290 if (DBG) Log.d(TAG, "onSearchComplete() = Device=" + address + " Status=" + status);
[all...]
/frameworks/base/libs/hwui/
H A DProgram.cpp55 GLint status; local
56 glGetProgramiv(mProgramId, GL_LINK_STATUS, &status);
57 if (status != GL_TRUE) {
139 GLint status; local
140 glGetShaderiv(shader, GL_COMPILE_STATUS, &status);
141 if (status != GL_TRUE) {
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pDnsSdServiceResponse.java131 sbuf.append(" status:").append(Status.toString(mStatus));
147 * @param status status code.
152 protected WifiP2pDnsSdServiceResponse(int status, argument
155 status, tranId, dev, data);
289 * @param status status code.
295 static WifiP2pDnsSdServiceResponse newInstance(int status, argument
297 if (status != WifiP2pServiceResponse.Status.SUCCESS) {
298 return new WifiP2pDnsSdServiceResponse(status,
[all...]
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp297 int status = 0; local
325 status = -EINVAL;
350 status = -EINVAL;
353 return status;
358 int status = 0; local
366 status = agc->set_target_level_dbfs(-(*(int16_t *)pValue / 100));
370 status = agc->set_compression_gain_db(*(int16_t *)pValue / 100);
374 status = agc->enable_limiter(*(bool *)pValue);
381 status = agc->set_target_level_dbfs(-(pProperties->targetLevel / 100));
382 if (status !
460 int status = 0; local
482 int status = 0; local
583 int status = 0; local
589 int status = 0; local
640 int status = 0; local
755 int status = 0; local
773 int status = -ENOMEM; local
893 int status; local
1039 int status = session->apm->set_num_reverse_channels(inCnl); local
1131 int status = 0; local
1166 int status = 0; local
1344 int status; local
1717 int status = 0; local
1828 int status; local
1859 int status; local
[all...]
/frameworks/native/cmds/servicemanager/
H A Dbctest.c36 unsigned status; local
49 status = bio_get_uint32(&reply);
53 return status;
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpvdec_api.cpp71 Bool status = PV_TRUE; local
100 if (video->vol == NULL) status = PV_FALSE;
114 if (video->currVop == NULL) status = PV_FALSE;
117 if (video->prevVop == NULL) status = PV_FALSE;
124 if (video->currVop == NULL) status = PV_FALSE;
127 if (video->prevVop == NULL) status = PV_FALSE;
133 if (video->vopHeader == NULL) status = PV_FALSE;
139 if (status == PV_TRUE)
155 status = PV_FALSE;
168 if (video->vol[idx] == NULL) status
285 Bool status = PV_TRUE; local
1004 PV_STATUS status = PV_FAIL; local
1041 PV_STATUS status = PV_FAIL; local
1242 PV_STATUS status = PV_FAIL; local
[all...]
H A Dvlc_decode.cpp98 Modified : 04/16/2001 : removed status checking of PV_BitstreamFlushBits
105 PV_STATUS status; local
116 status = BitstreamCheckEndBuffer(stream);
117 if (status == PV_END_OF_VOP) return status; /* 03/19/2002 */
134 PV_STATUS status; local
164 status = PV_VlcDecMV(stream, &vlc_code_mag);
165 if (status != PV_SUCCESS)
167 return status;
174 status
269 PV_STATUS status; local
454 PV_STATUS status = PV_SUCCESS; local
630 PV_STATUS status = PV_FAIL; /* 07/09/01 */ local
[all...]
/frameworks/base/core/java/android/net/http/
H A DEventHandler.java22 * processed. The normal order of callbacks is status(), headers(),
72 * Called after status line has been sucessfully processed.
80 public void status(int major_version, method in interface:EventHandler
/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsFL/src/com/android/framework/externalsharedpermsfltestapp/
H A DExternalSharedPermsFLTest.java40 public void onStatusChanged(String provider, int status, Bundle extras) {}
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccSmsInterfaceManagerProxy.java41 updateMessageOnIccEf(String callingPackage, int index, int status, byte[] pdu) { argument
42 return mIccSmsInterfaceManager.updateMessageOnIccEf(callingPackage, index, status, pdu);
46 public boolean copyMessageToIccEf(String callingPackage, int status, byte[] pdu, argument
48 return mIccSmsInterfaceManager.copyMessageToIccEf(callingPackage, status, pdu, smsc);
/frameworks/wilhelm/src/itf/
H A DIEqualizer.c68 android::status_t status = local
70 result = android_fx_statusToResult(status);
163 android::status_t status = local
165 result = android_fx_statusToResult(status);
196 android::status_t status = local
198 result = android_fx_statusToResult(status);
231 android::status_t status =
233 result = android_fx_statusToResult(status);
270 android::status_t status =
272 result = android_fx_statusToResult(status);
326 android::status_t status = local
358 android::status_t status = local
398 android::status_t status = local
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java108 /** Device connection status */
109 public int status = UNAVAILABLE; field in class:WifiP2pDevice
220 status = AVAILABLE;
273 status = device.status;
317 sbuf.append("\n status: ").append(status);
337 status = source.status;
351 dest.writeInt(status);
[all...]

Completed in 757 milliseconds

1234567891011>>