Searched refs:status (Results 26 - 50 of 648) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/provider/
H A DDownloads.java208 * The name of the column containing the current status of the download.
214 public static final String COLUMN_STATUS = "status";
218 * status changed in the download. Stored as a System.currentTimeMillis()
516 * Returns whether the status is informational (i.e. 1xx).
518 public static boolean isStatusInformational(int status) { argument
519 return (status >= 100 && status < 200);
523 * Returns whether the status is a success (i.e. 2xx).
525 public static boolean isStatusSuccess(int status) { argument
526 return (status >
532 isStatusError(int status) argument
539 isStatusClientError(int status) argument
546 isStatusServerError(int status) argument
565 isStatusCompleted(int status) argument
729 statusToString(int status) argument
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothGattCallback.aidl28 void onClientRegistered(in int status, in int clientIf);
29 void onClientConnectionState(in int status, in int clientIf,
33 void onSearchComplete(in String address, in List<BluetoothGattService> services, in int status);
34 void onCharacteristicRead(in String address, in int status, in int handle, in byte[] value);
35 void onCharacteristicWrite(in String address, in int status, in int handle);
36 void onExecuteWrite(in String address, in int status);
37 void onDescriptorRead(in String address, in int status, in int handle, in byte[] value);
38 void onDescriptorWrite(in String address, in int status, in int handle);
40 void onReadRemoteRssi(in String address, in int rssi, in int status);
41 void onMultiAdvertiseCallback(in int status, boolea
[all...]
H A DBluetoothGattCallbackWrapper.java35 public void onClientRegistered(int status, int clientIf) throws RemoteException { argument
39 public void onClientConnectionState(int status, int clientIf, boolean connected, String address) argument
53 int status) throws RemoteException {
57 public void onCharacteristicRead(String address, int status, int handle, byte[] value) argument
62 public void onCharacteristicWrite(String address, int status, int handle) throws RemoteException { argument
66 public void onExecuteWrite(String address, int status) throws RemoteException { argument
70 public void onDescriptorRead(String address, int status, int handle, byte[] value) throws RemoteException { argument
74 public void onDescriptorWrite(String address, int status, int handle) throws RemoteException { argument
82 public void onReadRemoteRssi(String address, int rssi, int status) throws RemoteException { argument
86 public void onMultiAdvertiseCallback(int status, boolea argument
52 onSearchComplete(String address, List<BluetoothGattService> services, int status) argument
91 onConfigureMTU(String address, int mtu, int status) argument
[all...]
/frameworks/av/soundtrigger/
H A DISoundTriggerHwService.cpp63 status_t status = remote()->transact(LIST_MODULES, data, &reply); local
64 if (status == NO_ERROR) {
65 status = (status_t)reply.readInt32();
68 ALOGV("listModules() status %d got *numModules %d", status, *numModules);
69 if (status == NO_ERROR) {
77 return status;
88 status_t status = remote()->transact(ATTACH, data, &reply); local
89 if (status != NO_ERROR) {
90 return status;
104 status_t status = remote()->transact(SET_CAPTURE_STATE, data, &reply); local
136 status_t status = listModules(modules, &numModules); local
159 status_t status = attach(handle, client, module); local
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.c241 * @return A status code.
244 FwdLockConv_Status_t status; local
253 status = FwdLockConv_Status_OutOfMemory;
257 status = FwdLockConv_Status_ProgramError;
264 status = FwdLockConv_Status_ProgramError;
271 status = FwdLockConv_Status_OK;
277 return status;
312 * @return A status code.
331 * @return A status code.
335 FwdLockConv_Status_t status local
472 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
529 FwdLockConv_Status_t status; local
551 FwdLockConv_Status_t status; local
598 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
870 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
938 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
1079 FwdLockConv_Status_t status; local
1112 FwdLockConv_Status_t status; local
1172 FwdLockConv_Status_t status; local
1202 FwdLockConv_Status_t status; local
1256 FwdLockConv_Status_t status; local
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dheader.cpp31 AVCEnc_Status status = AVCENC_SUCCESS; local
35 status = BitstreamWriteBits(stream, 8, seqParam->profile_idc);
36 status = BitstreamWrite1Bit(stream, seqParam->constrained_set0_flag);
37 status = BitstreamWrite1Bit(stream, seqParam->constrained_set1_flag);
38 status = BitstreamWrite1Bit(stream, seqParam->constrained_set2_flag);
39 status = BitstreamWrite1Bit(stream, seqParam->constrained_set3_flag);
40 status = BitstreamWriteBits(stream, 4, 0); /* forbidden zero bits */
41 if (status != AVCENC_SUCCESS) /* we can check after each write also */
43 return status;
46 status
230 AVCEnc_Status status = AVCENC_SUCCESS; local
322 AVCEnc_Status status = AVCENC_SUCCESS; local
510 AVCEnc_Status status = AVCENC_SUCCESS; local
590 AVCEnc_Status status = AVCENC_SUCCESS; local
[all...]
/frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
H A DInstrumentationAutomationSupport.java37 public void sendStatus(int resultCode, Bundle status) { argument
38 mInstrumentation.sendStatus(resultCode, status);
/frameworks/base/core/java/android/hardware/hdmi/
H A DIHdmiDeviceEventListener.aidl23 * the CEC logical device status change event.
31 * status has changed
32 * @param status device status. It should be one of the following values
39 void onStatusChanged(in HdmiDeviceInfo deviceInfo, in int status);
/frameworks/base/location/java/android/location/
H A DIGnssMeasurementsListener.aidl26 void onStatusChanged(in int status);
H A DIGnssNavigationMessageListener.aidl26 void onStatusChanged(in int status);
/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/opt/telephony/src/java/com/android/internal/telephony/
H A DCallForwardInfo.java27 public int status; /*1 = active, 0 = not active */ field in class:CallForwardInfo
36 return super.toString() + (status == 0 ? " not active " : " active ")
/frameworks/native/libs/gui/
H A DStreamSplitter.cpp49 status_t status = splitter->mInput->consumerConnect(splitter, false); local
50 if (status == NO_ERROR) {
54 return status;
85 status_t status = outputQueue->connect(listener, NATIVE_WINDOW_API_CPU, local
87 if (status != NO_ERROR) {
88 ALOGE("addOutput: failed to connect (%d)", status);
89 return status;
128 status_t status = mInput->acquireBuffer(&bufferItem, /* presentWhen */ 0); local
129 LOG_ALWAYS_FATAL_IF(status != NO_ERROR,
130 "acquiring buffer from input failed (%d)", status);
194 status_t status = from->detachNextBuffer(&buffer, &fence); local
[all...]
/frameworks/av/services/audioflinger/
H A DAudioStreamOut.cpp55 status_t status = stream->get_render_position(stream, &halPosition); local
56 if (status != NO_ERROR) {
57 return status;
71 return status;
78 status_t status = getRenderPosition(&position64); local
79 if (status == NO_ERROR) {
82 return status;
92 status_t status = stream->get_presentation_position(stream, &halPosition, timestamp); local
93 if (status != NO_ERROR) {
94 return status;
124 int status = hwDev()->open_output_stream( local
[all...]
H A DAudioHwDevice.cpp53 status_t status = outputStream->open(handle, devices, config, address); local
55 if (status != NO_ERROR) {
64 "channelMask %#x, status %d",
68 status);
78 status = outputStream->open(handle, devices, &originalConfig, address);
79 if (status != NO_ERROR) {
81 status);
93 return status;
/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/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestSetNotificationRegistration.java32 public BluetoothMasRequestSetNotificationRegistration(boolean status) { argument
33 mStatus = status;
39 oap.add(OAP_TAGID_NOTIFICATION_STATUS, status ? NOTIFICATION_ON : NOTIFICATION_OFF);
/frameworks/av/radio/
H A DIRadioService.cpp63 status_t status = remote()->transact(LIST_MODULES, data, &reply); local
64 if (status == NO_ERROR) {
65 status = (status_t)reply.readInt32();
68 ALOGV("listModules() status %d got *numModules %d", status, *numModules);
69 if (status == NO_ERROR) {
77 return status;
99 status_t status = remote()->transact(ATTACH, data, &reply); local
100 if (status != NO_ERROR) {
101 return status;
135 status_t status = listModules(properties, &numModules); local
165 status_t status = attach(handle, client, configPtr, withAudio, radio); local
[all...]
/frameworks/base/location/lib/java/com/android/location/provider/
H A DFusedLocationHardwareSink.java55 * Called when the status changes in the underlying FLP HAL
60 * @param status One of FLP_STATUS_LOCATION_AVAILABLE or
64 public void onStatusChanged(int status) { argument
/frameworks/base/drm/java/android/drm/
H A DDrmOutputStream.java69 final DrmConvertedStatus status = mClient.closeConvertSession(mSessionId);
70 if (status.statusCode == STATUS_OK) {
72 Os.lseek(mFd, status.offset, SEEK_SET);
76 IoBridge.write(mFd, status.convertedData, 0, status.convertedData.length);
79 throw new IOException("Unexpected DRM status: " + status.statusCode);
104 final DrmConvertedStatus status = mClient.convertData(mSessionId, exactBuffer);
105 if (status.statusCode == STATUS_OK) {
106 IoBridge.write(mFd, status
[all...]
/frameworks/base/core/java/android/content/pm/
H A DIPackageMoveObserver.aidl28 void onStatusChanged(int moveId, int status, long estMillis);
/frameworks/base/core/java/android/hardware/location/
H A DIFusedLocationHardwareSink.aidl49 * Event generated from FLP HAL when the status of location batching
52 void onStatusChanged(int status) = 3;
/frameworks/base/core/jni/
H A Dandroid_media_AudioErrors.h23 // status codes used by JAVA APIs. Translation from native error codes is done by
38 static inline jint nativeToJavaStatus(status_t status) { argument
39 switch (status) {
/frameworks/base/core/tests/coretests/apks/install_jni_lib/
H A Dcom_android_frameworks_coretests_JNITest.cpp42 int status; local
49 if ((status = android::register_com_android_frameworks_coretests_JNITests(e)) < 0) {

Completed in 1078 milliseconds

1234567891011>>