Searched refs:status (Results 1 - 25 of 198) sorted by relevance

12345678

/frameworks/base/core/java/android/provider/
H A DDownloads.java180 * The name of the column containing the current status of the download.
187 public static final String COLUMN_STATUS = "status";
191 * status changed in the download. Stored as a System.currentTimeMillis()
378 * Returns whether the status is informational (i.e. 1xx).
381 public static boolean isStatusInformational(int status) { argument
382 return (status >= 100 && status < 200);
391 public static boolean isStatusSuspended(int status) { argument
392 return (status == STATUS_PENDING_PAUSED || status
399 isStatusSuccess(int status) argument
407 isStatusError(int status) argument
415 isStatusClientError(int status) argument
423 isStatusServerError(int status) argument
432 isStatusCompleted(int status) argument
925 isStatusInformational(int status) argument
934 isStatusSuspended(int status) argument
941 isStatusSuccess(int status) argument
948 isStatusError(int status) argument
955 isStatusClientError(int status) argument
962 isStatusServerError(int status) argument
970 isStatusCompleted(int status) argument
[all...]
/frameworks/base/services/java/com/android/server/status/
H A DStatusBarException.java17 package com.android.server.status;
H A DStatusBarNotification.java17 package com.android.server.status;
H A DNotificationLinearLayout.java17 package com.android.server.status;
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dget_ga_specific_config.cpp70 status = 0 if success
144 status = CALL get_prog_config(
148 RETURNING (status)
155 status = CALL set_mc_info(
176 status = 1;
222 status = 1;
226 RETURN status;
309 Int status = SUCCESS; local
346 status = 1; /* do not support scalable coding in this release */
360 if (status
[all...]
H A Dpvmp4audiodecoderconfig.cpp70 status = 0 if no error occurred
186 Int status = MP4AUDEC_INCOMPLETE_FRAME; local
219 status = get_audio_specific_config(pVars);
226 if (status == SUCCESS)
257 * Default to nonrecoverable error status unless there is a Buffer overrun
259 status = MP4AUDEC_INVALID_FRAME;
266 status = MP4AUDEC_INCOMPLETE_FRAME; /* audio config too small */
280 pVars->status = status;
282 return (status);
[all...]
H A Dpvmp4setaudioconfig.cpp62 status = 0 if no error occurred
182 Int status = MP4AUDEC_INCOMPLETE_FRAME; local
245 status = -1;
274 status = -1; /* do not support more than two channels */
275 pVars->status = status;
276 return (status);
289 status = set_mc_info(&(pVars->mc_info),
303 status = set_mc_info(&(pVars->mc_info),
335 status
[all...]
H A Dfind_adts_syncword.cpp88 If no syncword is found, the function returns status == ERROR.
145 status = ERROR;
154 status = ERROR;
157 return (status);
236 Int status = SUCCESS; local
280 status = FIND_ADTS_ERROR;
298 status = FIND_ADTS_ERROR;
303 return (status);
H A Dgetics.cpp118 status = 0 if success
191 status = CALL get_ics_info(
203 RETURNING(status)
234 status = 1
268 IF (status == SUCCESS)
270 status = CALL hufffac(
280 RETURNING(status)
282 ENDIF (status)
284 IF (status == SUCCESS)
306 status
440 Int status = SUCCESS; local
[all...]
H A Dget_adts_header.cpp175 RETURNING status
187 RETURNING status
227 RETURNING status = SUCCESS/FAILURE
234 RETURNING status = SUCCESS/FAILURE
241 RETURNING status = SUCCESS/FAILURE
244 IF (status == SUCCESS)
277 status = 1;
280 return (status);
369 Int status = SUCCESS; local
385 status
[all...]
H A Dhuffdecode.cpp55 Description: Modified so getmask is NOT called if the status returned
111 status = 0 if success
201 status = 1;
205 IF (status == SUCCESS)
234 RETURNING(status)
236 IF (status == SUCCESS)
259 status = 1;
274 ENDIF (status)
278 WHILE((ch <= rightCh) AND (status == SUCCESS))
280 status
386 Int status = SUCCESS; local
[all...]
H A Dget_adif_header.cpp37 4) ADD a test for status != SUCCESS in loop.
148 status = -1;
190 (i >= 0) && (status == SUCCESS);
203 RETURNING( status )
208 RETURN (status)
304 Int status = SUCCESS; local
333 status = -1;
392 (i >= 0) && (status == SUCCESS);
411 status =
441 return status;
[all...]
H A Dset_mc_info.cpp275 Int status; local
276 status = infoinit(sampling_rate_idx,
279 if (SUCCESS != status)
/frameworks/base/libs/rs/
H A DrsLocklessFifo.cpp208 int status = pthread_mutex_init(&mMutex, NULL); local
209 if (status) {
214 status = pthread_cond_init(&mCondition, NULL);
215 if (status) {
226 int status; local
228 status = pthread_mutex_lock(&mMutex);
229 if (status) {
230 LOGE("LocklessCommandFifo: error %i locking for set condition.", status);
236 status = pthread_cond_signal(&mCondition);
237 if (status) {
249 int status; local
[all...]
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Ddec_pred_intra_dc.cpp32 PV_STATUS status = PV_SUCCESS; local
41 status = PV_VlcDecIntraDCPredSize(stream, compnum, &DC_size);
43 if (status == PV_SUCCESS)
73 return status;
H A Dvop.cpp82 PV_STATUS status; local
101 status = BitstreamShowBits32HC(stream, &startCode);
138 status = BitstreamShowBits32HC(stream, &tmpvar);
142 status = DecodeUserData(stream);
143 if (status != PV_SUCCESS) return PV_FAIL;
152 status = PVSearchNextM4VFrame(stream); /* search 0x00 0x00 0x01 */
153 if (status != PV_SUCCESS) return PV_FAIL; /* breaks the loop */
204 status = PVSearchNextM4VFrame(stream); /* search 0x00 0x00 0x01 */
205 if (status != PV_SUCCESS) return PV_FAIL; /* breaks the loop */
214 status
804 PV_STATUS status = PV_SUCCESS; local
1014 PV_STATUS status = PV_SUCCESS; local
1526 PV_STATUS status; local
[all...]
H A Dbitstream.cpp177 PV_STATUS status = PV_SUCCESS; local
182 status = BitstreamFillCache(stream);
185 return status;
195 PV_STATUS status = PV_SUCCESS; local
200 status = BitstreamFillCache(stream);
203 return status;
217 PV_STATUS status = PV_SUCCESS; local
223 status = BitstreamFillCache(stream);
227 return status;
240 PV_STATUS status local
259 PV_STATUS status = PV_SUCCESS; local
273 PV_STATUS status; local
288 PV_STATUS status = PV_SUCCESS; local
357 PV_STATUS status = PV_SUCCESS; local
424 PV_STATUS status = PV_SUCCESS; local
443 PV_STATUS status = PV_SUCCESS; local
462 PV_STATUS status = PV_SUCCESS; local
605 PV_STATUS status = PV_SUCCESS; local
634 PV_STATUS status = PV_SUCCESS; local
684 PV_STATUS status = PV_SUCCESS; local
708 PV_STATUS status = PV_SUCCESS; local
787 PV_STATUS status; local
878 PV_STATUS status; local
952 PV_STATUS status; local
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallForwardInfo.java27 public int status; /*1 = active, 0 = not active */ field in class:CallForwardInfo
35 return super.toString() + (status == 0 ? " not active " : " active ")
H A DIccSmsInterfaceManagerProxy.java40 updateMessageOnIccEf(int index, int status, byte[] pdu) throws android.os.RemoteException { argument
41 return mIccSmsInterfaceManager.updateMessageOnIccEf(index, status, pdu);
44 public boolean copyMessageToIccEf(int status, byte[] pdu, argument
46 return mIccSmsInterfaceManager.copyMessageToIccEf(status, pdu, smsc);
/frameworks/base/media/libstagefright/codecs/avc/dec/src/
H A Dresidual.cpp26 AVCDec_Status status; local
49 status = BitstreamReadBits(stream, 8, (uint*) & byte0);
50 status = BitstreamReadBits(stream, 8, (uint*) & byte1);
52 status = BitstreamReadBits(stream, 8, (uint*) & byte1);
54 status = BitstreamReadBits(stream, 8, (uint*) & byte1);
58 status = BitstreamReadBits(stream, 8, (uint*) & byte0);
59 status = BitstreamReadBits(stream, 8, (uint*) & byte1);
61 status = BitstreamReadBits(stream, 8, (uint*) & byte1);
63 status = BitstreamReadBits(stream, 8, (uint*) & byte1);
67 status
[all...]
/frameworks/base/media/libmedia/
H A DIAudioRecord.cpp49 status_t status = remote()->transact(START, data, &reply); local
50 if (status == NO_ERROR) {
51 status = reply.readInt32();
53 LOGW("start() error: %s", strerror(-status));
55 return status;
70 status_t status = remote()->transact(GET_CBLK, data, &reply); local
71 if (status == NO_ERROR) {
/frameworks/base/location/java/android/location/
H A DILocationListener.aidl29 void onStatusChanged(String provider, int status, in Bundle extras);
H A DLocationListener.java40 * Called when the provider status changes. This method is called when
46 * @param status {@link LocationProvider#OUT_OF_SERVICE} if the
53 * status variables.
63 void onStatusChanged(String provider, int status, Bundle extras); argument
/frameworks/base/libs/audioflinger/
H A DA2dpAudioInterface.cpp60 uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status)
64 return mHardwareInterface->openOutputStream(devices, format, channels, sampleRate, status);
71 if (status)
72 *status = -1;
86 if (status)
87 *status = err;
103 uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status,
106 return mHardwareInterface->openInputStream(devices, format, channels, sampleRate, status, acoustics);
134 status_t status = NO_ERROR; local
157 if (status
59 openOutputStream( uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status) argument
102 openInputStream( uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status, AudioSystem::audio_in_acoustics acoustics) argument
276 status_t status = -1; local
313 status_t status = a2dp_init(44100, 2, &mData); local
350 status_t status = NO_ERROR; local
[all...]
/frameworks/base/core/jni/
H A Dandroid_text_AndroidBidi.cpp47 UErrorCode status = U_ZERO_ERROR; local
48 UBiDi* bidi = ubidi_openSized(n, 0, &status);
49 ubidi_setPara(bidi, chs, n, dir, NULL, &status);
50 if (U_SUCCESS(status)) {

Completed in 2914 milliseconds

12345678