Searched defs:status (Results 26 - 50 of 380) sorted by relevance

1234567891011>>

/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/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/rs/driver/
H A DrsdFrameBufferObj.cpp50 GLenum status; local
51 status = glCheckFramebufferStatus(GL_FRAMEBUFFER);
52 switch (status) {
/frameworks/wilhelm/src/itf/
H A DIPresetReverb.c51 android::status_t status = android_prev_setPreset(thiz->mPresetReverbEffect, preset); local
52 result = android_fx_statusToResult(status);
83 android::status_t status = android_prev_getPreset(thiz->mPresetReverbEffect, &preset); local
84 result = android_fx_statusToResult(status);
H A DIAcousticEchoCancellation.c42 android::status_t status = thiz->mAECEffect->setEnabled((bool) thiz->mEnabled); local
43 result = android_fx_statusToResult(status);
H A DIAutomaticGainControl.c41 android::status_t status = thiz->mAGCEffect->setEnabled((bool) thiz->mEnabled); local
42 result = android_fx_statusToResult(status);
H A DINoiseSuppression.c40 android::status_t status = thiz->mNSEffect->setEnabled((bool) thiz->mEnabled); local
41 result = android_fx_statusToResult(status);
/frameworks/av/media/libmedia/
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;
H A DIMediaLogService.cpp48 status_t status = remote()->transact(REGISTER_WRITER, data, &reply); local
49 // FIXME ignores status
56 status_t status = remote()->transact(UNREGISTER_WRITER, data, &reply); local
57 // FIXME ignores status
H A DSoundPoolThread.cpp107 status_t status = -1; local
109 status = sample->doLoad();
111 mSoundPool->notify(SoundPoolEvent(SoundPoolEvent::SAMPLE_LOADED, sampleID, 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/base/core/java/android/bluetooth/
H A DBluetoothGattCallback.java29 * @param status Status of the connect or disconnect operation.
35 public void onConnectionStateChange(BluetoothGatt gatt, int status, argument
44 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the remote device
47 public void onServicesDiscovered(BluetoothGatt gatt, int status) { argument
56 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the read operation
60 int status) {
75 * @param status The result of the write operation
79 BluetoothGattCharacteristic characteristic, int status) {
99 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the read operation
103 int status) {
59 onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) argument
78 onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) argument
102 onDescriptorRead(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) argument
115 onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) argument
126 onReliableWriteCompleted(BluetoothGatt gatt, int status) argument
139 onReadRemoteRssi(BluetoothGatt gatt, int rssi, int status) argument
153 onMtuChanged(BluetoothGatt gatt, int mtu, int status) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_text_AndroidBidi.cpp39 UErrorCode status = U_ZERO_ERROR; local
40 UBiDi* bidi = ubidi_openSized(n, 0, &status);
41 ubidi_setPara(bidi, chs, n, dir, NULL, &status);
42 if (U_SUCCESS(status)) {
/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/services/core/java/com/android/server/location/
H A DGpsMeasurementsProvider.java52 int status = isGpsMeasurementsSupported ?
55 setSupported(isGpsMeasurementsSupported, new StatusChangedOperation(status));
60 final int status;
63 status = GpsMeasurementsEvent.STATUS_READY;
68 status = GpsMeasurementsEvent.STATUS_NOT_SUPPORTED;
71 status = GpsMeasurementsEvent.STATUS_GPS_LOCATION_DISABLED;
77 return new StatusChangedOperation(status);
82 int status = enabled ?
85 foreach(new StatusChangedOperation(status));
91 public StatusChangedOperation(int status) { argument
[all...]
H A DGpsNavigationMessageProvider.java53 int status = isGpsNavigationMessageSupported ?
56 setSupported(isGpsNavigationMessageSupported, new StatusChangedOperation(status));
61 final int status;
64 status = GpsNavigationMessageEvent.STATUS_READY;
69 status = GpsNavigationMessageEvent.STATUS_NOT_SUPPORTED;
72 status = GpsNavigationMessageEvent.STATUS_GPS_LOCATION_DISABLED;
78 return new StatusChangedOperation(status);
83 int status = enabled ?
86 foreach(new StatusChangedOperation(status));
93 public StatusChangedOperation(int status) { argument
[all...]
/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/native/cmds/servicemanager/
H A Dbctest.c36 int status; local
49 status = bio_get_uint32(&reply);
53 return status;
/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/google/android/mms/pdu/
H A DNotifyRespInd.java31 * @param status the status value
38 int status) throws InvalidHeaderValueException {
43 setStatus(status);
36 NotifyRespInd(int mmsVersion, byte[] transactionId, int status) argument
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.cpp125 status_t status = parseUrl(); local
127 if (OK != status) {
129 return status;
/frameworks/av/media/libnbaio/
H A DAudioBufferProviderSource.cpp58 status_t status = mProvider->getNextBuffer(&mBuffer, readPTS); local
59 if (status != OK) {
60 return status == NOT_ENOUGH_DATA ? (ssize_t) WOULD_BLOCK : (ssize_t) status;
105 status_t status = mProvider->getNextBuffer(&mBuffer, readPTS); local
106 if (CC_LIKELY(status == OK)) {
113 if (CC_LIKELY(status == NOT_ENOUGH_DATA)) {
114 status = WOULD_BLOCK;
116 return accumulator > 0 ? accumulator : (ssize_t) status;
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dbitstream_io.cpp147 AVCEnc_Status status = AVCENC_SUCCESS; local
165 status = AVCBitstreamSaveWord(stream);
166 return status;
177 status = AVCBitstreamSaveWord(stream); /* save current word */
184 return status;
199 AVCEnc_Status status; local
210 status = AVCBitstreamSaveWord(stream);
211 return status;
231 AVCEnc_Status status; local
238 status
[all...]

Completed in 2999 milliseconds

1234567891011>>