Searched defs:result (Results 176 - 200 of 523) sorted by relevance

1234567891011>>

/frameworks/av/include/media/
H A DJetPlayer.h110 int result; local
111 result = mPlayer->render();
/frameworks/av/media/libmedia/
H A DAudioParameter.cpp142 status_t result = get(key, str8); local
144 if (result == NO_ERROR) {
149 result = INVALID_OPERATION;
152 return result;
158 status_t result = get(key, str8); local
160 if (result == NO_ERROR) {
165 result = INVALID_OPERATION;
168 return result;
H A DICrypto.cpp139 ssize_t result = reply.readInt32(); local
141 if (result >= ERROR_DRM_VENDOR_MIN && result <= ERROR_DRM_VENDOR_MAX) {
145 if (!secure && result >= 0) {
146 reply.read(dstPtr, result);
149 return result;
258 ssize_t result = decrypt( local
268 reply->writeInt32(result);
270 if (result >= ERROR_DRM_VENDOR_MIN
271 && result <
[all...]
H A DMediaScanner.cpp102 MediaScanResult result = doProcessDirectory(pathBuffer, pathRemaining, client, false); local
106 return result;
160 MediaScanResult result = MEDIA_SCAN_RESULT_OK; local
164 result = MEDIA_SCAN_RESULT_ERROR;
169 return result;
223 MediaScanResult result = doProcessDirectory(path, pathRemaining - nameLength - 1, local
225 if (result == MEDIA_SCAN_RESULT_ERROR) {
H A DMediaScannerClient.cpp97 uint32_t result = kEncodingAll; local
114 result &= findPossibleEncodings(ch);
119 return result;
H A DMemoryLeakTrackUtil.cpp74 MyString8 result; local
94 result.append(buffer);
96 result.append(buffer);
146 result.append(buffer);
149 result.append(", ");
152 result.append(buffer);
154 result.append("\n");
161 write(fd, result.string(), result.size());
/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.cpp63 String8 result; local
64 result.append(" MetadataRetrieverClient\n");
66 result.append(buffer);
67 write(fd, result.string(), result.size());
122 // eventually encapsulate the result of this selection. In this case, just
H A DMidiFile.h99 int result; local
100 result = mMidiFile->render();
/frameworks/av/media/libstagefright/
H A DStagefrightMediaScanner.cpp72 EAS_RESULT result = EAS_Init(&easData); local
73 if (result == EAS_SUCCESS) {
79 result = EAS_OpenFile(easData, &file, &easHandle);
81 if (result == EAS_SUCCESS) {
82 result = EAS_Prepare(easData, easHandle);
84 if (result == EAS_SUCCESS) {
85 result = EAS_ParseMetaData(easData, easHandle, &temp);
94 if (result != EAS_SUCCESS) {
114 MediaScanResult result = processFileInternal(path, mimeType, client); local
116 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.s51 result RN 0 label
179 MOV result,#OMX_Sts_NoErr
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
H A DomxVCCOMM_ExpandFrame_I_s.s58 result RN 0 label
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp183 void AnotherPacketSource::signalEOS(status_t result) { argument
184 CHECK(result != OK);
187 mEOSResult = result;
/frameworks/av/media/mtp/
H A DMtpDataPacket.cpp56 uint16_t result = (uint16_t)mBuffer[offset] | ((uint16_t)mBuffer[offset + 1] << 8); local
58 return result;
63 uint32_t result = (uint32_t)mBuffer[offset] | ((uint32_t)mBuffer[offset + 1] << 8) | local
66 return result;
71 uint64_t result = (uint64_t)mBuffer[offset] | ((uint64_t)mBuffer[offset + 1] << 8) | local
76 return result;
92 Int8List* result = new Int8List; local
95 result->push(getInt8());
96 return result;
100 UInt8List* result local
108 Int16List* result = new Int16List; local
116 UInt16List* result = new UInt16List; local
124 Int32List* result = new Int32List; local
132 UInt32List* result = new UInt32List; local
140 Int64List* result = new Int64List; local
148 UInt64List* result = new UInt64List; local
[all...]
H A DMtpPacket.cpp156 int result = usb_device_bulk_transfer(request->dev, local
161 request->actual_length = result;
162 return result;
/frameworks/base/cmds/service/
H A Dservice.cpp68 int result = 0; local
83 result = 10;
100 result = 10;
134 result = 10;
143 result = 10;
232 result = 10;
242 result = 10;
251 result = 10;
256 result = 10;
270 return result;
[all...]
/frameworks/base/core/java/android/app/backup/
H A DRestoreSession.java217 public void restoreSetsAvailable(RestoreSet[] result) { argument
219 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/jni/android/graphics/
H A DColorFilter.cpp134 result = android::AndroidRuntime::registerNativeMethods(env, name, array, \
136 if (result < 0) return result
139 int result; local
H A DGraphicsJNI.h154 jbyteArray result = fStorageObj; local
157 return result;
H A DMaskFilter.cpp79 result = android::AndroidRuntime::registerNativeMethods(env, name, array, SK_ARRAY_COUNT(array)); \
80 if (result < 0) return result
84 int result; local
H A DPathEffect.cpp94 result = android::AndroidRuntime::registerNativeMethods(env, name, array, \
96 if (result < 0) return result
100 int result; local
H A DPathMeasure.cpp133 int result = AndroidRuntime::registerNativeMethods(env, "android/graphics/PathMeasure", methods, local
135 return result;
/frameworks/base/core/jni/
H A Dandroid_hardware_UsbDeviceConnection.cpp162 jint result = usb_device_control_transfer(device, requestType, request, local
168 return result;
190 jint result = usb_device_bulk_transfer(device, endpoint, bufferBytes, length, timeout); local
195 return result;
225 jstring result = env->NewStringUTF(serial);
227 return result;

Completed in 3102 milliseconds

1234567891011>>