Searched refs:result (Results 276 - 300 of 1597) sorted by relevance

<<11121314151617181920>>

/frameworks/base/telephony/java/android/telephony/
H A DSubscriptionManager.java499 SubscriptionInfo result = null;
504 result = iSub.getActiveSubscriptionInfoForIccId(iccId, mContext.getOpPackageName());
510 return result;
525 SubscriptionInfo result = null;
530 result = iSub.getActiveSubscriptionInfoForSimSlotIndex(slotIdx,
537 return result;
548 List<SubscriptionInfo> result = null;
553 result = iSub.getAllSubInfoList(mContext.getOpPackageName());
559 if (result == null) {
560 result
[all...]
/frameworks/compile/libbcc/lib/Support/
H A DOutputFile.cpp91 llvm::raw_fd_ostream *result = local
94 if (result == nullptr) {
98 return result;
/frameworks/compile/mclinker/lib/LD/
H A DRelocData.cpp31 RelocData* result = g_RelocDataFactory->allocate(); local
32 new (result) RelocData(pSection);
33 return result;
/frameworks/compile/mclinker/lib/Script/
H A DFileToken.cpp34 FileToken* result = g_FileTokenFactory->allocate(); local
35 new (result) FileToken(pName, pAsNeeded);
36 return result;
H A DNameSpec.cpp34 NameSpec* result = g_NameSpecFactory->allocate(); local
35 new (result) NameSpec(pName, pAsNeeded);
36 return result;
H A DStrToken.cpp34 StrToken* result = g_StrTokenFactory->allocate(); local
35 new (result) StrToken(String, pString);
36 return result;
H A DStringList.cpp42 StringList* result = g_StringListFactory->allocate(); local
43 new (result) StringList();
44 return result;
/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/wilhelm/src/objects/
H A DCMediaPlayer.c29 XAresult result = XA_RESULT_SUCCESS; local
35 result = android_Player_realize(thiz, async);
38 return result;
H A DCOutputMix.c26 SLresult result = SL_RESULT_SUCCESS; local
30 result = android_outputMix_realize(thiz, async);
33 return result;
/frameworks/wilhelm/src/
H A Dsl_entry.c27 result = liCreateEngine(pEngine, numOptions, pEngineOptions, numInterfaces, pInterfaceIds, local
41 result = liQueryNumSupportedInterfaces(pNumSupportedInterfaces, local
57 result = liQuerySupportedInterfaces(index, pInterfaceId, objectIDtoClass(SL_OBJECTID_ENGINE)); local
H A Dxa_entry.c27 result = liCreateEngine((SLObjectItf *) pEngine, numOptions, local
42 result = liQueryNumSupportedInterfaces(pNumSupportedInterfaces, local
56 result = liQuerySupportedInterfaces(index, (SLInterfaceID *) pInterfaceId, local
/frameworks/base/core/java/android/app/backup/
H A DFileBackupHelperBase.java85 int result = -1;
91 result = writeFile_native(mPtr, f.getAbsolutePath(), in.mData.mBackupReader);
92 if (result != 0) {
96 + mContext.getPackageName() + "\' result=0x"
97 + Integer.toHexString(result));
101 return (result == 0);
105 int result = writeSnapshot_native(mPtr, fd.getFileDescriptor());
H A DIRestoreObserver.aidl32 * @param result An array of {@link android.app.backup.RestoreSet RestoreSet} objects
34 * the current device. If no applicable datasets exist, {@code result} will be
37 void restoreSetsAvailable(in RestoreSet[] result);
/frameworks/base/core/java/android/print/
H A DPageRange.java119 int result = 1;
120 result = prime * result + mEnd;
121 result = prime * result + mStart;
122 return result;
/frameworks/base/obex/javax/obex/
H A DPrivateInputStream.java119 int result = 0;
125 result += currentDataLength;
129 return result == 0 ? -1 : result;
136 result += remainReadLength;
138 return result;
/frameworks/base/tools/aapt/tests/
H A DCrunchCache_test.cpp58 int result = cc.crunch(cu); local
59 cout << ((result > 0) ? "PASSED" : "FAILED") << endl;
60 errno += ((result > 0) ? 0 : 1);
63 expectEqual(result, EXPECTED_RESULT, "number of files touched");
74 result = cc.crunch(cu, true);
75 expectEqual(result, EXPECTED_OVERWRITES, "number of files touched with overwrite");
/frameworks/compile/mclinker/lib/Support/
H A DTargetRegistry.cpp68 const Target* result = NULL; local
75 result = *it;
80 if (result == NULL) {
93 result = lookupTarget(pTriple.getTriple(), error);
94 if (result == NULL) {
100 return result;
/frameworks/minikin/libs/minikin/
H A DMinikinFontFreeType.cpp76 const MinikinPaint &paint, GlyphBitmap *result) {
88 result->buffer = bitmap.buffer;
89 result->width = bitmap.width;
90 result->height = bitmap.rows;
91 result->left = mTypeface->glyph->bitmap_left;
92 result->top = mTypeface->glyph->bitmap_top;
75 Render(uint32_t glyph_id, const MinikinPaint &paint, GlyphBitmap *result) argument
/frameworks/volley/src/test/java/com/android/volley/toolbox/
H A DBasicNetworkTest.java62 Map<String, String> result = new HashMap<String, String>();
63 result.put("requestheader", "foo");
64 return result;
69 Map<String, String> result = new HashMap<String, String>();
70 result.put("requestpost", "foo");
71 return result;
/frameworks/base/core/java/android/accounts/
H A DAccountAuthenticatorActivity.java30 * The activity then sets the result that is to be handed to the response via
32 * This result will be sent as the result of the request when the activity finishes. If this
41 * Set the result that is to be sent as the result of the request that caused this
42 * Activity to be launched. If result is null or this method is never called then
44 * @param result this is returned as the result of the AbstractAccountAuthenticator request
46 public final void setAccountAuthenticatorResult(Bundle result) { argument
47 mResultBundle = result;
[all...]
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DLegacyResultMapper.java51 * Generate capture result metadata from the legacy camera request.
53 * <p>This method caches and reuses the result from the previous call to this method if
58 * @param timestamp the timestamp to use for this result in nanoseconds.
60 * @return {@link CameraMetadataNative} object containing result metadata.
64 CameraMetadataNative result;
68 * Attempt to look up the result from the cache if the parameters haven't changed
71 result = new CameraMetadataNative(mCachedResult);
74 result = convertResultMetadata(legacyRequest);
77 // Always cache a *copy* of the metadata result,
78 // since api2's client side takes ownership of it after it receives a result
[all...]
/frameworks/base/core/java/android/hardware/usb/
H A DUsbPort.java179 StringBuilder result = new StringBuilder();
180 result.append("[");
191 result.append(", ");
193 result.append(powerRoleToString(powerRole));
194 result.append(':');
195 result.append(dataRoleToString(dataRole));
198 result.append("]");
199 return result.toString();
/frameworks/base/core/java/android/service/chooser/
H A DIChooserTargetService.aidl29 in IntentFilter matchedFilter, IChooserTargetResult result);
/frameworks/base/core/java/android/service/trust/
H A DITrustAgentServiceCallback.aidl30 void onConfigureCompleted(boolean result, IBinder token);

Completed in 787 milliseconds

<<11121314151617181920>>