Searched defs:result (Results 76 - 100 of 680) sorted by relevance

1234567891011>>

/frameworks/ex/common/tools/
H A Dmake-iana-tld-pattern.py145 result = puny.decode('punycode') variable
146 result = repr(result) variable
147 getBucket(buckets, 'xn--').add(result[2:-1])
/frameworks/native/libs/input/tests/
H A DInputChannel_test.cpp63 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
66 ASSERT_EQ(OK, result)
114 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
117 ASSERT_EQ(OK, result)
128 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
131 ASSERT_EQ(OK, result)
144 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
147 ASSERT_EQ(OK, result)
/frameworks/native/services/inputflinger/
H A DInputManager.cpp54 status_t result = mDispatcherThread->run("InputDispatcher", PRIORITY_URGENT_DISPLAY); local
55 if (result) {
56 ALOGE("Could not start InputDispatcher thread due to error %d.", result);
57 return result;
60 result = mReaderThread->run("InputReader", PRIORITY_URGENT_DISPLAY);
61 if (result) {
62 ALOGE("Could not start InputReader thread due to error %d.", result);
65 return result;
72 status_t result = mReaderThread->requestExitAndWait(); local
73 if (result) {
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DResultException.java30 public ResultException(ResultCode result) { argument
36 switch (result) {
46 "For result code, " + result +
52 mResult = result;
57 public ResultException(ResultCode result, String explanation) { argument
58 this(result);
62 public ResultException(ResultCode result, int additionalInfo) { argument
63 this(result);
73 public ResultException(ResultCode result, in argument
78 public ResultCode result() { method in class:ResultException
[all...]
/frameworks/volley/src/com/android/volley/
H A DResponse.java41 /** Returns a successful response containing the parsed result. */
42 public static <T> Response<T> success(T result, Cache.Entry cacheEntry) { argument
43 return new Response<T>(result, cacheEntry);
55 public final T result; field in class:Response
74 private Response(T result, Cache.Entry cacheEntry) { argument
75 this.result = result;
81 this.result = null;
/frameworks/wilhelm/src/itf/
H A DIAudioDecoderCapabilities.c28 result = SL_RESULT_PARAMETER_INVALID;
30 result = SL_RESULT_SUCCESS;
37 result = SL_RESULT_PARAMETER_INVALID;
54 result = GetCodecCapabilities(decoderId, pIndex, pDescriptor, DecoderDescriptors); local
H A DIAudioEncoderCapabilities.c28 result = SL_RESULT_PARAMETER_INVALID;
30 result = SL_RESULT_SUCCESS;
37 result = SL_RESULT_PARAMETER_INVALID;
54 result = GetCodecCapabilities(encoderId, pIndex, pDescriptor, local
H A DILEDArray.c30 result = SL_RESULT_SUCCESS;
41 result = SL_RESULT_PARAMETER_INVALID;
48 result = SL_RESULT_SUCCESS;
59 result = SL_RESULT_PARAMETER_INVALID; local
75 result = SL_RESULT_SUCCESS;
87 result = SL_RESULT_PARAMETER_INVALID;
95 result = SL_RESULT_SUCCESS;
/frameworks/wilhelm/src/objects/
H A DCAudioPlayer.c27 SLresult result = SL_RESULT_SUCCESS; local
30 result = android_audioPlayer_realize(thiz, async);
34 result = SndFile_Realize(thiz);
41 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 Dtrace.c41 void slTraceLeaveGlobal(const char *function, SLresult result) argument
43 if (SL_RESULT_SUCCESS == result) {
49 const char *str = slesutResultToString(result);
53 SL_LOGW("Leaving %s (0x%X)", function, result);
86 void slTraceLeaveInterface(const char *function, SLresult result) argument
101 if (SL_RESULT_SUCCESS == result) {
112 const char *str = slesutResultToString(result);
119 &underscore[1], result);
125 SL_LOGW("Leaving %s (0x%X)", function, result);
H A Dxa_entry.c27 result = liCreateEngine((SLObjectItf *) pEngine, numOptions, local
42 result = liQueryNumSupportedInterfaces(pNumSupportedInterfaces, local
56 result = liQuerySupportedInterfaces(index, (SLInterfaceID *) pInterfaceId, local
/frameworks/wilhelm/tests/sandbox/
H A Dsrcsink.c26 SLresult result; local
30 result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
31 assert(SL_RESULT_SUCCESS == result);
33 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
34 assert(SL_RESULT_SUCCESS == result);
35 result = (*engineObject)->GetInterface(engineObject, SL_IID_ENGINE, &engineEngine);
36 assert(SL_RESULT_SUCCESS == result);
66 result = (*engineEngine)->CreateAudioPlayer(engineEngine, &playerObject, &audioSrc,
68 assert(SL_RESULT_PARAMETER_INVALID == result);
73 result
[all...]
/frameworks/base/core/java/android/accounts/
H A DAccountAuthenticatorResponse.java45 public void onResult(Bundle result) { argument
47 result.keySet(); // force it to be unparcelled
49 + AccountManager.sanitizeResult(result));
52 mAccountAuthenticatorResponse.onResult(result);
/frameworks/base/core/java/android/nfc/
H A DTransceiveResult.java25 * Class used to pipe transceive result from the NFC service.
38 public TransceiveResult(final int result, final byte[] data) { argument
39 mResult = result;
74 int result = in.readInt();
77 if (result == RESULT_SUCCESS) {
84 return new TransceiveResult(result, responseData);
/frameworks/base/core/java/android/os/
H A DRegistrant.java49 notifyResult(Object result) argument
51 internalNotifyRegistrant (result, null);
66 internalNotifyRegistrant (ar.result, ar.exception);
70 internalNotifyRegistrant (Object result, Throwable exception) argument
81 msg.obj = new AsyncResult(userObj, result, exception);
/frameworks/base/core/java/android/util/
H A DTimedRemoteCaller.java28 * the response. The remote method calls back with the result and
32 * the timeout then the call failed. Older result received when
33 * waiting for the result are ignored.
44 * public void onCompleted(Object result, int sequence) {
45 * onRemoteMethodResult(result, sequence);
61 * @param <T> The type of the expected result.
100 T result = mResult;
102 return result;
106 public final void onRemoteMethodResult(T result, int sequence) { argument
110 mResult = result;
[all...]
/frameworks/base/core/jni/android/graphics/
H A DXfermode.cpp65 result = android::AndroidRuntime::registerNativeMethods(env, name, array, \
67 if (result < 0) return result
70 int result; local
/frameworks/base/core/jni/
H A Dandroid_text_AndroidBidi.cpp34 jint result = 0; local
46 result = ubidi_getParaLevel(bidi);
56 return result;
/frameworks/base/libs/hwui/
H A DQuery.h29 * does not support occlusion queries, the result of a query will always be
30 * 0 and the result will always be marked available.
38 * GLuint result = query.getResult();
109 * Returns true if the result of the query is available,
110 * false otherwise. Calling getResult() before the result
111 * is available may result in the calling thread being blocked.
118 GLuint result;
119 glGetQueryObjectuiv(mQuery, GL_QUERY_RESULT_AVAILABLE, &result);
120 return result == GL_TRUE;
124 * Returns the result o
135 GLuint result; local
[all...]
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyList.java30 // result code for GetObjectPropList
44 public MtpPropertyList(int maxCount, int result) { argument
46 mResult = result;
75 public void setResult(int result) { argument
76 mResult = result;
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsLoader.java50 public void deliverResult(Collection<RootInfo> result) { argument
55 mResult = result;
58 super.deliverResult(result);
H A DUriDerivativeLoader.java69 public void deliverResult(R result) { argument
71 closeQuietly(result);
75 mResult = result;
78 super.deliverResult(result);
81 if (oldResult != null && oldResult != result) {
108 public void onCanceled(R result) { argument
109 closeQuietly(result);
125 private void closeQuietly(R result) { argument
126 if (result instanceof AutoCloseable) {
128 ((AutoCloseable) result)
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DStrictModeViolationDialog.java43 AppErrorResult result, ProcessRecord app) {
50 mResult = result;
42 StrictModeViolationDialog(Context context, ActivityManagerService service, AppErrorResult result, ProcessRecord app) argument

Completed in 192 milliseconds

1234567891011>>