Searched refs:status (Results 251 - 275 of 995) sorted by relevance

<<11121314151617181920>>

/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionService.java37 public void onAvailabilityChanged(int status) {
38 Log.i(TAG, "onAvailabilityChanged(" + status + ")");
39 hotwordAvailabilityChangeHelper(status);
/frameworks/native/cmds/servicemanager/
H A Dbctest.c37 int status; local
50 status = bio_get_uint32(&reply);
54 return status;
/frameworks/support/mediarouter/src/main/java/androidx/mediarouter/media/
H A DMediaSessionStatus.java26 * Describes the playback status of a media session.
39 * To monitor session status, the application should supply a {@link PendingIntent} to use as the
40 * {@link MediaControlIntent#EXTRA_SESSION_STATUS_UPDATE_RECEIVER session status update receiver}
91 * Gets the timestamp associated with the status information in
94 * @return The status timestamp in the {@link SystemClock#elapsedRealtime()} time base.
120 * Gets a bundle of extras for this status object.
174 * Builder for {@link MediaSessionStatus media session status objects}.
180 * Creates a media session status builder using the current time as the
192 * Creates a media session status builder whose initial contents are
193 * copied from an existing status
195 Builder(MediaSessionStatus status) argument
[all...]
/frameworks/support/work/workmanager/src/main/java/androidx/work/impl/constraints/trackers/
H A DBatteryChargingTracker.java100 int status = intent.getIntExtra(BatteryManager.EXTRA_STATUS, -1);
101 charging = (status == BatteryManager.BATTERY_STATUS_CHARGING
102 || status == BatteryManager.BATTERY_STATUS_FULL);
/frameworks/native/libs/binder/
H A DParcel.cpp802 status_t status; local
804 status = BAD_VALUE;
805 return status;
808 status = parcel->writeInt32(val.size());
809 if (status != OK) {
810 return status;
815 status = BAD_VALUE;
816 return status;
820 return status;
1119 status_t status local
1203 status_t status; local
1447 status_t status = readInt32(&count); local
1637 status_t status = parcel->readInt32(&size); local
1669 status_t status = parcel->readInt32(&size); local
1741 status_t status = readInt32(&size); local
1762 status_t status = readInt32(&size); local
1893 status_t status; local
2002 status_t status = readInt32(&size); local
2034 status_t status = readString8(&retString); local
2045 status_t status = readInt32(&size); local
2079 status_t status = readInt32(&size); local
2128 status_t status = readNullableStrongBinder(val); local
2159 status_t status = readInt32(&have_parcelable); local
2175 binder::Status status; local
2264 status_t status = readInt32(&blobType); local
[all...]
/frameworks/av/media/libaudioclient/tests/
H A Dtest_create_audiorecord.cpp72 status_t status; local
111 status = record->initCheck();
112 sprintf(statusStr, "\n#### Test %u status %d\n", testCount, status);
114 if (status != NO_ERROR) {
H A Dtest_create_audiotrack.cpp75 status_t status; local
135 status = track->initCheck();
136 sprintf(statusStr, "\n#### Test %u status %d\n", testCount, status);
138 if (status != NO_ERROR) {
/frameworks/av/services/audioflinger/
H A DTracks.cpp236 status_t status; local
238 status = cblk() != NULL ? NO_ERROR : NO_MEMORY;
240 status = getCblk() != 0 ? NO_ERROR : NO_MEMORY;
242 return status;
474 status_t status = TrackBase::initCheck(); local
475 if (status == NO_ERROR && mName == TRACK_NAME_FAILURE) {
476 status = NO_MEMORY;
478 return status;
642 status_t status = mServerProxy->obtainBuffer(&buf); local
653 return status;
712 status_t status = NO_ERROR; local
981 VolumeShaper::Status status = mVolumeHandler->applyVolumeShaper( local
1037 status_t status = DEAD_OBJECT; local
1327 status_t status = Track::start(event, triggerSession); local
1374 status_t status = obtainBuffer(&mOutBuffer, waitTimeLeftMs); local
1473 status_t status = mClientProxy->obtainBuffer(&buf, &timeout); local
1533 status_t status = Track::start(event, triggerSession); local
1548 status_t status = mPeerProxy->obtainBuffer(&buf, &mPeerTimeout); local
1571 status_t status = NO_ERROR; local
1709 status_t status = TrackBase::initCheck(); local
1721 status_t status = mServerProxy->obtainBuffer(&buf); local
1903 status_t status = mPeerProxy->obtainBuffer(&buf, &mPeerTimeout); local
[all...]
/frameworks/base/core/java/android/printservice/
H A DIPrintServiceClient.aidl48 * Set the status of this print job
51 * @param status The new status, can be null
53 void setStatus(in PrintJobId printJobId, in CharSequence status);
56 * Set the status of this print job
59 * @param status The new status as a string resource
62 void setStatusRes(in PrintJobId printJobId, int status, in CharSequence appPackageName);
/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsFL/src/com/android/framework/externalsharedpermsfltestapp/
H A DExternalSharedPermsFLTest.java40 public void onStatusChanged(String provider, int status, Bundle extras) {}
/frameworks/base/libs/androidfw/
H A DDisplayEventDispatcher.cpp45 ALOGW("Failed to initialize display event receiver, status=%d", result);
78 status_t status = mReceiver.requestNextVsync(); local
79 if (status) {
80 ALOGW("Failed to request next vsync, status=%d", status);
81 return status;
144 ALOGW("Failed to get events from display event dispatcher, status=%d", status_t(n));
/frameworks/base/services/core/java/com/android/server/oemlock/
H A DVendorLock.java87 mOemLock.isOemUnlockAllowedByCarrier((status, allowed) -> {
88 requestStatus[0] = status;
135 mOemLock.isOemUnlockAllowedByDevice((status, allowed) -> {
136 requestStatus[0] = status;
/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/vr/libdisplay/include/private/dvr/
H A Ddisplay_client.h23 pdx::Status<std::unique_ptr<Surface>> status; local
25 status.SetValue(std::move(surface));
27 status.SetError(error);
28 return status;
84 // Temporary query for current VR status. Will be removed later.
/frameworks/native/services/sensorservice/hidl/
H A Dutils.h31 Result convertResult(status_t status);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
H A DHSWanMetricsElement.java69 public HSWanMetricsElement(int status, boolean symmetric, boolean capped, long downlinkSpeed, argument
72 mStatus = status;
96 int status = wanInfo & LINK_STATUS_MASK;
106 return new HSWanMetricsElement(status, symmetric, capped, downlinkSpeed, uplinkSpeed,
/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
H A DPhotoBitmapLoaderInterface.java20 public int status; field in class:PhotoBitmapLoaderInterface.BitmapResult
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DTestConferenceEventPackageParser.java42 * <status>connected</status>
49 * {@link ImsConferenceState} parcelable. The {@code status} values expected in the
132 String status = "";
147 status = parser.getText();
154 Log.v(LOG_TAG, "Status: "+status);
159 bundle.putString(ImsConferenceState.STATUS, status);
/frameworks/support/work/integration-tests/testapp/src/main/java/androidx/work/integration/testapp/sherlockholmes/
H A DAnalyzeSherlockHolmesActivity.java94 status -> {
95 boolean loading = (status != null
96 && status.getState() != SUCCEEDED
97 && status.getState() != FAILED);
/frameworks/wilhelm/src/itf/
H A DIEqualizer.cpp68 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/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/base/media/java/android/media/soundtrigger/
H A DSoundTriggerDetector.java207 public abstract void onAvailabilityChanged(int status); argument
267 int status = STATUS_OK;
269 status = mSoundTriggerService.startRecognition(new ParcelUuid(mSoundModelId),
275 return status == STATUS_OK;
283 int status = STATUS_OK;
285 status = mSoundTriggerService.stopRecognition(new ParcelUuid(mSoundModelId),
290 return status == STATUS_OK;
334 public void onError(int status) { argument
335 Slog.d(TAG, "onError()" + status);
/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
H A DBluetoothMidiDevice.java88 public void onDeviceStatusChanged(MidiDeviceServer server, MidiDeviceStatus status) {
99 public void onConnectionStateChange(BluetoothGatt gatt, int status,
113 public void onServicesDiscovered(BluetoothGatt gatt, int status) {
114 if (status == BluetoothGatt.GATT_SUCCESS) {
136 Log.e(TAG, "onServicesDiscovered received: " + status);
144 int status) {
145 Log.d(TAG, "onCharacteristicRead " + status);
171 int status) {
172 Log.d(TAG, "onCharacteristicWrite " + status);
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
H A DA2dpProfileTest.java118 BluetoothCodecStatus status = mock(BluetoothCodecStatus.class);
119 when(mBluetoothA2dpWrapper.getCodecStatus(mDevice)).thenReturn(status);
121 when(status.getCodecConfig()).thenReturn(config);
179 BluetoothCodecStatus status = mock(BluetoothCodecStatus.class);
182 when(mBluetoothA2dpWrapper.getCodecStatus(mDevice)).thenReturn(status);
183 when(status.getCodecsSelectableCapabilities()).thenReturn(configs);
194 BluetoothCodecStatus status = mock(BluetoothCodecStatus.class);
197 when(mBluetoothA2dpWrapper.getCodecStatus(mDevice)).thenReturn(status);
198 when(status.getCodecsSelectableCapabilities()).thenReturn(configs);
/frameworks/base/services/core/jni/
H A Dcom_android_server_HardwarePropertiesManagerService.cpp130 [&list](ThermalStatus status, hidl_vec<CoolingDevice> devices) {
131 if (status.code == ThermalStatusCode::SUCCESS) {
135 status.debugMessage.c_str());
140 ALOGE("getCoolingDevices failed status: %s", ret.description().c_str());
162 [&list](ThermalStatus status, hidl_vec<Temperature> temperatures) {
163 if (status.code == ThermalStatusCode::SUCCESS) {
167 status.debugMessage.c_str());
172 ALOGE("getDeviceTemperatures failed status: %s", ret.description().c_str());
209 [&list](ThermalStatus status, hidl_vec<CpuUsage> cpuUsages) {
210 if (status
[all...]

Completed in 505 milliseconds

<<11121314151617181920>>