Searched defs:status (Results 201 - 225 of 380) sorted by relevance

1234567891011>>

/frameworks/wilhelm/tests/mimeUri/
H A DslesTestManyPlayers.cpp80 SLuint32 status; local
82 res = (*caller)->GetPrefetchStatus(caller, &status); CheckErrPlyr(res, *pPlayerId);
84 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
95 status, *pPlayerId);
H A DslesTestPlayUri.cpp78 SLuint32 status; local
80 result = (*caller)->GetPrefetchStatus(caller, &status);
83 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
91 fprintf(stdout, "PrefetchEventCallback: Prefetch Status is = %u\n", status);
H A DslesTestSlowDownUri.cpp116 SLuint32 status; local
117 result = (*caller)->GetPrefetchStatus(caller, &status);
123 fprintf(stdout, "\t\tPrefetchEventCallback: Prefetch Status is = %u\n", status);
127 && level == 0 && status == SL_PREFETCHSTATUS_UNDERFLOW) {
131 status == SL_PREFETCHSTATUS_SUFFICIENTDATA) {
132 new_prefetch_status = status;
342 // wait for prefetch status callback to indicate either sufficient data or error
/frameworks/wilhelm/tests/
H A DmimeUri_test.cpp78 SLuint32 status; local
80 (*caller)->GetPrefetchStatus(caller, &status);
82 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
90 fprintf(stdout, "\t\tPrefetchEventCallback: Prefetch Status is = %u\n", status);
/frameworks/wilhelm/tests/sandbox/
H A Dmultiplay.c86 // Prefetch status callback
100 SLuint32 status; local
101 result = (*caller)->GetPrefetchStatus(caller, &status);
103 //fprintf(stderr, "PrefetchEventCallback: received event %u, level %u, status %u\n",
104 // event, level, status);
106 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
/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.cpp134 ALOGE("set(): AudioFlinger could not create effect, status: %d", mStatus);
155 ALOGV("set() %p OK effect: %s id: %d status %d enabled %d pid %d", this, mDescriptor.name, mId,
209 status_t status = NO_ERROR; local
215 status = mIEffect->enable();
218 status = mIEffect->disable();
220 if (status == NO_ERROR) {
224 return status;
234 ALOGV("command() bad status %d", mStatus);
248 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData); local
251 if (status
352 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.c71 /* macros to determine picture status. Note that IS_SHORT_TERM macro returns
74 #define IS_REFERENCE(a) ((a).status)
75 #define IS_EXISTING(a) ((a).status > NON_EXISTING)
77 ((a).status == NON_EXISTING || (a).status == SHORT_TERM)
78 #define IS_LONG_TERM(a) ((a).status == LONG_TERM)
81 #define SET_UNUSED(a) (a).status = UNUSED;
439 dpb->buffer[index].status = LONG_TERM;
580 dpb->currentOut->status = LONG_TERM;
641 u32 i, status; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4AudioAssembler.cpp478 AssemblyStatus status = addPacket(source); local
479 if (status == MALFORMED_PACKET) {
482 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;
H A DWebmWriter.cpp282 status_t status = mStreams[i].mThread->stop(); local
283 if (err == OK && status != OK) {
284 err = status;
536 status_t status = mStreams[i].mThread->pause(); local
537 if (status != OK) {
538 err = status;
/frameworks/av/services/audiopolicy/
H A DAudioPolicyInterfaceImplLegacy.cpp167 status_t status = audioPolicyEffects->addOutputSessionEffects(output, stream, session); local
168 if (status != NO_ERROR && status != ALREADY_EXISTS) {
204 status_t status = audioPolicyEffects->releaseOutputSessionEffects(output, stream, session); local
205 if (status != NO_ERROR && status != ALREADY_EXISTS) {
276 status_t status = audioPolicyEffects->addInputEffects(*input, inputSource, session); local
277 if (status != NO_ERROR && status != ALREADY_EXISTS) {
321 status_t status local
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHeadset.java599 * can keep the device awake by polling for cellular status updates. As a
832 public void clccResponse(int index, int direction, int status, int mode, boolean mpty, argument
836 mService.clccResponse(index, direction, status, mode, mpty, number, type);
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/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
844 replyHalfConnected(int status) argument
873 replyDisconnected(int status) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_database_CursorWindow.cpp69 status_t status = CursorWindow::create(name, cursorWindowSize, &window); local
70 if (status || !window) {
72 name.string(), cursorWindowSize, status);
84 status_t status = CursorWindow::createFromParcel(parcel, &window); local
85 if (status || !window) {
86 ALOGE("Could not create CursorWindow from Parcel due to error %d.", status);
113 status_t status = window->writeToParcel(parcel); local
114 if (status) {
116 msg.appendFormat("Could not write CursorWindow to Parcel due to error %d.", status);
124 status_t status local
138 status_t status = window->setNumColumns(columnNum); local
144 status_t status = window->allocRow(); local
402 status_t status = window->putBlob(row, column, value, len); local
424 status_t status = window->putString(row, column, valueStr, sizeIncludingNull); local
439 status_t status = window->putLong(row, column, value); local
453 status_t status = window->putDouble(row, column, value); local
467 status_t status = window->putNull(row, column); local
[all...]
H A Dandroid_hardware_SensorManager.cpp184 int8_t status; local
190 status = buffer[i].vector.status;
193 status = buffer[i].heart_rate.status;
196 status = SENSOR_STATUS_ACCURACY_HIGH;
203 status,
/frameworks/base/libs/hwui/
H A DLayerRenderer.cpp379 bool status = false; local
465 status = true;
482 return status;
/frameworks/base/libs/hwui/renderthread/
H A DCanvasContext.cpp227 status_t status; local
229 status = mCanvas->prepareDirty(dirty.fLeft, dirty.fTop,
232 status = mCanvas->prepare(mOpaque);
236 status |= mCanvas->drawRenderNode(mRootRenderNode.get(), outBounds);
244 if (status & DrawGlInfo::kStatusDrew) {
/frameworks/base/media/java/android/media/
H A DSoundPool.java448 * @param status the status of the load operation (0 = success)
450 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);

Completed in 6660 milliseconds

1234567891011>>