Searched defs:result (Results 201 - 225 of 680) sorted by relevance

1234567891011>>

/frameworks/wilhelm/src/objects/
H A DCEngine.c55 SLresult result; local
59 result = err_to_result(err);
60 if (SL_RESULT_SUCCESS != result)
61 return result;
64 result = ThreadPool_init(&thiz->mThreadPool, 0, 0);
65 if (SL_RESULT_SUCCESS != result) {
68 return result;
/frameworks/wilhelm/tests/examples/
H A DslesTestEffectCapabilities.cpp38 void ExitOnErrorFunc( SLresult result , int line)
40 if (SL_RESULT_SUCCESS != result) {
41 fprintf(stderr, "%u error code encountered at line %d, exiting\n", result, line);
70 SLresult result; local
93 result = slCreateEngine( &sl, 1, EngineOption, 1, iidArray, required);
94 ExitOnError(result);
97 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
98 ExitOnError(result);
105 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
106 ExitOnError(result);
156 SLresult result; local
[all...]
/frameworks/wilhelm/tests/listening/
H A DseekTorture.c36 SLresult result; local
40 result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
41 ASSERT_EQ(SL_RESULT_SUCCESS, result);
42 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
43 ASSERT_EQ(SL_RESULT_SUCCESS, result);
45 result = (*engineObject)->GetInterface(engineObject, SL_IID_ENGINE, &engineEngine);
46 ASSERT_EQ(SL_RESULT_SUCCESS, result);
50 result = (*engineEngine)->CreateOutputMix(engineEngine, &outputmixObject, 0, NULL, NULL);
51 ASSERT_EQ(SL_RESULT_SUCCESS, result);
52 result
[all...]
/frameworks/wilhelm/tests/sandbox/
H A Doutputmix.c30 SLresult result; local
31 result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
32 assert(SL_RESULT_SUCCESS == result);
35 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
36 assert(SL_RESULT_SUCCESS == result);
39 result = (*engineObject)->GetInterface(engineObject, SL_IID_ENGINE, &engineEngine);
40 assert(SL_RESULT_SUCCESS == result);
43 result = (*engineEngine)->QueryNumSupportedInterfaces(engineEngine, SL_OBJECTID_OUTPUTMIX,
45 assert(SL_RESULT_SUCCESS == result);
50 result
[all...]
H A Durimime.c37 SLresult result; local
41 result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
42 assert(SL_RESULT_SUCCESS == result);
44 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
45 assert(SL_RESULT_SUCCESS == result);
46 result = (*engineObject)->GetInterface(engineObject, SL_IID_ENGINE, &engineEngine);
47 assert(SL_RESULT_SUCCESS == result);
51 result = (*engineEngine)->CreateOutputMix(engineEngine, &outputMixObject, 0, NULL, NULL);
52 assert(SL_RESULT_SUCCESS == result);
53 result
[all...]
/frameworks/av/drm/libdrmframework/plugins/common/util/src/
H A DMimeTypeUtil.cpp126 String8 result = mimeType; local
152 result = String8(pMimeItem->pMimeType);
159 result = String8(mime_type_unsupported);
162 pMimeType, result.string());
164 return result;
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common/
H A DFwdLockGlue.c51 int result = TRUE; local
55 result = FALSE;
62 result = FALSE;
70 return result;
152 int result = FALSE; local
164 result = TRUE;
167 return result;
174 int result = FALSE; local
186 result = FwdLockGlue_ValidatePadding(pData, decryptedKeyLength);
190 return result;
[all...]
/frameworks/av/include/media/
H A DJetPlayer.h110 int result; local
111 result = mPlayer->render();
/frameworks/av/media/libmedia/
H A DAudioParameter.cpp143 status_t result = get(key, str8); local
145 if (result == NO_ERROR) {
150 result = INVALID_OPERATION;
153 return result;
159 status_t result = get(key, str8); local
161 if (result == NO_ERROR) {
166 result = INVALID_OPERATION;
169 return result;
H A DMemoryLeakTrackUtil.cpp79 MyString8 result; local
99 result.append(buffer);
101 result.append(buffer);
147 write(fd, result.string(), result.size());
148 result.clear();
154 result.append(buffer);
157 result.append(", ");
160 result.append(buffer);
162 result
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.cpp64 String8 result; local
65 result.append(" MetadataRetrieverClient\n");
67 result.append(buffer);
68 write(fd, result.string(), result.size());
125 // eventually encapsulate the result of this selection. In this case, just
H A DMidiFile.h101 int result; local
102 result = mMidiFile->render();
/frameworks/av/media/libstagefright/
H A DStagefrightMediaScanner.cpp73 EAS_RESULT result = EAS_Init(&easData); local
74 if (result == EAS_SUCCESS) {
80 result = EAS_OpenFile(easData, &file, &easHandle);
82 if (result == EAS_SUCCESS) {
83 result = EAS_Prepare(easData, easHandle);
85 if (result == EAS_SUCCESS) {
86 result = EAS_ParseMetaData(easData, easHandle, &temp);
95 if (result != EAS_SUCCESS) {
115 MediaScanResult result = processFileInternal(path, mimeType, client); local
117 return result;
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Dbasicop2.c88 | the 16 bit result is set at +32767 when overflow occurs or at -32768 |
135 | ration; the 16 bit result is set at +32767 when overflow occurs or at |
232 | the var2 LSB of the result. If var2 is negative, arithmetically shift |
233 | var1 right by -var2 with sign extension. Saturate the result in case of |
264 Word32 result; local
274 result = (Word32) var1 *((Word32) 1 << var2);
276 if ((var2 > 15 && var1 != 0) || (result != (Word32) ((Word16) result)))
283 var_out = extract_l(result);
300 | -var2 with sign extension. Saturate the result i
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
H A Dbasic_op_arm_gcc_v5.h125 Word32 result; local
130 : "=r"(result)
133 return (result);
162 Word32 result; local
167 : "=r"(result)
171 return (result);
195 result = 32-bit result of L_var3 + (var1 * var2)(Word32)
202 Word32 result; local
207 : "=r"(result)
245 Word32 result; local
292 Word32 result; local
337 register Word32 L_product, result; local
422 Word32 result, L_product; local
506 Word32 result; local
520 Word32 result; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/
H A DomxVCCOMM_ExpandFrame_I_s.s65 result RN 0 label
193 MOV result,#OMX_Sts_NoErr
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
H A DomxVCCOMM_ExpandFrame_I_s.s72 result RN 0 label
/frameworks/av/media/mtp/
H A DMtpPacket.cpp156 int result = usb_device_bulk_transfer(request->dev, local
161 request->actual_length = result;
162 return result;
H A DMtpProperty.cpp544 MtpPropertyValue* result = new MtpPropertyValue[length]; local
546 if (!readValue(packet, result[i])) {
547 delete result;
550 return result;
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DFrameProcessor.cpp261 // Get 3A states from result metadata
329 bool FrameProcessor::get3aResult(const CameraMetadata& result, int32_t tag, argument
338 entry = result.find(tag);
/frameworks/av/services/camera/libcameraservice/common/
H A DFrameProcessorBase.cpp89 String8 result(" Latest received frame:\n");
90 write(fd, result.string(), result.size());
124 CaptureResult result; local
128 while ( (res = device->getNextResult(&result)) == OK) {
131 // this from result.mResultExtras when CameraDeviceBase interface is fixed.
134 entry = result.mMetadata.find(ANDROID_REQUEST_FRAME_COUNT);
142 if (!processSingleFrame(result, device)) {
146 if (!result.mMetadata.isEmpty()) {
148 mLastFrame.acquire(result
160 processSingleFrame(CaptureResult &result, const sp<CameraDeviceBase> &device) argument
167 processListeners(const CaptureResult &result, const sp<CameraDeviceBase> &device) argument
[all...]
/frameworks/base/core/java/android/app/backup/
H A DRestoreSession.java219 public void restoreSetsAvailable(RestoreSet[] result) { argument
221 mHandler.obtainMessage(MSG_RESTORE_SETS_AVAILABLE, result));
/frameworks/base/core/java/android/content/
H A DAsyncQueryHandler.java55 public Object result; field in class:AsyncQueryHandler.WorkerArgs
92 args.result = cursor;
96 args.result = resolver.insert(args.uri, args.values);
100 args.result = resolver.update(args.uri, args.values, args.selection,
105 args.result = resolver.delete(args.uri, args.selection, args.selectionArgs);
187 * result in a call to on[Query/Insert/Update/Delete]Complete after this
310 * @param result the result returned from the update operation
312 protected void onUpdateComplete(int token, Object cookie, int result) { argument
323 * @param result th
325 onDeleteComplete(int token, Object cookie, int result) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraCaptureSession.java482 * {@link CaptureResult#SENSOR_TIMESTAMP the result timestamp field},
522 * <p>The result provided here will contain some subset of the fields of
523 * a full result. Multiple onCapturePartial calls may happen per
524 * capture; a given result field will only be present in one partial
533 * @param result The partial output metadata from the capture, which
544 CaptureRequest request, CaptureResult result) {
552 * <p>The result provided here will contain some subset of the fields of
553 * a full result. Multiple {@link #onCaptureProgressed} calls may happen per
554 * capture; a given result field will only be present in one partial
557 * the partial results composing the total result)
543 onCapturePartial(CameraCaptureSession session, CaptureRequest request, CaptureResult result) argument
613 onCaptureCompleted(CameraCaptureSession session, CaptureRequest request, TotalCaptureResult result) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCallbackProxies.java107 CaptureRequest request, CaptureResult result) {
108 mProxy.invoke("onCapturePartial", camera, request, result);
119 CaptureRequest request, TotalCaptureResult result) {
120 mProxy.invoke("onCaptureCompleted", camera, request, result);
106 onCapturePartial(CameraDevice camera, CaptureRequest request, CaptureResult result) argument
118 onCaptureCompleted(CameraDevice camera, CaptureRequest request, TotalCaptureResult result) argument

Completed in 8789 milliseconds

1234567891011>>