Searched defs:result (Results 226 - 250 of 552) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/lib/LD/
H A DELFObjectReader.cpp71 bool result = true; local
73 result = false;
75 result = false;
77 result = false;
79 result = false;
81 return result;
93 bool result = m_pELFReader->readSectionHeaders(pInput, ELF_hdr); local
95 return result;
265 bool result = m_pELFReader->readSymbols(pInput, local
271 return result;
[all...]
H A DNamePool.cpp41 ResolveInfo** result = m_FreeInfoSet.allocate(); local
42 (*result) = ResolveInfo::Create(pName);
43 (*result)->setIsSymbol(true);
44 (*result)->setSource(pIsDyn);
45 (*result)->setType(pType);
46 (*result)->setDesc(pDesc);
47 (*result)->setBinding(pBinding);
48 (*result)->setVisibility(pVisibility);
49 (*result)->setSize(pSize);
50 return *result;
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.cpp181 uint64_t result = 0x0; local
186 result += ARMPLT0::EntrySize;
193 memcpy(buffer + result, plt1->getValue(), ARMPLT1::EntrySize);
194 result += ARMPLT1::EntrySize;
197 return result;
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.cpp81 T1 result = 0; local
88 result |= static_cast<T1>(valBit) << bit;
92 return result;
113 int32_t result = (int32_t) ((S + A - P) >> 2); local
116 if ( (result < range) && (result > -range)) {
117 pReloc.target() = pReloc.target() | ApplyMask(0x01ff3ffe, result);
131 int32_t result = (int32_t) ((S + A - P) >> 2); local
133 if ( (result < range) && (result >
148 int32_t result = (int32_t) ((S + A - P) >> 2); local
164 uint32_t result = (uint32_t) (S + A); local
176 uint32_t result = (uint32_t) ((S + A) >> 16); local
187 uint32_t result = (uint32_t) (S + A); local
199 uint32_t result = (uint32_t) (S + A); local
211 uint32_t result = (uint32_t) (S + A); local
225 int32_t result = ((S + A - P) >> 2); local
250 int64_t result = S + A - P; local
[all...]
/frameworks/compile/mclinker/tools/mcld/
H A Dmain.cpp265 Linker::ErrorCode result = pLinker.config(*config); local
266 if (Linker::kSuccess != result) {
268 << Linker::GetErrorString(result) << ")\n";
281 Linker::ErrorCode result = pLinker.setOutput(pOutputPath); local
283 if (Linker::kSuccess != result) {
286 << Linker::GetErrorString(result) << ")\n";
314 result = pLinker.addObject(*file_it);
315 if (Linker::kSuccess != result) {
317 << ": " << Linker::GetErrorString(result) << ")\n";
322 result
338 Linker::ErrorCode result = pLinker.link(); local
[all...]
/frameworks/native/cmds/flatland/
H A DRenderers.cpp47 bool result; local
49 result = helper->getShaderProgram("Gradient", &mGradPgm);
50 if (!result) {
54 result = helper->getDitherTexture(&mDitherTexName);
55 if (!result) {
168 bool result; local
171 result = mGLHelper->makeCurrent(surface);
172 if (!result) {
176 result = mGradientRenderer.drawGradient();
177 if (!result) {
[all...]
/frameworks/native/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/native/include/utils/
H A DUniquePtr.h76 T* result = mPtr; local
78 return result;
122 T* result = mPtr; local
124 return result;
/frameworks/native/libs/ui/
H A DFence.cpp75 int result; local
80 result = sync_merge(name.string(), f1->mFenceFd, f2->mFenceFd);
82 result = sync_merge(name.string(), f1->mFenceFd, f1->mFenceFd);
84 result = sync_merge(name.string(), f2->mFenceFd, f2->mFenceFd);
88 if (result == -1) {
95 return sp<Fence>(new Fence(result));
/frameworks/native/libs/utils/
H A DTokenizer.cpp57 int result = NO_ERROR; local
60 result = -errno;
65 result = -errno;
87 result = -errno;
96 if (!result) {
102 return result;
113 String8 result; local
114 result.appendFormat("%s:%d", mFilename.string(), mLineNumber);
115 return result;
H A DZipUtils.cpp46 bool result = false; local
135 result = true;
142 return result;
159 bool result = false; local
247 result = true;
254 return result;
/frameworks/native/opengl/libs/EGL/
H A Dtrace.cpp59 const GLenumString* result = (const GLenumString*) bsearch( local
63 if (result) {
64 return result->s;
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetActiveUniformBlockName.cpp123 jstring result = _env->NewStringUTF(name); local
125 return result;
/frameworks/native/services/sensorservice/
H A DSensorDevice.cpp68 void SensorDevice::dump(String8& result, char* buffer, size_t SIZE) argument
75 result.append(buffer);
83 result.append(buffer);
88 result.append(buffer);
91 result.append(buffer);
H A Dtraits.h95 enum { result = false }; enumerator in enum:android::TypeTraits::PointerTraits::__anon1534
99 enum { result = true }; enumerator in enum:android::TypeTraits::PointerTraits::__anon1535
108 enum { isPointer = PointerTraits<T>::result };
/frameworks/native/services/surfaceflinger/
H A DClient.cpp124 status_t result; member in class:android::MessageCreateLayer
139 status_t getResult() const { return result; }
141 result = flinger->createLayer(name, client, w, h, format, flags,
/frameworks/rs/driver/linkloader/
H A Dmain.cpp82 int result = vprintf(fmt, ap); local
84 return result;
90 int result = vscanf(fmt, ap); local
92 return result;
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUnitTest.java24 private int result; field in class:UnitTest
43 result = initResult;
68 mItem.result = result;
83 if (result == 0) {
86 result = 1;
89 result = -1;
108 return result;
112 result = -1;
117 if (result !
[all...]
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUnitTest.java24 private int result; field in class:UnitTest
43 result = initResult;
68 mItem.result = result;
83 if (result == 0) {
86 result = 1;
89 result = -1;
108 return result;
112 result = -1;
117 if (result !
[all...]
/frameworks/support/v4/java/android/support/v4/content/
H A DAsyncTaskLoader.java42 D result; field in class:AsyncTaskLoader.LoadTask
51 result = AsyncTaskLoader.this.onLoadInBackground();
53 return result;
71 AsyncTaskLoader.this.dispatchOnCancelled(this, result);
171 * to properly dispose of the result.
222 if (DEBUG) Log.v(TAG, "Delivering result");
234 * result directly, but should return them from this method, which will eventually end up
239 * @return Implementations must return the result of their load operation.
/frameworks/testing/androidtestlib/src/com/android/test/runner/listener/
H A DInstrumentationResultPrinter.java107 public void testRunFinished(Result result) throws Exception { argument
/frameworks/wilhelm/src/
H A Ddata.c28 SLresult result = SL_RESULT_SUCCESS; local
42 result = SL_RESULT_PARAMETER_INVALID;
58 result = SL_RESULT_PARAMETER_INVALID;
90 result = SL_RESULT_PARAMETER_INVALID;
92 if (result == SL_RESULT_SUCCESS) {
95 result = AcquireStrongRef((IObject *) device, expectedObjectID);
96 if (SL_RESULT_SUCCESS != result) {
108 result = SL_RESULT_PARAMETER_INVALID;
114 result = SL_RESULT_PARAMETER_INVALID;
120 result
340 SLresult result = SL_RESULT_SUCCESS; local
758 SLresult result; local
835 SLresult result; local
[all...]
/frameworks/wilhelm/src/desktop/
H A DSndFile.c36 SLresult result; local
78 result = IBufferQueue_Enqueue(caller, pBuffer, size);
80 if (SL_RESULT_SUCCESS != result) {
81 SL_LOGE("enqueue failed 0x%x", result);
86 // this would result in a non-monotonically increasing position, so don't do it
241 SLresult result = SL_RESULT_SUCCESS; local
247 result = SL_RESULT_CONTENT_NOT_FOUND;
251 result = SL_RESULT_CONTENT_UNSUPPORTED;
271 return result;
/frameworks/wilhelm/src/itf/
H A DIAndroidBufferQueue.c248 result = SL_RESULT_SUCCESS;
251 result = SL_RESULT_PRECONDITIONS_VIOLATED;
263 result = SL_RESULT_SUCCESS; local
285 result = SL_RESULT_PARAMETER_INVALID;
306 result = SL_RESULT_PARAMETER_INVALID;
309 result = SL_RESULT_PARAMETER_INVALID;
313 result = SL_RESULT_PARAMETER_INVALID;
330 result = SL_RESULT_CONTENT_CORRUPTED;
337 result = SL_RESULT_PARAMETER_INVALID;
343 result
[all...]
H A DIDynamicInterfaceManagement.c39 SLresult result; local
59 result = SL_RESULT_SUCCESS;
61 result = SL_RESULT_FEATURE_UNSUPPORTED;
67 if (SL_RESULT_SUCCESS == result) {
77 result = SL_RESULT_OPERATION_ABORTED;
83 result = SL_RESULT_INTERNAL_ERROR;
99 (*callback)(&thiz->mItf, context, SL_DYNAMIC_ITF_EVENT_ASYNC_TERMINATION, result, iid);
112 result = SL_RESULT_PARAMETER_INVALID;
122 result = SL_RESULT_FEATURE_UNSUPPORTED;
138 result
295 SLresult result; local
[all...]

Completed in 1184 milliseconds

1234567891011>>