Searched refs:result (Results 226 - 250 of 1036) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/accounts/
H A DAccountAuthenticatorActivity.java31 * The activity then sets the result that is to be handed to the response via
33 * This result will be sent as the result of the request when the activity finishes. If this
42 * Set the result that is to be sent as the result of the request that caused this
43 * Activity to be launched. If result is null or this method is never called then
45 * @param result this is returned as the result of the AbstractAccountAuthenticator request
47 public final void setAccountAuthenticatorResult(Bundle result) { argument
48 mResultBundle = result;
[all...]
/frameworks/base/core/java/android/app/backup/
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/text/util/
H A DRfc822Token.java173 int result = 17;
174 if (mName != null) result = 31 * result + mName.hashCode();
175 if (mAddress != null) result = 31 * result + mAddress.hashCode();
176 if (mComment != null) result = 31 * result + mComment.hashCode();
177 return result;
/frameworks/base/core/java/com/android/internal/textservice/
H A DISpellCheckerSessionListener.aidl27 void onGetSentenceSuggestions(in SentenceSuggestionsInfo[] result);
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboardView.java41 boolean result = super.setShifted(shifted);
47 return result;
/frameworks/base/tests/CoreTests/android/core/
H A DJniLibTest.java56 int result = nativeStaticThing(1234.5f);
57 nativeThing(result);
/frameworks/compile/mclinker/lib/LD/
H A DELFDynObjReader.cpp51 bool result = true; local
53 result = false;
55 result = false;
57 result = false;
59 result = false;
61 return result;
110 bool result = m_pELFReader->readSymbols(pInput, m_Linker, *symtab_region, local
115 return result;
/frameworks/native/libs/gui/
H A DSensorEventQueue.cpp83 int32_t result; local
85 result = looper->pollOnce(-1, NULL, &events, NULL);
86 if (result == ALOOPER_POLL_ERROR) {
88 result = -EPIPE; // unknown error, so we make up one
94 result = -EPIPE; // unknown error, so we make up one
97 } while (result != fd);
99 return (result == fd) ? status_t(NO_ERROR) : result;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccFileHandler.java79 /** Finished loading contents of transparent EF; post result. */
83 /** Finished loading single record from a linear-fixed EF; post result. */
85 /** Finished retrieving record size; post result. */
87 /** Finished retrieving image instance record; post result. */
89 /** Finished retrieving icon data; post result. */
143 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
161 * ((AsyncResult)(onLoaded.obj)).result is the byte[]
179 * @param onLoaded ((AsnyncResult)(onLoaded.obj)).result is the recordSize[]
198 * ((AsyncResult)(onLoaded.obj)).result is an ArrayList<byte[]>
215 * ((AsyncResult)(onLoaded.obj)).result i
297 sendResult(Message response, Object result, Throwable ex) argument
[all...]
/frameworks/wilhelm/src/itf/
H A DI3DDoppler.c27 result = SL_RESULT_PARAMETER_INVALID;
35 result = SL_RESULT_SUCCESS;
54 result = SL_RESULT_SUCCESS;
65 result = SL_RESULT_PARAMETER_INVALID;
103 result = SL_RESULT_SUCCESS;
118 result = SL_RESULT_SUCCESS;
129 result = SL_RESULT_PARAMETER_INVALID;
136 result = SL_RESULT_SUCCESS;
H A DIAndroidEffect.cpp32 result = android_genericFx_createEffect(thiz, effectImplementationId, ap->mSessionId);
34 result = SL_RESULT_RESOURCE_ERROR;
37 result = android_genericFx_createEffect(thiz, effectImplementationId,
42 result = SL_RESULT_PARAMETER_INVALID;
55 result = android_genericFx_releaseEffect(thiz, effectImplementationId);
67 result = android_genericFx_setEnabled(thiz, effectImplementationId, enabled);
79 result = android_genericFx_isEnabled(thiz, effectImplementationId, pEnabled);
92 result = android_genericFx_sendCommand(thiz, effectImplementationId, command, commandSize,
H A DIObject.c34 SLresult result; local
47 result = (*realize)(thiz, SL_BOOLEAN_TRUE);
49 state = SL_RESULT_SUCCESS == result ? SL_OBJECT_STATE_REALIZED :
52 result = SL_RESULT_SUCCESS;
58 result = SL_RESULT_OPERATION_ABORTED;
64 result = SL_RESULT_INTERNAL_ERROR;
79 (*callback)(&thiz->mItf, context, SL_OBJECT_EVENT_ASYNC_TERMINATION, result, state, NULL);
108 result = SL_RESULT_SUCCESS;
110 result = SL_RESULT_PRECONDITIONS_VIOLATED;
125 result
177 SLresult result; local
692 result = SL_RESULT_SUCCESS; local
[all...]
H A DIBufferQueue.c54 result = SL_RESULT_PARAMETER_INVALID;
63 result = SL_RESULT_BUFFER_INSUFFICIENT;
69 result = SL_RESULT_SUCCESS;
72 interface_unlock_exclusive_attributes(thiz, ((SL_RESULT_SUCCESS == result) &&
84 result = SL_RESULT_SUCCESS; local
92 result = android_audioPlayer_bufferQueue_onClear(audioPlayer);
93 if (SL_RESULT_SUCCESS == result) {
125 result = SL_RESULT_PARAMETER_INVALID;
138 result = SL_RESULT_SUCCESS;
156 result
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSInfoReader.cpp178 RSInfo *result = NULL; local
256 // File seems ok, create result RSInfo object.
257 result = new (std::nothrow) RSInfo(header->strPoolSize);
258 if (result == NULL) {
267 ::memcpy(&result->mHeader, header, sizeof(rsinfo::Header));
272 if (result->mStringPool == NULL) {
277 ::memcpy(result->mStringPool, data + result->mHeader.headerSize,
278 result->mHeader.strPoolSize);
281 // Populate all the data to the result objec
[all...]
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DAlignmentTest.java45 Button result = new Button(CONTEXT);
46 result.setText(name);
47 result.setOnClickListener(new OnClickListener() {
53 return result;
59 TextView result = new TextView(CONTEXT);
60 result.setText(name);
61 result.setTextSize(40);
62 return result;
68 EditText result = new EditText(CONTEXT);
69 result
[all...]
/frameworks/opt/mms/src/java/com/google/android/mms/util/
H A DDrmConvertSession.java84 byte[] result = null;
99 result = convertedStatus.convertedData;
111 return result;
126 int result = Downloads.Impl.STATUS_UNKNOWN_ERROR;
133 result = Downloads.Impl.STATUS_NOT_ACCEPTABLE;
140 result = Downloads.Impl.STATUS_SUCCESS;
142 result = Downloads.Impl.STATUS_FILE_ERROR;
145 result = Downloads.Impl.STATUS_FILE_ERROR;
148 result = Downloads.Impl.STATUS_FILE_ERROR;
158 result
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaAudioManagerTest.java103 boolean result = false;
107 result = validateSetRingTone(ringtoneMode[i]);
108 assertTrue("SetRingtoneMode : " + ringtoneMode[i], result);
138 int result = mAudioManager.requestAudioFocus(mAudioFocusListener,
141 assertTrue("requestAudioFocus returned " + result,
142 result == AudioManager.AUDIOFOCUS_REQUEST_GRANTED);
144 result = mAudioManager.requestAudioFocus(null, AudioManager.STREAM_MUSIC,
146 assertTrue("requestAudioFocus returned " + result,
147 result == AudioManager.AUDIOFOCUS_REQUEST_GRANTED);
211 int result
[all...]
/frameworks/support/v4/java/android/support/v4/content/
H A DModernAsyncTask.java131 final Result result = get();
133 postResultIfNotInvoked(result);
149 private void postResultIfNotInvoked(Result result) { argument
152 postResult(result);
156 private Result postResult(Result result) { argument
158 new AsyncTaskResult<Result>(this, result));
160 return result;
182 * @return A result, defined by the subclass of this task.
201 * specified result is the value returned by {@link #doInBackground}.</p>
205 * @param result Th
212 onPostExecute(Result result) argument
243 onCancelled(Result result) argument
457 finish(Result result) argument
[all...]
/frameworks/native/libs/utils/
H A DLooper.cpp73 int result = pipe(wakeFds); local
74 LOG_ALWAYS_FATAL_IF(result != 0, "Could not create wake pipe. errno=%d", errno);
79 result = fcntl(mWakeReadPipeFd, F_SETFL, O_NONBLOCK);
80 LOG_ALWAYS_FATAL_IF(result != 0, "Could not make wake read pipe non-blocking. errno=%d",
83 result = fcntl(mWakeWritePipeFd, F_SETFL, O_NONBLOCK);
84 LOG_ALWAYS_FATAL_IF(result != 0, "Could not make wake write pipe non-blocking. errno=%d",
95 result = epoll_ctl(mEpollFd, EPOLL_CTL_ADD, mWakeReadPipeFd, & eventItem);
96 LOG_ALWAYS_FATAL_IF(result != 0, "Could not add wake read pipe to epoll instance. errno=%d",
107 int result = pthread_key_create(& gTLSKey, threadDestructor);
108 LOG_ALWAYS_FATAL_IF(result !
133 int result = pthread_once(& gTLSOnce, initTLSKey); local
158 int result = 0; local
213 int result = ALOOPER_POLL_WAKE; local
336 int result; local
346 int result = pollOnce(timeoutMillis, outFd, outEvents, outData); local
[all...]
/frameworks/av/media/libmedia/
H A DJetPlayer.cpp65 EAS_RESULT result; local
76 result = EAS_Init(&mEasData);
77 if (result != EAS_SUCCESS) {
80 return result;
83 result = JET_Init(mEasData, NULL, sizeof(S_JET_CONFIG));
84 if (result != EAS_SUCCESS) {
87 return result;
161 EAS_RESULT result = EAS_FAILURE; local
207 result = EAS_Render(mEasData, p, pLibConfig->mixBufferSize, &count);
208 if (result !
343 EAS_RESULT result = JET_OpenFile(mEasData, mEasJetFileLoc); local
365 EAS_RESULT result = JET_OpenFile(mEasData, mEasJetFileLoc); local
388 EAS_RESULT result = JET_Play(mEasData); local
410 EAS_RESULT result = JET_Pause(mEasData); local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
H A DarmCOMM.c488 * Returns the result of saturated addition of the two inputs Value1, Value2
541 * Returns the result of saturated addition of the two inputs Value1, Value2
594 * Returns the result of saturated substraction of the two inputs Value1, Value2
646 * Returns the result of Multiplication of Value1 and Value2 and subesquent saturated
672 * Returns the result of saturated MAC operation of the three inputs delayElem, filTap , mac
689 OMX_S32 result; local
691 result = armSatMulS16S32_S32(filTap,delayElem);
693 if ( result > OMX_MAX_S16 )
695 result = OMX_MAX_S32;
697 else if( result < OMX_MIN_S1
844 OMX_S32 result; local
881 OMX_S32 result; local
918 OMX_F64 result; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
H A DarmCOMM.c488 * Returns the result of saturated addition of the two inputs Value1, Value2
541 * Returns the result of saturated addition of the two inputs Value1, Value2
594 * Returns the result of saturated substraction of the two inputs Value1, Value2
646 * Returns the result of Multiplication of Value1 and Value2 and subesquent saturated
672 * Returns the result of saturated MAC operation of the three inputs delayElem, filTap , mac
689 OMX_S32 result; local
691 result = armSatMulS16S32_S32(filTap,delayElem);
693 if ( result > OMX_MAX_S16 )
695 result = OMX_MAX_S32;
697 else if( result < OMX_MIN_S1
844 OMX_S32 result; local
881 OMX_S32 result; local
918 OMX_F64 result; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
H A DarmCOMM.c488 * Returns the result of saturated addition of the two inputs Value1, Value2
541 * Returns the result of saturated addition of the two inputs Value1, Value2
594 * Returns the result of saturated substraction of the two inputs Value1, Value2
646 * Returns the result of Multiplication of Value1 and Value2 and subesquent saturated
672 * Returns the result of saturated MAC operation of the three inputs delayElem, filTap , mac
689 OMX_S32 result; local
691 result = armSatMulS16S32_S32(filTap,delayElem);
693 if ( result > OMX_MAX_S16 )
695 result = OMX_MAX_S32;
697 else if( result < OMX_MIN_S1
844 OMX_S32 result; local
881 OMX_S32 result; local
918 OMX_F64 result; local
[all...]
/frameworks/native/libs/binder/
H A DProcessState.cpp124 status_t result = ipc->transact(0 /*magic*/, 0, data, &reply, 0); local
125 if (result == NO_ERROR) {
158 status_t result = ioctl(mDriverFD, BINDER_SET_CONTEXT_MGR, &dummy); local
159 if (result == 0) {
161 } else if (result == -1) {
185 sp<IBinder> result; local
200 result = b;
205 result.force_set(b);
210 return result;
215 wp<IBinder> result; local
299 status_t result = NO_ERROR; local
313 status_t result = ioctl(fd, BINDER_VERSION, &vers); local
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMidiFile.cpp131 EAS_RESULT result = EAS_OpenFile(mEasData, &mFileLocator, &mEasHandle); local
132 if (result == EAS_SUCCESS) {
136 if (result != EAS_SUCCESS) {
137 ALOGE("EAS_OpenFile failed: [%d]", (int)result);
161 EAS_RESULT result = EAS_OpenFile(mEasData, &mFileLocator, &mEasHandle); local
164 if (result != EAS_SUCCESS) {
165 ALOGE("EAS_OpenFile failed: [%d]", (int)result);
182 EAS_RESULT result; local
183 if ((result = EAS_Prepare(mEasData, mEasHandle)) != EAS_SUCCESS) {
184 ALOGE("EAS_Prepare failed: [%ld]", result);
238 EAS_RESULT result = EAS_Pause(mEasData, mEasHandle); local
257 EAS_RESULT result; local
323 EAS_RESULT result = EAS_Init(&easData); local
433 EAS_RESULT result = EAS_FAILURE; local
[all...]

Completed in 2428 milliseconds

1234567891011>>