Searched refs:retval (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
H A DRandomBlock.java53 RandomBlock retval = new RandomBlock();
56 int result = in.read(retval.block, total, BLOCK_SIZE - total);
62 return retval;
H A DTextServicesManagerService.java162 final boolean retval = userId == mSettings.getCurrentUserId();
166 return retval;
705 final boolean retval = mSettings.isSpellCheckerEnabled();
707 Slog.w(TAG, "getSpellCheckerEnabled: " + retval);
709 return retval;
H A DInputMethodManagerService.java478 final boolean retval = userId == mSettings.getCurrentUserId();
480 if (!retval) {
484 return retval;
/frameworks/base/libs/hwui/renderthread/
H A DRenderTask.h83 void* retval = mMethod(mData); local
85 *mReturnPtr = retval;
H A DRenderProxy.cpp265 void* retval = postAndWait(task); local
266 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(retval);
418 void* retval; local
419 task->setReturnPtr(&retval);
424 return retval;
429 void* retval; local
430 task->setReturnPtr(&retval);
437 return retval;
/frameworks/base/core/java/android/view/textservice/
H A DTextServicesManager.java189 final SpellCheckerInfo[] retval = sService.getEnabledSpellCheckers();
191 Log.d(TAG, "getEnabledSpellCheckers: " + (retval != null ? retval.length : "null"));
193 return retval;
/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java140 final SuggestionsInfo[] retval = new SuggestionsInfo[length];
142 retval[i] = onGetSuggestions(textInfos[i], suggestionsLimit);
143 retval[i].setCookieAndSequence(
146 return retval;
186 final SentenceSuggestionsInfo[] retval = new SentenceSuggestionsInfo[infosSize];
197 retval[i] = SentenceLevelAdapter.reconstructSuggestions(
201 return retval;
/frameworks/native/opengl/tools/glgen/src/
H A DJniCodeEmitter.java891 String retval = getErrorReturnValue(cfunc);
896 baseType + "Constructor, " + retval + ");");
898 out.println(indent + "return " + retval + ";");
917 String retval = getErrorReturnValue(cfunc);
922 baseType + "Constructor, " + retval + ");");
924 out.println(indent + "return " + retval + ";");
962 String retval = getErrorReturnValue(cfunc);
963 if (retval != null) {
965 " _returnValue = " + retval + ";");
/frameworks/native/cmds/dumpstate/
H A Dutils.c232 int retval = klogctl(KLOG_READ_ALL, buf, size); local
233 if (retval < 0) {
238 buf[retval] = '\0';
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css489 .params, .retval, .exception, .tparams {
493 .params .paramname, .retval .paramname {
/frameworks/base/core/java/android/view/
H A DViewGroup.java1230 boolean retval = false;
1269 retval = true;
1293 retval = true;
1336 retval = target.dispatchDragEvent(event);
1373 retval = target.dispatchDragEvent(event);
1385 if (!retval) {
1387 retval = super.dispatchDragEvent(event);
1389 return retval;
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java466 boolean retval = false;
469 retval |= notifier.isButtonsFocused();
472 return retval;
/frameworks/base/tools/aapt/
H A DResourceTable.cpp2380 int retval=0; local
2384 retval = vsnprintf(buf, sizeof(buf), fmt, ap);

Completed in 7594 milliseconds