Searched defs:status (Results 251 - 275 of 461) sorted by relevance

<<111213141516171819

/frameworks/av/include/drm/
H A Ddrm_framework_common.h192 * Defines constants related to status of the rights
290 * Defines the status of the rights like
293 int status; member in class:android::DecryptHandle
316 status(INVALID_VALUE),
/frameworks/av/media/libeffects/testlibs/
H A DEffectEqualizer.cpp294 int status; local
365 int status = 0; local
433 status = -EINVAL;
444 status = -EINVAL;
455 status = -EINVAL;
483 status = -EINVAL;
506 status = -EINVAL;
510 return status;
534 int status = 0; local
547 status
[all...]
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp136 ALOGE("set(): AudioFlinger could not create effect, status: %d", mStatus);
160 ALOGV("set() %p OK effect: %s id: %d status %d enabled %d pid %d", this, mDescriptor.name, mId,
214 status_t status = NO_ERROR; local
220 status = mIEffect->enable();
223 status = mIEffect->disable();
225 if (status == NO_ERROR) {
229 return status;
239 ALOGV("command() bad status %d", mStatus);
253 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData); local
256 if (status
357 status_t status = DEAD_OBJECT; local
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Drate_control.cpp796 AVCEnc_Status status = AVCENC_SUCCESS; local
837 status = AVCENC_SKIPPED_PICTURE;
843 return status;
H A Dslice.cpp23 AVCEnc_Status status = AVCENC_SUCCESS; local
89 status = EncodeMB(encvid);
90 if (status != AVCENC_SUCCESS)
111 status = AVCENC_PICTURE_READY;
125 status = AVCENC_SLICE_EMPTY; /* error, one slice group has no MBs in it */
129 status = AVCENC_SUCCESS;
145 status = AVCENC_FAIL;
149 return status;
155 AVCEnc_Status status = AVCENC_SUCCESS; local
210 status
552 AVCEnc_Status status = AVCENC_SUCCESS; local
688 AVCEnc_Status status = AVCENC_SUCCESS; local
774 AVCEnc_Status status = AVCENC_SUCCESS; local
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
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/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_dpb.c72 /* macros to determine picture status. Note that IS_SHORT_TERM macro returns
75 #define IS_REFERENCE(a) ((a).status)
76 #define IS_EXISTING(a) ((a).status > NON_EXISTING)
78 ((a).status == NON_EXISTING || (a).status == SHORT_TERM)
79 #define IS_LONG_TERM(a) ((a).status == LONG_TERM)
82 #define SET_UNUSED(a) (a).status = UNUSED;
440 dpb->buffer[index].status = LONG_TERM;
581 dpb->currentOut->status = LONG_TERM;
642 u32 i, status; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4AudioAssembler.cpp482 AssemblyStatus status = addPacket(source); local
483 if (status == MALFORMED_PACKET) {
486 return status;
/frameworks/av/media/libstagefright/webm/
H A DWebmFrameThread.cpp49 void *status; local
50 pthread_join(mThread, &status);
51 return (status_t)(intptr_t)status;
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioPort.cpp394 status_t status = NO_ERROR; local
401 status = NO_INIT;
404 status = audioport->checkExactAudioProfile(config->sample_rate,
407 if (status != NO_ERROR) {
420 status = audioport->checkGain(&config->gain, config->gain.index);
421 if (status != NO_ERROR) {
428 if (status != NO_ERROR) {
434 return status;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealth.java340 * by applications like status bar which would just like to know the state of the
372 * by applications like status bar which would just like to know the state of the
400 * by applications like status bar which would just like to know the state of the
431 int status) {
432 mCallback.onHealthAppConfigurationStatusChange(config, status);
430 onHealthAppConfigurationStatusChange(BluetoothHealthAppConfiguration config, int status) argument
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraManager.java109 * with the availability status of all currently known camera devices.</p>
156 * Register a callback to be notified about torch mode status.
162 * with the torch mode status of all currently known camera devices with a flash unit.</p>
170 * @param callback The new callback to send torch mode status to
190 * Remove a previously-added callback; the callback will no longer receive torch mode status
556 * {@link CameraManager#registerTorchCallback} to be notified of such status changes.
781 // Camera ID -> Torch status map
900 private boolean isAvailable(int status) { argument
901 switch (status) {
909 private boolean validStatus(int status) { argument
921 validTorchStatus(int status) argument
932 postSingleUpdate(final AvailabilityCallback callback, final Handler handler, final String id, final int status) argument
953 postSingleTorchUpdate(final TorchCallback callback, final Handler handler, final String id, final int status) argument
991 onStatusChangedLocked(int status, String id) argument
1056 onTorchStatusChangedLocked(int status, String id) argument
1149 onStatusChanged(int status, int cameraId) argument
1156 onTorchStatusChanged(int status, String cameraId) argument
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkAgent.java119 * networks status - whether we could use the network or could not, due to
181 * Sent by the NetworkAgent to ConnectivityService to provide status on a packet keepalive
450 * This may be called multiple times as the network status changes and may
453 * @param status one of {@code VALID_NETWORK} or {@code INVALID_NETWORK}.
457 protected void networkStatus(int status, String redirectUrl) { argument
/frameworks/base/core/java/com/android/internal/util/
H A DAsyncChannel.java171 /** Successful status always 0, !0 is an unsuccessful status */
293 int status = connectSync(srcContext, srcHandler, dstHandler);
294 if (status == STATUS_SUCCESSFUL) {
296 status = response.arg1;
298 return status;
305 * msg.arg1 = status
351 * msg.arg1 = status
366 * msg.arg1 = status
425 * msg.arg1 = status
842 replyHalfConnected(int status) argument
879 replyDisconnected(int status) argument
[all...]
/frameworks/base/libs/hwui/
H A DLayerRenderer.cpp376 bool status = false; local
447 status = true;
459 return status;
/frameworks/base/media/java/android/media/
H A DSoundPool.java470 * @param status the status of the load operation (0 = success)
472 public void onLoadComplete(SoundPool soundPool, int sampleId, int status); argument
/frameworks/base/media/java/android/media/audiofx/
H A DEnvironmentalReverb.java440 * @param status status of the set parameter operation.
444 void onParameterChange(EnvironmentalReverb effect, int status, int param, int value); argument
455 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
476 l.onParameterChange(EnvironmentalReverb.this, status, p, v);
/frameworks/native/cmds/servicemanager/
H A Dbinder.c185 int status)
200 if (status) {
204 data.txn.data.ptr.buffer = (uintptr_t)&status;
182 binder_send_reply(struct binder_state *bs, struct binder_io *reply, binder_uintptr_t buffer_to_free, int status) argument
/frameworks/native/include/android/
H A Dsensor.h177 int8_t status; member in struct:ASensorVector
207 int8_t status; member in struct:AHeartRateEvent
/frameworks/native/include/binder/
H A DParcel.h582 status_t status = this->readInt32(&size); local
584 if (status != OK) {
585 return status;
595 status = (this->*read_func)(&v);
597 if (status != OK) {
598 return status;
616 status_t status = readInt32(&size); local
619 if (status != OK || size < 0) {
620 return status;
626 status
642 status_t status = this->writeInt32(val.size()); local
700 status_t status = readInt32(&size); local
723 status_t status = readInt32(&present); local
[all...]
/frameworks/native/libs/binder/tests/
H A DbinderThroughputTest.cpp310 int status; local
311 wait(&status);
312 if (status != 0) {
313 cout << "nonzero child status" << status << endl;
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsVideoCallProvider.java210 int status, VideoProfile requestedProfile, VideoProfile responseProfile) {
213 mCallback.receiveSessionModifyResponse(status, requestedProfile, responseProfile);
209 receiveSessionModifyResponse( int status, VideoProfile requestedProfile, VideoProfile responseProfile) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DUiccSmsController.java57 updateMessageOnIccEfForSubscriber(int subId, String callingPackage, int index, int status, argument
61 return iccSmsIntMgr.updateMessageOnIccEf(callingPackage, index, status, pdu);
70 public boolean copyMessageToIccEfForSubscriber(int subId, String callingPackage, int status, argument
74 return iccSmsIntMgr.copyMessageToIccEf(callingPackage, status, pdu, smsc);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DSmsMessage.java92 * Here, the error class is defined by the bits from 9-8, the status code by the bits from 7-0.
95 private int status; field in class:SmsMessage
244 // First byte is status: RECEIVED_READ, RECEIVED_UNREAD, STORED_SENT,
432 * Returns the status for a previously submitted message.
433 * For not interfering with status codes from GSM, this status code is
438 return (status << 16);
764 // other messages, it would be unclear what the status
768 // indicate successful delivery (status == 0).
773 status
[all...]
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp166 // All error returns from this method are via notifyPrepared(status) followed by "return".
418 CacheStatus_t status = getCacheRemaining(&eos); local
420 if (eos || status == kStatusHigh
421 || ((mStateFlags & kFlagPreparing) && (status >= kStatusEnough))) {
595 // Prepared state, prefetch status notifications
600 // to replace by a new signalPrepareCompletion(status) if we re-visit this later.
606 // status code but we can provide a more specific one.
711 // cache status is evaluated against duration thresholds
728 // cache status is evaluated against cache amount thresholds

Completed in 334 milliseconds

<<111213141516171819