Searched defs:result (Results 101 - 125 of 552) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/lib/LD/
H A DELFSegment.cpp41 bool result = false; local
45 result = true;
50 return result;
55 bool result = false; local
63 result = true;
65 return result;
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp79 NamePair& result = find(pFrom); local
80 if (!result.isNull()) {
82 return result;
/frameworks/compile/mclinker/lib/Support/
H A DMemoryAreaFactory.cpp47 MemoryArea* result = allocate(); local
48 new (result) MemoryArea(*handler);
50 m_HandleToArea.push_back(handler, result);
51 return result;
71 MemoryArea* result = allocate(); local
72 new (result) MemoryArea(*handler);
74 m_HandleToArea.push_back(handler, result);
75 return result;
84 MemoryArea* result = allocate(); local
85 new (result) MemoryAre
95 MemoryArea* result = allocate(); local
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.cpp78 uint64_t result = 0; local
83 result += got->size();
85 return result;
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.h65 Node *result = allocate(); local
66 new (result) Node(pInit);
67 return result;
H A DLEB128Test.cpp47 leb128::ByteType *result; local
50 result = buffer;
51 size = leb128::encode<uint32_t>(result, 2);
53 ASSERT_EQ(result, buffer + 1);
56 result = buffer;
57 size = leb128::encode<uint32_t>(result, 127);
59 ASSERT_EQ(result, buffer + 1);
62 result = buffer;
63 size = leb128::encode<uint32_t>(result, 128);
66 ASSERT_EQ(result, buffe
93 leb128::ByteType *result; local
139 leb128::ByteType *result; local
301 leb128::ByteType *result; local
418 leb128::ByteType *result; local
465 leb128::ByteType *result; local
500 leb128::ByteType *result; local
516 char *result; local
[all...]
/frameworks/native/libs/gui/
H A DIGraphicBufferAlloc.cpp55 status_t result = reply.readInt32(); local
56 if (result == NO_ERROR) {
58 result = reply.read(*graphicBuffer);
63 *error = result;
96 sp<GraphicBuffer> result = local
99 if (result != 0) {
100 reply->write(*result);
107 reply->writeStrongBinder( new BufferReference(result) );
H A DISensorEventConnection.cpp94 status_t result = enableDisable(handle, enabled); local
95 reply->writeInt32(result);
102 status_t result = setEventRate(handle, ns); local
103 reply->writeInt32(result);
H A DISurfaceComposerClient.cpp95 status_t result = createSurface(name, w, h, format, flags, local
99 reply->writeInt32(result);
/frameworks/native/services/sensorservice/
H A DLinearAccelerationSensor.cpp41 bool result = mGravitySensor.process(outEvent, event); local
42 if (result && event.type == SENSOR_TYPE_ACCELEROMETER) {
/frameworks/rs/driver/linkloader/include/impl/
H A DELFSectionSymTab.hxx33 size_t result = 0; local
36 result++;
39 return result;
44 size_t result = 0; local
47 result++;
50 return result;
/frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/
H A DAndroidTestSuite.java55 public void runTest(Test test, TestResult result) { argument
65 super.runTest(test, result);
/frameworks/wilhelm/src/itf/
H A DIAndroidEffectCapabilities.c28 result = SL_RESULT_PARAMETER_INVALID;
34 result = SL_RESULT_SUCCESS;
51 result = SL_RESULT_PARAMETER_INVALID;
67 result = SL_RESULT_SUCCESS;
93 SLresult result = android_genericFx_queryNumEffects(&numEffects); local
94 if (SL_RESULT_SUCCESS != result) {
95 SL_LOGE("android_genericFx_queryNumEffects %u", result);
107 // Remember the first failing result code, but keep going
108 if (SL_RESULT_SUCCESS == result) {
109 result
[all...]
H A DIMetadataTraversal.c34 result = SL_RESULT_SUCCESS;
38 result = SL_RESULT_PARAMETER_INVALID;
51 result = SL_RESULT_PARAMETER_INVALID;
58 result = SL_RESULT_SUCCESS;
71 result = SL_RESULT_PARAMETER_INVALID;
78 result = SL_RESULT_SUCCESS;
91 result = SL_RESULT_FEATURE_UNSUPPORTED; local
106 result = SL_RESULT_PARAMETER_INVALID;
/frameworks/wilhelm/tests/sandbox/
H A Dengine.c27 SLresult result; local
29 result = slQueryNumSupportedEngineInterfaces(&numSupportedInterfaces);
30 assert(SL_RESULT_SUCCESS == result);
31 result = slQueryNumSupportedEngineInterfaces(NULL);
32 assert(SL_RESULT_PARAMETER_INVALID == result);
45 result = slQuerySupportedEngineInterfaces(index, &interfaceID);
47 assert(SL_RESULT_SUCCESS == result);
53 assert(SL_RESULT_PARAMETER_INVALID == result);
55 result = slQuerySupportedEngineInterfaces(index, NULL);
56 assert(SL_RESULT_PARAMETER_INVALID == result);
[all...]
H A Dobject.c26 SLresult result; local
31 result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
32 assert(SL_RESULT_SUCCESS == result);
33 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
34 assert(SL_RESULT_SUCCESS == result);
36 result = (*engineObject)->GetInterface(engineObject, SL_IID_ENGINE, &engineEngine);
37 assert(SL_RESULT_SUCCESS == result);
53 result = (*engineEngine)->QueryNumSupportedInterfaces(engineEngine, objectID, NULL);
54 assert(SL_RESULT_PARAMETER_INVALID == result);
56 result
[all...]
H A Dxa.c25 XAresult result; local
28 result = xaCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
29 printf("result = %d\n", result);
30 assert(XA_RESULT_SUCCESS == result);
33 result = (*engineObject)->Realize(engineObject, XA_BOOLEAN_FALSE);
34 printf("result = %d\n", result);
37 result = (*engineObject)->GetInterface(engineObject, XA_IID_ENGINE, &engineEngine);
38 printf("result
[all...]
/frameworks/av/camera/
H A DICameraService.cpp127 status_t result = getCameraInfo(data.readInt32(), &cameraInfo); local
130 reply->writeInt32(result);
H A DIProCameraCallbacks.cpp73 void onResultReceived(int32_t frameId, camera_metadata* result) { argument
78 writeMetadata(data, result);
114 camera_metadata_t *result = NULL; local
115 readMetadata(data, &result);
116 onResultReceived(frameId, result);
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DMediaBufferPuller.cpp134 status_t result = mSource->read(&pBuffer, NULL); local
136 mSourceError = result;
137 if (result != OK) {
/frameworks/av/media/libstagefright/
H A DFileSource.cpp108 off64_t result = lseek64(mFd, offset + mOffset, SEEK_SET); local
109 if (result == -1) {
H A DMediaMuxer.cpp83 status_t result = mWriter->addSource(newTrack); local
84 if (result == OK) {
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
H A Dbasic_op_arm_v5.h121 Word32 result; local
126 QADD result, L_var1, L_var2 local
128 return(result);
154 Word32 result; local
160 QSUB result, L_var1, L_var2 local
163 return(result);
188 result = 32-bit result of L_var3 + (var1 * var2)(Word32)
192 Word32 result; local
197 __asm {SMULBB result, var local
225 Word32 result; local
233 QADD result, product, product local
266 Word32 result; local
273 QDSUB result, L_var3, product local
361 Word32 result; local
367 __asm {SMULBB result, L_var1_lo, var2} local
413 Word32 result; local
416 smlabb result, L_var1, L_var2, L_var3 local
423 Word32 result; local
427 smlabb result, L_var1, L_var2, L_var3 local
[all...]
H A Dbasic_op_c_equivalent.h197 result = 32-bit result of L_var3 + (var1 * var2)(Word32)
201 Word32 result; local
203 result = (Word32) var1 * var2;
204 if (result != (Word32) 0x40000000L)
206 L_sum = (result << 1) + L_var3;
209 if ((L_var3 ^ result) > 0)
288 result = 32-bit result of L_var3 - (var1 * var2)
293 Word32 result; local
403 Word32 result; local
478 Word32 result; local
487 Word32 result; local
[all...]
/frameworks/base/core/java/android/accounts/
H A DGrantCredentialsPermissionActivity.java163 Intent result = new Intent();
164 result.putExtra("retry", true);
165 setResult(RESULT_OK, result);
166 setAccountAuthenticatorResult(result.getExtras());
177 public final void setAccountAuthenticatorResult(Bundle result) { argument
178 mResultBundle = result;
182 * Sends the result or a {@link AccountManager#ERROR_CODE_CANCELED} error if a
183 * result isn't present.
189 // send the result bundle back if set, otherwise send an error.

Completed in 517 milliseconds

1234567891011>>