Searched defs:status (Results 226 - 250 of 461) sorted by relevance

1234567891011>>

/frameworks/native/libs/input/
H A DKeyLayoutMap.cpp56 status_t status = Tokenizer::open(filename, &tokenizer); local
57 if (status) {
58 ALOGE("Error %d opening key layout map file %s.", status, filename.string());
63 status = NO_MEMORY;
69 status = parser.parse();
76 if (!status) {
82 return status;
211 status_t status = parseKey(); local
212 if (status) return status;
215 status_t status = parseAxis(); local
219 status_t status = parseLed(); local
[all...]
/frameworks/native/libs/input/tests/
H A DInputPublisherAndConsumer_test.cpp71 status_t status; local
85 status = mPublisher->publishKeyEvent(seq, deviceId, source, action, flags,
87 ASSERT_EQ(OK, status)
92 status = mConsumer->consume(&mEventFactory, true /*consumeBatches*/, -1, &consumeSeq, &event);
93 ASSERT_EQ(OK, status)
114 status = mConsumer->sendFinishedSignal(seq, true);
115 ASSERT_EQ(OK, status)
120 status = mPublisher->receiveFinishedSignal(&finishedSeq, &handled);
121 ASSERT_EQ(OK, status)
130 status_t status; local
254 status_t status; local
266 status_t status; local
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES11RenderEngine.cpp242 uint32_t* texName, uint32_t* fbName, uint32_t* status) {
255 *status = glCheckFramebufferStatusOES(GL_FRAMEBUFFER_OES);
241 bindImageAsFramebuffer(EGLImageKHR image, uint32_t* texName, uint32_t* fbName, uint32_t* status) argument
H A DGLES20RenderEngine.cpp211 uint32_t* texName, uint32_t* fbName, uint32_t* status) {
223 *status = glCheckFramebufferStatus(GL_FRAMEBUFFER);
210 bindImageAsFramebuffer(EGLImageKHR image, uint32_t* texName, uint32_t* fbName, uint32_t* status) argument
/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/net/ims/src/java/com/android/ims/internal/
H A DImsVideoCallProviderWrapper.java74 int status, VideoProfile requestProfile, VideoProfile responseProfile) {
76 args.arg1 = status;
125 int status = (int) args.arg1;
129 receiveSessionModifyResponse(status, requestProfile, responseProfile);
73 receiveSessionModifyResponse( int status, VideoProfile requestProfile, VideoProfile responseProfile) argument
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/nan/
H A DWifiNanSessionState.java137 public void onPublishFail(int status) { argument
141 mListener.onPublishFail(status);
148 public void onPublishTerminated(int status) { argument
153 mListener.onPublishTerminated(status);
165 public void onSubscribeFail(int status) { argument
170 mListener.onSubscribeFail(status);
177 public void onSubscribeTerminated(int status) { argument
182 mListener.onSubscribeTerminated(status);
200 public void onMessageSendFail(int messageId, int status) { argument
204 mListener.onMessageSendFail(messageId, status);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccPhoneBookInterfaceManager.java106 AtomicBoolean status = (AtomicBoolean) ar.userObj;
107 status.set(true);
184 AtomicBoolean status = new AtomicBoolean(false);
185 Message response = mBaseHandler.obtainMessage(EVENT_UPDATE_DONE, status);
190 waitForResult(status);
233 AtomicBoolean status = new AtomicBoolean(false);
234 Message response = mBaseHandler.obtainMessage(EVENT_UPDATE_DONE, status);
238 waitForResult(status);
262 AtomicBoolean status = new AtomicBoolean(false);
263 Message response = mBaseHandler.obtainMessage(EVENT_GET_SIZE_DONE, status);
322 waitForResult(AtomicBoolean status) argument
[all...]
/frameworks/rs/driver/runtime/
H A Drs_core.c114 uint32_t prev, status; local
118 status = __sync_val_compare_and_swap(ptr, prev, n);
119 } while (status != prev);
124 int32_t prev, status; local
128 status = __sync_val_compare_and_swap(ptr, prev, n);
129 } while (status != prev);
134 uint32_t prev, status; local
138 status = __sync_val_compare_and_swap(ptr, prev, n);
139 } while (status != prev);
144 int32_t prev, status; local
[all...]
/frameworks/rs/
H A DrsFileA3D.cpp365 int status = fclose(writeHandle); local
367 if (status != 0) {
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaItemStatus.java25 * Describes the playback status of a media item.
38 * While the item is playing, the playback status may also include progress information
43 * To monitor playback status, the application should supply a {@link PendingIntent} to use as the
44 * {@link MediaControlIntent#EXTRA_ITEM_STATUS_UPDATE_RECEIVER item status update receiver}
46 * the status update receiver will only be invoked for major status changes such as a
49 * The status update receiver will not be invoked for minor progress updates such as
52 * {@link MediaControlIntent#ACTION_GET_STATUS get status request} to poll for changes
168 * Integer extra: HTTP status code.
170 * Specifies the HTTP status cod
332 Builder(MediaItemStatus status) argument
[all...]
/frameworks/wilhelm/src/android/
H A DAudioRecorder_to_android.cpp477 android::status_t status = ar->mAudioRecord->initCheck(); local
478 if (android::NO_ERROR != status) {
479 SL_LOGE("android_audioRecorder_realize(%p) error creating AudioRecord object; status %d",
480 ar, status);
481 // FIXME should return a more specific result depending on status
H A Dandroid_GenericMediaPlayer.cpp463 status_t status; local
464 status = mPlayer->attachAuxEffect(effectId);
465 // attachAuxEffect returns a status but we have no way to report it back to app
466 (void) status;
477 status_t status; local
478 status = mPlayer->setAuxEffectSendLevel(level);
479 // setAuxEffectSendLevel returns a status but we have no way to report it back to app
480 (void) status;
497 // handle prefetch status update
504 // evaluate prefetch status base
551 status_t status = mPlayer->getParameter(KEY_PARAMETER_AUDIO_CHANNEL_COUNT, reply); local
[all...]
/frameworks/wilhelm/src/itf/
H A DIEnvironmentalReverb.c59 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
61 result = android_fx_statusToResult(status);
86 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
88 result = android_fx_statusToResult(status);
120 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
122 result = android_fx_statusToResult(status);
148 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
150 result = android_fx_statusToResult(status);
179 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
181 result = android_fx_statusToResult(status);
207 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
238 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
266 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
299 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
327 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
358 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
386 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
419 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
447 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
478 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
506 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
537 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
565 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
596 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
624 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
680 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
708 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
[all...]
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
394 android::status_t status = local
[all...]
/frameworks/wilhelm/tests/examples/
H A DslesTestSendToPresetReverb.cpp47 // Prefetch status callback
60 SLuint32 status; local
61 result = (*caller)->GetPrefetchStatus(caller, &status);
64 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
/frameworks/wilhelm/tests/listening/
H A DslesTest_playMuteSolo.cpp68 // Prefetch status callback
77 SLuint32 status; local
78 result = (*caller)->GetPrefetchStatus(caller, &status);
82 && level == 0 && status == SL_PREFETCHSTATUS_UNDERFLOW) {
85 status == SL_PREFETCHSTATUS_SUFFICIENTDATA) {
86 new_prefetch_status = status;
250 // get the prefetch status interface
254 // enable prefetch status callbacks
312 // wait for prefetch status callback to indicate either sufficient data or error
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestGetPositionUri.cpp70 SLuint32 status; local
72 res = (*caller)->GetPrefetchStatus(caller, &status); CheckErr(res);
74 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
83 fprintf(stdout, "PrefetchEventCallback: Prefetch Status is = %u\n", status);
H A DslesTestLoopUri.cpp71 SLuint32 status; local
72 result = (*caller)->GetPrefetchStatus(caller, &status);
78 fprintf(stdout, "\t\tPrefetchEventCallback: Prefetch Status is = %u\n", status);
82 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
86 status == SL_PREFETCHSTATUS_SUFFICIENTDATA) {
87 new_prefetch_status = status;
237 // wait for prefetch status callback to indicate either sufficient data or error
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 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;
339 // 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/camera/
H A DCamera.cpp88 status_t status = NO_ERROR; local
103 status = -ENODEV;
106 status = -EBUSY;
109 status = -EINVAL;
112 status = -EUSERS;
115 status = BAD_VALUE;
118 status = -EOPNOTSUPP;
121 status = -EACCES;
124 status = PERMISSION_DENIED;
127 status
[all...]
/frameworks/av/camera/ndk/impl/
H A DACameraManager.cpp168 int32_t status = pair.second; local
171 ACameraManager_AvailabilityCallback cb = isStatusAvailable(status) ?
188 bool CameraManagerGlobal::validStatus(int32_t status) { argument
189 switch (status) {
200 bool CameraManagerGlobal::isStatusAvailable(int32_t status) { argument
201 switch (status) {
250 int32_t status, int32_t cameraId) {
253 cm->onStatusChanged(status, cameraId);
255 ALOGE("Cannot deliver status change. Global camera manager died");
261 int32_t status, int32_
249 onStatusChanged( int32_t status, int32_t cameraId) argument
260 onStatusChanged( int32_t status, int32_t cameraId) argument
266 onStatusChangedLocked( int32_t status, int32_t cameraId) argument
[all...]

Completed in 409 milliseconds

1234567891011>>