Searched defs:status (Results 51 - 75 of 596) sorted by relevance

1234567891011>>

/frameworks/av/media/libaudioclient/
H A DIAudioRecord.cpp51 status_t status = remote()->transact(START, data, &reply); local
52 if (status == NO_ERROR) {
53 status = reply.readInt32();
55 ALOGW("start() error: %s", strerror(-status));
57 return status;
/frameworks/av/media/libnbaio/
H A DAudioBufferProviderSource.cpp56 status_t status = mProvider->getNextBuffer(&mBuffer); local
57 if (status != OK) {
58 return status == NOT_ENOUGH_DATA ? (ssize_t) WOULD_BLOCK : (ssize_t) status;
102 status_t status = mProvider->getNextBuffer(&mBuffer); local
103 if (CC_LIKELY(status == OK)) {
110 if (CC_LIKELY(status == NOT_ENOUGH_DATA)) {
111 status = WOULD_BLOCK;
113 return accumulator > 0 ? accumulator : (ssize_t) status;
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpacket_util.cpp30 PV_STATUS status; local
47 status = PV_BitstreamShowBitsByteAlign(stream, resync_marker_length, &tmpvar32);
48 /* if (status != PV_SUCCESS && status != PV_END_OF_BUFFER) return status; */
115 status = BitstreamCheckEndBuffer(stream); /* return end_of_VOP 03/30/01 */
116 if (status != PV_SUCCESS)
118 return status;
120 status = BitstreamShowBits32HC(stream, &tmpvar32); /* 07/07/01 */
196 PV_STATUS status; local
[all...]
/frameworks/av/media/utils/
H A DISchedulingPolicyService.cpp50 status_t status = remote()->transact(REQUEST_PRIORITY_TRANSACTION, data, &reply, flags); local
51 if (status != NO_ERROR) {
52 return status;
/frameworks/av/services/audioflinger/
H A DSpdifStreamOut.cpp93 status_t status = AudioStreamOut::open( local
99 ALOGI("SpdifStreamOut::open() status = %d", status);
101 return status;
/frameworks/base/core/java/android/bluetooth/le/
H A DPeriodicAdvertisingCallback.java23 * advertising operation status.
59 * @param status operation status.
63 int status) {}
61 onSyncEstablished(int syncHandle, BluetoothDevice device, int advertisingSid, int skip, int timeout, int status) argument
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiPlaybackClient.java52 * Listener used by the client to get display device status.
56 * Called when display device status is reported.
58 * @param status display device status. It should be one of the following values.
67 public void onComplete(int status); argument
96 * Gets the status of display device connected through HDMI bus.
132 public void onComplete(int status) {
133 callback.onComplete(status);
/frameworks/base/core/jni/
H A Dandroid_text_AndroidBidi.cpp40 UErrorCode status = U_ZERO_ERROR; local
41 UBiDi* bidi = ubidi_openSized(n, 0, &status);
44 bidi, minikin::emojiBidiOverride, nullptr, nullptr, nullptr, &status);
45 ubidi_setPara(bidi, chs, n, dir, NULL, &status);
46 if (U_SUCCESS(status)) {
/frameworks/base/libs/hwui/tests/common/
H A DTestContext.cpp45 status_t status = SurfaceComposerClient::getDisplayInfo(dtoken, &display); local
46 LOG_ALWAYS_FATAL_IF(status, "Failed to get display info\n");
/frameworks/base/location/java/android/location/
H A DGpsNavigationMessageEvent.java36 * The system does not support tracking of GPS Navigation Messages. This status will not change
70 * Returns the latest status of the GPS Navigation Messages sub-system.
72 void onStatusChanged(int status); argument
/frameworks/base/media/java/android/media/midi/
H A DMidiDeviceService.java59 public void onDeviceStatusChanged(MidiDeviceServer server, MidiDeviceStatus status) {
60 MidiDeviceService.this.onDeviceStatusChanged(status);
126 * @param status the number of the port that was opened
128 public void onDeviceStatusChanged(MidiDeviceStatus status) { argument
/frameworks/base/media/jni/soundpool/
H A DSoundPoolThread.cpp107 status_t status = -1; local
109 status = sample->doLoad();
111 mSoundPool->notify(SoundPoolEvent(SoundPoolEvent::SAMPLE_LOADED, sampleID, status));
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DUserInputListener.java23 * Notification that status of the OSU operation has changed. The implementation may choose to
27 * Returning a null string on the initial status update of UserInputComplete or UserInputAborted
32 * @param status
36 public String operationStatus(String spIdentity, OSUOperationStatus status, String message); argument
/frameworks/base/services/core/java/com/android/server/location/
H A DGnssMeasurementsProvider.java64 int status;
67 status = GnssMeasurementsEvent.Callback.STATUS_READY;
72 status = GnssMeasurementsEvent.Callback.STATUS_NOT_SUPPORTED;
75 status = GnssMeasurementsEvent.Callback.STATUS_LOCATION_DISABLED;
83 return new StatusChangedOperation(status);
90 public StatusChangedOperation(int status) { argument
91 mStatus = status;
H A DGnssNavigationMessageProvider.java65 int status;
68 status = GnssNavigationMessage.Callback.STATUS_READY;
73 status = GnssNavigationMessage.Callback.STATUS_NOT_SUPPORTED;
76 status = GnssNavigationMessage.Callback.STATUS_LOCATION_DISABLED;
84 return new StatusChangedOperation(status);
91 public StatusChangedOperation(int status) { argument
92 mStatus = status;
/frameworks/base/services/core/jni/
H A Dcom_android_server_VibratorService.cpp97 Status status = mHal->setAmplitude(static_cast<uint32_t>(amplitude)); local
98 if (status != Status::OK) {
100 static_cast<uint32_t>(status));
109 Status status; local
112 [&status, &lengthMs](Status retStatus, uint32_t retLengthMs) {
113 status = retStatus;
116 if (status == Status::OK) {
118 } else if (status != Status::UNSUPPORTED_OPERATION) {
124 static_cast<int32_t>(strength), static_cast<uint32_t>(status));
/frameworks/base/test-runner/src/junit/runner/
H A DTestRunListener.java10 /* test status constants*/
19 public void testFailed(int status, String testName, String trace); argument
/frameworks/base/tools/validatekeymaps/
H A DMain.cpp82 status_t status = KeyLayoutMap::load(String8(filename), &map); local
83 if (status) {
84 fprintf(stderr, "Error %d parsing key layout file.\n\n", status);
92 status_t status = KeyCharacterMap::load(String8(filename), local
94 if (status) {
95 fprintf(stderr, "Error %d parsing key character map file.\n\n", status);
103 status_t status = PropertyMap::load(String8(filename), &map); local
104 if (status) {
105 fprintf(stderr, "Error %d parsing input device configuration file.\n\n", status);
114 status_t status local
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWpsResult.java34 public Status status; field in class:WpsResult
39 status = Status.FAILURE;
44 status = s;
50 sbuf.append(" status: ").append(status.toString());
65 status = source.status;
72 dest.writeString(status.name());
81 result.status = Status.valueOf(in.readString());
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pUpnpServiceResponse.java75 * @param status status code
80 protected WifiP2pUpnpServiceResponse(int status, argument
83 status, transId, dev, data);
123 sbuf.append(" status:").append(Status.toString(mStatus));
139 * @param status status code.
146 static WifiP2pUpnpServiceResponse newInstance(int status, argument
148 if (status != WifiP2pServiceResponse.Status.SUCCESS) {
149 return new WifiP2pUpnpServiceResponse(status, transI
[all...]
/frameworks/minikin/app/
H A DHyphTool.cpp16 int status = stat(fn, &statbuf); local
17 if (status < 0) {
/frameworks/native/cmds/surfacereplayer/replayer/
H A DBufferQueueScheduler.cpp84 status_t status = s->lock(&outBuffer, nullptr); local
86 if (status != NO_ERROR) {
87 ALOGE("fillSurface: failed to lock buffer, (%d)", status);
106 status = s->unlockAndPost();
108 ALOGE_IF(status != NO_ERROR, "fillSurface: failed to unlock and post buffer, (%d)", status);
/frameworks/native/libs/vr/libdisplay/
H A Ddisplay_manager_client.cpp25 auto status = InvokeRemoteMethod<DisplayManagerProtocol::GetSurfaceState>(); local
26 if (!status) {
29 status.GetErrorMessage().c_str());
32 return status;
37 auto status = InvokeRemoteMethod<DisplayManagerProtocol::SetupNamedBuffer>( local
39 if (!status) {
43 status.GetErrorMessage().c_str());
44 return status.error_status();
48 auto native_buffer_handle = status.take();
63 auto status local
[all...]
/frameworks/native/libs/vr/libdisplay/include/private/dvr/
H A Ddisplay_client.h22 pdx::Status<std::unique_ptr<Surface>> status; local
24 status.SetValue(std::move(surface));
26 status.SetError(error);
27 return status;
75 // Temporary query for current VR status. Will be removed later.
/frameworks/native/libs/vr/libpdx_default_transport/private/pdx/default_transport/
H A Dservice_utility.h9 #include <pdx/status.h>
70 auto status = utility->ReloadSystemProperties(); local
71 if (!status) {
75 fpath, status.GetErrorMessage().c_str());
76 return kIgnoreErrors ? 0 : -status.error();

Completed in 636 milliseconds

1234567891011>>