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

1234567891011>>

/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_framework_coretests_JNITests(e)) < 0) {
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvop.cpp82 PV_STATUS status; local
101 status = BitstreamShowBits32HC(stream, &startCode);
138 status = BitstreamShowBits32HC(stream, &tmpvar);
142 status = DecodeUserData(stream);
143 if (status != PV_SUCCESS) return PV_FAIL;
152 status = PVSearchNextM4VFrame(stream); /* search 0x00 0x00 0x01 */
153 if (status != PV_SUCCESS) return PV_FAIL; /* breaks the loop */
204 status = PVSearchNextM4VFrame(stream); /* search 0x00 0x00 0x01 */
205 if (status != PV_SUCCESS) return PV_FAIL; /* breaks the loop */
214 status
804 PV_STATUS status = PV_SUCCESS; local
1014 PV_STATUS status = PV_SUCCESS; local
1526 PV_STATUS status; local
[all...]
H A Dbitstream.cpp177 PV_STATUS status = PV_SUCCESS; local
182 status = BitstreamFillCache(stream);
185 return status;
195 PV_STATUS status = PV_SUCCESS; local
200 status = BitstreamFillCache(stream);
203 return status;
217 PV_STATUS status = PV_SUCCESS; local
223 status = BitstreamFillCache(stream);
227 return status;
240 PV_STATUS status local
259 PV_STATUS status = PV_SUCCESS; local
273 PV_STATUS status; local
288 PV_STATUS status = PV_SUCCESS; local
357 PV_STATUS status = PV_SUCCESS; local
424 PV_STATUS status = PV_SUCCESS; local
443 PV_STATUS status = PV_SUCCESS; local
462 PV_STATUS status = PV_SUCCESS; local
605 PV_STATUS status = PV_SUCCESS; local
634 PV_STATUS status = PV_SUCCESS; local
684 PV_STATUS status = PV_SUCCESS; local
708 PV_STATUS status = PV_SUCCESS; local
787 PV_STATUS status; local
878 PV_STATUS status; local
952 PV_STATUS status; local
[all...]
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/jni/
H A Dandroid_view_InputEventReceiver.cpp122 status_t status = mInputConsumer.sendFinishedSignal(seq, handled); local
123 if (status) {
124 if (status == WOULD_BLOCK) {
138 ALOGW("Failed to send finished signal on channel '%s'. status=%d",
139 getInputChannelName(), status);
141 return status;
170 status_t status = consumeEvents(env, false /*consumeBatches*/, -1); local
172 return status == OK || status == NO_MEMORY ? 1 : 0;
178 status_t status local
232 status_t status = mInputConsumer.consume(&mInputEventFactory, local
342 status_t status = receiver->initialize(); local
365 status_t status = receiver->finishInputEvent(seq, handled); local
377 status_t status = receiver->consumeEvents(env, true /*consumeBatches*/, frameTimeNanos); local
[all...]
H A Dandroid_view_InputEventSender.cpp115 status_t status = mInputPublisher.publishKeyEvent(publishedSeq, local
119 if (status) {
120 ALOGW("Failed to send key event on channel '%s'. status=%d",
121 getInputChannelName(), status);
122 return status;
136 status_t status = mInputPublisher.publishMotionEvent(publishedSeq, local
144 if (status) {
145 ALOGW("Failed to send motion event sample on channel '%s'. status=%d",
146 getInputChannelName(), status);
147 return status;
173 status_t status = receiveFinishedSignals(env); local
188 status_t status = mInputPublisher.receiveFinishedSignal(&publishedSeq, &handled); local
250 status_t status = sender->initialize(); local
275 status_t status = sender->sendKeyEvent(seq, &event); local
284 status_t status = sender->sendMotionEvent(seq, event); local
[all...]
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/media/mca/filterfw/java/android/filterfw/core/
H A DAsyncRunner.java47 public int status = RESULT_UNKNOWN; field in class:AsyncRunner.RunnerResult
75 result.status = RESULT_RUNNING;
76 while (!isCancelled() && result.status == RESULT_RUNNING) {
78 result.status = runner[0].determinePostRunState();
79 if (result.status == GraphRunner.RESULT_SLEEPING) {
81 result.status = RESULT_RUNNING;
88 result.status = RESULT_STOPPED;
92 result.status = RESULT_ERROR;
100 result.status = RESULT_ERROR;
119 result.status
[all...]
/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;
72 status_t status = remote()->transact(GET_CBLK, data, &reply); local
73 if (status == NO_ERROR) {
H A DMediaScannerClient.cpp141 UErrorCode status = U_ZERO_ERROR; local
143 UConverter *conv = ucnv_open(enc, &status);
144 if (U_FAILURE(status)) {
148 UConverter *utf8Conv = ucnv_open("UTF-8", &status);
149 if (U_FAILURE(status)) {
182 &source, (const char *)dest, NULL, NULL, NULL, NULL, TRUE, TRUE, &status);
183 if (U_FAILURE(status)) {
184 ALOGE("ucnv_convertEx failed: %d", status);
216 status_t status = handleStringTag(mNames->getEntry(i), mValues->getEntry(i)); local
217 if (status) {
[all...]
/frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/common/helpers/
H A DAppHelperBase.java72 int status = p.waitFor();
73 if (status != 0) {
74 System.err.println(String.format("Run shell command: %s, status: %s", command,
75 status));
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dresidual.cpp22 AVCEnc_Status status = AVCENC_SUCCESS; local
58 status = BitstreamWriteBits(stream, 32, code);
67 status = BitstreamWriteBits(stream, 16, code);
74 if (status != AVCENC_SUCCESS) /* check only once per line */
75 return status;
91 status = BitstreamWriteBits(stream, 32, code);
100 status = BitstreamWriteBits(stream, 16, code);
108 if (status != AVCENC_SUCCESS) /* check only once per line */
109 return status;
124 status
147 AVCEnc_Status status = AVCENC_SUCCESS; local
[all...]
/frameworks/base/core/java/android/os/storage/
H A DIObbActionListener.java74 int status;
75 status = data.readInt();
76 this.onObbResult(filename, nonce, status);
104 * @param returnCode status of the operation
106 public void onObbResult(String filename, int nonce, int status) argument
114 _data.writeInt(status);
133 * @param status status code as defined in {@link OnObbStateChangeListener}
135 public void onObbResult(String filename, int nonce, int status) throws RemoteException; argument
/frameworks/base/libs/androidfw/tests/
H A DInputPublisherAndConsumer_test.cpp70 status_t status; local
84 status = mPublisher->publishKeyEvent(seq, deviceId, source, action, flags,
86 ASSERT_EQ(OK, status)
91 status = mConsumer->consume(&mEventFactory, true /*consumeBatches*/, -1, &consumeSeq, &event);
92 ASSERT_EQ(OK, status)
113 status = mConsumer->sendFinishedSignal(seq, true);
114 ASSERT_EQ(OK, status)
119 status = mPublisher->receiveFinishedSignal(&finishedSeq, &handled);
120 ASSERT_EQ(OK, status)
129 status_t status; local
252 status_t status; local
264 status_t status; local
[all...]
/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/base/core/java/android/bluetooth/
H A DIBluetoothGattCallback.aidl26 void onClientRegistered(in int status, in int clientIf);
27 void onClientConnectionState(in int status, in int clientIf,
43 void onSearchComplete(in String address, in int status);
44 void onCharacteristicRead(in String address, in int status, in int srvcType,
48 void onCharacteristicWrite(in String address, in int status, in int srvcType,
51 void onExecuteWrite(in String address, in int status);
52 void onDescriptorRead(in String address, in int status, in int srvcType,
56 void onDescriptorWrite(in String address, in int status, in int srvcType,
64 void onReadRemoteRssi(in String address, in int rssi, in int status);
/frameworks/base/location/java/android/location/
H A DILocationListener.aidl29 void onStatusChanged(String provider, int status, in Bundle extras);
H A DLocationListener.java47 * Called when the provider status changes. This method is called when
53 * @param status {@link LocationProvider#OUT_OF_SERVICE} if the
60 * status variables.
70 void onStatusChanged(String provider, int status, Bundle extras); argument
/frameworks/wilhelm/src/itf/
H A DIEnvironmentalReverb.c59 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
61 result = android_fx_statusToResult(status);
86 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
88 result = android_fx_statusToResult(status);
120 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
122 result = android_fx_statusToResult(status);
148 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
150 result = android_fx_statusToResult(status);
179 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
181 result = android_fx_statusToResult(status);
207 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
238 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
266 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
299 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
327 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
358 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
386 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
419 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
447 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
478 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
506 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
537 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
565 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
596 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
624 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
680 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect, local
708 android::status_t status = android_erev_getParam(thiz->mEnvironmentalReverbEffect, local
[all...]
/frameworks/av/camera/
H A DICameraServiceListener.cpp44 virtual void onStatusChanged(Status status, int32_t cameraId) argument
50 data.writeInt32(static_cast<int32_t>(status));
72 Status status = static_cast<Status>(data.readInt32()); local
75 onStatusChanged(status, cameraId);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_vlc.c216 BIG_CODE_NUM and returning HANTRO_NOK status.
235 u32 status, codeNum = 0; local
242 status = h264bsdDecodeExpGolombUnsigned(pStrmData, &codeNum);
246 /* BIG_CODE_NUM and HANTRO_OK status means codeNum 2^32-1 which would
249 if (status == HANTRO_OK)
251 /* BIG_CODE_NUM and HANTRO_NOK status means codeNum 2^32 which results
259 else if (status == HANTRO_OK)
306 u32 status, codeNum; local
313 status = h264bsdDecodeExpGolombUnsigned(pStrmData, &codeNum);
315 if (status !
[all...]
/frameworks/base/libs/androidfw/
H A DVirtualKeyMap.cpp52 status_t status = Tokenizer::open(filename, &tokenizer); local
53 if (status) {
54 ALOGE("Error %d opening virtual key map file %s.", status, filename.string());
59 status = NO_MEMORY;
65 status = parser.parse();
72 if (status) {
80 return status;
/frameworks/av/media/libstagefright/
H A DStagefrightMediaScanner.cpp100 status_t status = client->addStringTag("duration", buffer); local
101 if (status != OK) {
147 status_t status; local
150 status = mRetriever->setDataSource(path);
152 status = mRetriever->setDataSource(fd, 0, 0x7ffffffffffffffL);
156 if (status) {
163 status = client.setMimeType(value);
164 if (status) {
195 status = client.addStringTag(kKeyMap[i].tag, value);
196 if (status !
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dcombined_encode.cpp39 PV_STATUS status = PV_SUCCESS; local
119 status = EncodeGOBHeader(video, slice_counter, QP, 0); //ind_y /* Encode GOB Header */
148 status = EncodeVideoPacketHeader(video, mbnum, video->QP_prev, 0);
159 status = (*CodeMB)(video, &fastDCTfunction, (offset << 5) + QP, ncoefblck);
182 status = BitstreamAppendPacket(currVol->stream, bs1); /* Put Packet to Buffer */
183 /* continue even if status == PV_END_OF_BUF, to get the stats */
192 status = BitstreamAppendEnc(currVol->stream, bs1); /* Initialize to 0 */
193 /* continue even if status == PV_END_OF_BUF, to get the stats */
201 status = BitstreamAppendEnc(currVol->stream, bs1); /* Initialize to 0 */
202 /* continue even if status
264 PV_STATUS status = PV_SUCCESS; local
683 PV_STATUS status = PV_SUCCESS; local
[all...]
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp91 status_t status = DRM_ERROR_UNKNOWN; local
93 status = getDrmManagerService()->installDrmEngine(uniqueId, drmEngineFile);
95 return status;
181 status_t status = DRM_ERROR_UNKNOWN; local
183 status = getDrmManagerService()->consumeRights(
186 return status;
192 status_t status = DRM_ERROR_UNKNOWN; local
194 status = getDrmManagerService()->setPlaybackStatus(
197 return status;
212 status_t status local
249 status_t status = DRM_ERROR_UNKNOWN; local
282 status_t status = DRM_ERROR_UNKNOWN; local
293 status_t status = DRM_ERROR_UNKNOWN; local
305 status_t status = DRM_ERROR_UNKNOWN; local
317 status_t status = DRM_ERROR_UNKNOWN; local
[all...]

Completed in 875 milliseconds

1234567891011>>