Searched refs:status (Results 251 - 275 of 580) sorted by relevance

<<11121314151617181920>>

/frameworks/base/media/tests/audiotests/
H A Dshared_mem_test.cpp104 status_t status = track->initCheck(); local
105 if(status != NO_ERROR) {
/frameworks/base/services/core/java/com/android/server/location/
H A DMockProvider.java123 public void setStatus(int status, Bundle extras, long updateTime) { argument
124 mStatus = status;
/frameworks/native/include/android/
H A Dsensor.h169 int8_t status; member in struct:ASensorVector
199 int8_t status; member in struct:AHeartRateEvent
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapBmessage.java95 public BluetoothMapBmessage setStatus(Status status) { argument
96 mBmsgStatus = status;
159 json.put("status", mBmsgStatus);
/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
H A DPhotoBitmapLoader.java63 result.status = BitmapResult.STATUS_EXCEPTION;
112 result.status = BitmapResult.STATUS_SUCCESS;
/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.cpp460 status_t status; local
461 status = mPlayer->attachAuxEffect(effectId);
462 // attachAuxEffect returns a status but we have no way to report it back to app
463 (void) status;
474 status_t status; local
475 status = mPlayer->setAuxEffectSendLevel(level);
476 // setAuxEffectSendLevel returns a status but we have no way to report it back to app
477 (void) status;
494 // handle prefetch status update
501 // evaluate prefetch status base
548 status_t status = mPlayer->getParameter(KEY_PARAMETER_AUDIO_CHANNEL_COUNT, reply); local
[all...]
/frameworks/wilhelm/src/itf/
H A DIAcousticEchoCancellation.c43 android::status_t status = thiz->mAECEffect->setEnabled((bool) thiz->mEnabled); local
44 result = android_fx_statusToResult(status);
H A DIAutomaticGainControl.c42 android::status_t status = thiz->mAGCEffect->setEnabled((bool) thiz->mEnabled); local
43 result = android_fx_statusToResult(status);
H A DINoiseSuppression.c40 android::status_t status = thiz->mNSEffect->setEnabled((bool) thiz->mEnabled); local
41 result = android_fx_statusToResult(status);
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyInterfaceImplLegacy.cpp168 status_t status = audioPolicyEffects->addOutputSessionEffects(output, stream, session); local
169 if (status != NO_ERROR && status != ALREADY_EXISTS) {
205 status_t status = audioPolicyEffects->releaseOutputSessionEffects(output, stream, session); local
206 if (status != NO_ERROR && status != ALREADY_EXISTS) {
278 status_t status = audioPolicyEffects->addInputEffects(*input, inputSource, session); local
279 if (status != NO_ERROR && status != ALREADY_EXISTS) {
323 status_t status local
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java365 AcquiredConnectionStatus status = mAcquiredConnections.remove(connection);
366 if (status == null) {
375 if (recycleConnectionLocked(connection, status)) {
383 if (recycleConnectionLocked(connection, status)) {
393 AcquiredConnectionStatus status) {
394 if (status == AcquiredConnectionStatus.RECONFIGURE) {
400 status = AcquiredConnectionStatus.DISCARD;
403 if (status == AcquiredConnectionStatus.DISCARD) {
571 private void markAcquiredConnectionsLocked(AcquiredConnectionStatus status) { argument
578 if (status !
392 recycleConnectionLocked(SQLiteConnection connection, AcquiredConnectionStatus status) argument
[all...]
/frameworks/base/core/jni/
H A Dcom_android_internal_os_Zygote.cpp84 int status; local
94 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
95 // Log process-death status that we care about. In general it is
102 if (WIFEXITED(status)) {
103 if (WEXITSTATUS(status)) {
104 ALOGI("Process %d exited cleanly (%d)", pid, WEXITSTATUS(status));
106 } else if (WIFSIGNALED(status)) {
107 if (WTERMSIG(status) != SIGKILL) {
108 ALOGI("Process %d exited due to signal (%d)", pid, WTERMSIG(status));
110 if (WCOREDUMP(status)) {
641 int status; local
[all...]
H A Dandroid_view_GraphicBuffer.cpp172 status_t status = buffer->lock(LOCK_CANVAS_USAGE, rect, &bits); local
174 if (status) return JNI_FALSE;
215 status_t status = wrapper->buffer->unlock(); local
216 return status == 0 ? JNI_TRUE : JNI_FALSE;
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java479 * This file contains the current sync status. We would like to retain
522 mStatusFile = new AtomicFile(new File(syncDir, "status.bin"));
979 // the periodic syncs status to correspond to it.
982 SyncStatusInfo status = getOrCreateSyncStatusLocked(authority.ident);
984 status.setPeriodicSyncTime(
1002 SyncStatusInfo status = mSyncStatus.get(authority.ident);
1014 // remove the corresponding entry from the status
1015 if (status != null) {
1016 status.removePeriodicSyncTime(i);
1018 Log.e(TAG, "Tried removing sync status o
[all...]
/frameworks/native/libs/gui/
H A DBufferQueueProducer.cpp296 status_t status = waitForFreeSlotThenRelock("dequeueBuffer", async, local
298 if (status != NO_ERROR) {
299 return status;
514 status_t status = waitForFreeSlotThenRelock("attachBuffer(P)", false, local
516 if (status != NO_ERROR) {
517 return status;
849 int status = NO_ERROR; local
864 status = IInterface::asBinder(listener)->linkToDeath(
866 if (status != NO_ERROR) {
868 strerror(-status), statu
891 int status = NO_ERROR; local
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GpsLocationProvider.cpp98 static void status_callback(GpsStatus* status) argument
101 env->CallVoidMethod(mCallbacksObj, method_reportStatus, status->status);
281 agps_status->status, byteArray);
365 static void gps_geofence_status_callback(int32_t status, GpsLocation* location) argument
387 env->CallVoidMethod(mCallbacksObj, method_reportGeofenceStatus, status,
392 static void gps_geofence_add_callback(int32_t geofence_id, int32_t status) argument
395 if (status != GPS_GEOFENCE_OPERATION_SUCCESS) {
396 ALOGE("Error in geofence_add_callback: %d\n", status);
398 env->CallVoidMethod(mCallbacksObj, method_reportGeofenceAddStatus, geofence_id, status);
402 gps_geofence_remove_callback(int32_t geofence_id, int32_t status) argument
412 gps_geofence_resume_callback(int32_t geofence_id, int32_t status) argument
422 gps_geofence_pause_callback(int32_t geofence_id, int32_t status) argument
[all...]
/frameworks/av/drm/common/
H A DIDrmManagerService.cpp46 data->writeInt32(handle->status);
78 handle->status = data.readInt32();
742 const status_t status = reply.readInt32(); local
743 ALOGV("Return value of decrypt() is %d", status);
745 if (status == NO_ERROR) {
751 return status;
843 status_t status = setDrmServiceListener(uniqueId, drmServiceListener); local
845 reply->writeInt32(status);
1068 const status_t status = saveRights(uniqueId, drmRights, local
1072 reply->writeInt32(status);
1134 const status_t status local
1154 const status_t status local
1186 const status_t status = removeRights(uniqueId, path); local
1197 const status_t status = removeAllRights(data.readInt32()); local
1293 status_t status = getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray); local
1397 const status_t status = closeDecryptSession(uniqueId, handle); local
1424 const status_t status local
1470 const status_t status local
1499 const status_t status = finalizeDecryptUnit(uniqueId, &handle, data.readInt32()); local
[all...]
/frameworks/av/services/audioflinger/
H A DThreads.cpp119 // maximum time to wait in sendConfigEvent_l() for a status to be received
564 status_t status = initCheck(); local
565 if (status == NO_ERROR) {
570 return status;
599 status_t status; local
611 status_t status = NO_ERROR; local
616 return status;
630 status = event->mStatus;
633 return status;
675 status_t status local
905 status_t status; local
972 status_t status; local
1132 createEffect_l( const sp<AudioFlinger::Client>& client, const sp<IEffectClient>& effectClient, int32_t priority, int sessionId, effect_descriptor_t *desc, int *enabled, status_t *status) argument
1318 status_t status = chain->addEffect_l(effect); local
1615 createTrack_l( const sp<AudioFlinger::Client>& client, audio_stream_type_t streamType, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t *pFrameCount, const sp<IMemory>& sharedBuffer, int sessionId, IAudioFlinger::track_flags_t *flags, pid_t tid, int uid, status_t *status) argument
1894 status_t status = ALREADY_EXISTS; local
2272 status_t status; local
2446 status_t status = mNormalSink->getTimestamp(mLatchD.mTimestamp); local
2667 status_t status = NO_ERROR; local
3094 status_t status = PlaybackThread::createAudioPatch_l(patch, handle); local
3112 status_t status = NO_ERROR; local
3202 status_t status = PlaybackThread::releaseAudioPatch_l(handle); local
3219 status_t status = NO_ERROR; local
3586 status_t status = INVALID_OPERATION; local
4247 checkForNewParameter_l(const String8& keyValuePair, status_t& status) argument
4720 status_t status = mActiveTrack->getNextBuffer(&buffer); local
4802 checkForNewParameter_l(const String8& keyValuePair, status_t& status) argument
5897 status_t status = activeTrack->getNextBuffer(&activeTrack->mSink); local
6043 createRecordTrack_l( const sp<AudioFlinger::Client>& client, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t *pFrameCount, int sessionId, size_t *notificationFrames, int uid, IAudioFlinger::track_flags_t *flags, pid_t tid, status_t *status) argument
6172 status_t status = NO_ERROR; local
6212 status_t status = NO_ERROR; local
6553 status_t status = provider->getNextBuffer(&buffer, 0); local
6754 checkForNewParameter_l(const String8& keyValuePair, status_t& status) argument
7050 status_t status = NO_ERROR; local
7117 status_t status = NO_ERROR; local
[all...]
/frameworks/av/media/libmedia/
H A DMediaScanner.cpp214 status_t status = client.scanFile(path, statbuf.st_mtime, 0, local
216 if (status) {
230 status_t status = client.scanFile(path, statbuf.st_mtime, statbuf.st_size, local
232 if (status) {
/frameworks/av/media/libstagefright/
H A DAACWriter.cpp161 status_t status = mSource->stop(); local
163 (status != OK && status != ERROR_END_OF_STREAM)) {
164 err = status;
H A DAMRWriter.cpp156 status_t status = mSource->stop(); local
158 (status != OK && status != ERROR_END_OF_STREAM)) {
159 err = status;
/frameworks/av/radio/
H A DRadio.cpp106 status_t status = service->attach(handle, radio, config, withAudio, radio->mIRadio); local
108 if (status == NO_ERROR && radio->mIRadio != 0) {
111 ALOGW("Error %d connecting to radio service", status);
277 event.status = DEAD_OBJECT;
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3IOStreamBase.h103 camera3_buffer_status_t status,
/frameworks/base/core/java/android/content/pm/
H A DIntentFilterVerificationInfo.java52 private static final String ATTR_STATUS = "status";
91 Log.w(TAG, "Trying to set a non supported status: " + s);
144 int status = getIntFromXml(parser, ATTR_STATUS, -1);
145 if (status == -1) {
146 Log.e(TAG, "Unknown status value: " + status);
148 mMainStatus = status;
/frameworks/base/core/java/android/hardware/radio/
H A DRadioTuner.java254 * status is one of {@link #ERROR_HARDWARE_FAILURE}, {@link #ERROR_SERVER_DIED},
258 public void onError(int status) {} argument

Completed in 2475 milliseconds

<<11121314151617181920>>