Searched refs:status (Results 351 - 375 of 995) sorted by relevance

<<11121314151617181920>>

/frameworks/support/mediarouter/src/main/java/androidx/mediarouter/media/
H A DMediaItemStatus.java26 * Describes the playback status of a media item.
39 * While the item is playing, the playback status may also include progress information
44 * To monitor playback status, the application should supply a {@link PendingIntent} to use as the
45 * {@link MediaControlIntent#EXTRA_ITEM_STATUS_UPDATE_RECEIVER item status update receiver}
47 * the status update receiver will only be invoked for major status changes such as a
50 * The status update receiver will not be invoked for minor progress updates such as
53 * {@link MediaControlIntent#ACTION_GET_STATUS get status request} to poll for changes
169 * Integer extra: HTTP status code.
171 * Specifies the HTTP status cod
333 Builder(MediaItemStatus status) argument
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/
H A DDrmPlugin.cpp108 Status status = setSecurityLevel(sessionId, SecurityLevel::SW_SECURE_CRYPTO); local
109 _hidl_cb(status, toHidlVec(sessionId));
119 Status status = setSecurityLevel(sessionId, securityLevel); local
120 _hidl_cb(status, toHidlVec(sessionId));
167 Status status = session->getKeyRequest(initData, mimeType, request); local
169 return status;
184 Status status = getKeyRequestCommon( local
188 _hidl_cb(status, toHidlVec(request),
206 Status status = getKeyRequestCommon( local
210 _hidl_cb(status, toHidlVe
248 Status status = session->provideKeyResponse(response); local
526 Status status = Status::OK; local
[all...]
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dremote_method.h13 #include <pdx/status.h>
124 const auto status = message.ReplyError(error_code); local
125 ALOGE_IF(!status, "RemoteMethodError: Failed to reply to message: %s",
126 status.GetErrorMessage().c_str());
138 const auto status = message.Reply(return_value); local
139 ALOGE_IF(!status, "RemoteMethodReturn: Failed to reply to message: %s",
140 status.GetErrorMessage().c_str());
152 auto status = message.Reply(ret); local
153 ALOGE_IF(!status, "RemoteMethodReturn: Failed to reply to message: %s",
154 status
358 auto status = local
398 auto status = trans.Send<R>(Opcode, send_payload.Data(), local
[all...]
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dservice.h122 Status<size_t> status = Read(buffer, length); local
123 if (status && status.get() < length)
124 status.SetError(EIO);
126 ret.PropagateError(status);
130 Status<size_t> status = Write(buffer, length); local
131 if (status && status.get() < length)
132 status.SetError(EIO);
134 ret.PropagateError(status);
178 Reply(const Status<T>& status) argument
182 Reply(const Status<void>& status) argument
[all...]
H A Dmessage_writer.h6 #include <pdx/status.h>
/frameworks/av/media/libaudioprocessing/
H A DBufferProviders.cpp185 status_t status; local
186 status = mEffectsFactory->mirrorBuffer(
188 if (status != 0) {
189 ALOGE("DownmixerBufferProvider() error %d while creating input buffer", status);
194 status = mEffectsFactory->mirrorBuffer(
196 if (status != 0) {
197 ALOGE("DownmixerBufferProvider() error %d while creating output buffer", status);
210 status = mDownmixInterface->command(
214 if (status != 0 || cmdStatus != 0) {
216 status, cmdStatu
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DEffectEqualizer.cpp297 int status; local
368 int status = 0; local
436 status = -EINVAL;
447 status = -EINVAL;
458 status = -EINVAL;
486 status = -EINVAL;
509 status = -EINVAL;
513 return status;
537 int status = 0; local
550 status
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.cpp33 AssemblyStatus status; local
35 status = assembleMore(source);
37 if (status == WRONG_SEQUENCE_NUMBER) {
53 if (status == NOT_ENOUGH_DATA) {
/frameworks/base/core/java/android/ddm/
H A DDdmHandleThread.java104 //Log.d("ddm-thread", "Thread status request");
106 byte[] status = DdmVmInternal.getThreadStats();
107 if (status != null)
108 return new Chunk(CHUNK_THST, status, 0, status.length);
/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPerms/src/com/android/framework/externalsharedpermstestapp/
H A DExternalSharedPermsTest.java45 public void onStatusChanged(String provider, int status, Bundle extras) {}
/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsDiffKey/src/com/android/framework/externalsharedpermsdiffkeytestapp/
H A DExternalSharedPermsDiffKeyTest.java43 public void onStatusChanged(String provider, int status, Bundle extras) {}
/frameworks/native/libs/vr/libdisplay/include/private/dvr/
H A Ddisplay_manager_client.h8 #include <pdx/status.h>
/frameworks/native/libs/vr/libpdx_default_transport/
H A Dpdx_benchmarks.cpp267 Status<void> status; variable
269 status = message.ReadAll(send_buffer.data(), message.GetSendLength());
273 if (!status)
274 CHECK(message.ReplyError(status.error()));
286 Status<void> status; variable
288 status = message.WriteAll(receive_buffer.data(),
294 if (!status)
295 CHECK(message.ReplyError(status.error()));
307 Status<void> status; variable
309 status
454 auto status = InvokeRemoteMethodInPlace<BenchmarkRPC::Stats>(stats_out); local
462 auto status = InvokeRemoteMethod<BenchmarkRPC::WriteVector>(data); local
471 auto status = InvokeRemoteMethod<BenchmarkRPC::WriteVector>(data); local
481 auto status = local
[all...]
/frameworks/native/libs/vr/libvrflinger/
H A Depoll_event_dispatcher.h14 #include <pdx/status.h>
/frameworks/native/services/vr/bufferhubd/
H A Ddetached_buffer_channel.cpp126 auto status = message.PushChannel(0, nullptr, &channel_id); local
127 if (!status) {
130 status.GetErrorMessage().c_str());
155 return status;
/frameworks/opt/net/lowpan/tests/
H A Dscantest.sh39 echo "+ adb shell lowpanctl -I wpan5 status"
40 adb shell lowpanctl -I wpan5 status || die
/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/services/audiopolicy/common/managerdefinitions/src/
H A DConfigParsingUtils.cpp224 status_t status = NAME_NOT_FOUND; local
232 if (status == NAME_NOT_FOUND || status == NO_ERROR) {
233 status = tmpStatus;
245 if (status == NAME_NOT_FOUND || status == NO_ERROR) {
246 status = tmpStatus;
257 if (status == NAME_NOT_FOUND || status == NO_ERROR) {
258 status
[all...]
/frameworks/av/media/libaaudio/src/legacy/
H A DAudioStreamRecord.cpp176 status_t status = mAudioRecord->initCheck(); local
177 if (status != OK) {
179 ALOGE("open(), initCheck() returned %d", status);
180 return AAudioConvert_androidToAAudioResult(status);
486 status_t status = mAudioRecord->getTimestamp(&extendedTimestamp); local
487 if (status == WOULD_BLOCK) {
489 } else if (status != NO_ERROR) {
490 return AAudioConvert_androidToAAudioResult(status);
/frameworks/av/media/libeffects/proxy/
H A DEffectProxy.cpp206 int status = 0; local
213 status = pContext->aeli[SUB_FX_HOST]->create_effect(
217 if (status != NO_ERROR || (pContext->eHandle[SUB_FX_HOST] == NULL)) {
219 return status;
224 status = pContext->aeli[SUB_FX_OFFLOAD]->create_effect(
228 if (status != NO_ERROR || (pContext->eHandle[SUB_FX_OFFLOAD] == NULL)) {
321 subStatus[i] = &status;
334 return status;
/frameworks/av/media/libmedia/omx/1.0/
H A DWOmxBufferSource.cpp61 ::android::binder::Status status = toBinderStatus( local
66 return status;
/frameworks/av/media/libmediaplayer2/nuplayer2/
H A DJWakeLock.cpp63 status_t status = mPowerManager->acquireWakeLock( local
67 if (status == NO_ERROR) {
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DAWakeLock.cpp62 status_t status = mPowerManager->acquireWakeLock( local
66 if (status == NO_ERROR) {
/frameworks/av/media/libstagefright/omx/1.0/
H A DWOmxBufferSource.cpp61 ::android::binder::Status status = toBinderStatus( local
66 return status;
/frameworks/base/libs/hwui/tests/common/
H A DTestContext.cpp44 status_t status = SurfaceComposerClient::getDisplayInfo(dtoken, &display); local
45 LOG_ALWAYS_FATAL_IF(status, "Failed to get display info\n");

Completed in 330 milliseconds

<<11121314151617181920>>