HomeSort by relevance Sort by last modified time
    Searched defs:result (Results 1526 - 1550 of 11920) sorted by null

<<61626364656667686970>>

  /frameworks/support/v4/jellybean-mr2/android/support/v4/app/
ActionBarDrawerToggleJellybeanMR2.java 65 final Drawable result = a.getDrawable(0); local
67 return result;
  /frameworks/support/v4/jellybean-mr2/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatJellybeanMr2.java 35 Object result = ((AccessibilityNodeInfo) info).findAccessibilityNodeInfosByViewId(viewId); local
36 return (List<Object>) result;
  /frameworks/support/v4/tests/java/android/support/v4/app/
StrictViewFragment.java 34 final View result = inflater.inflate(R.layout.strict_view_fragment, container, false); local
36 return result;
  /frameworks/support/v4/tests/java/android/support/v4/app/test/
FragmentResultActivity.java 23 * A simple Activity used to return a result.
26 public static final String EXTRA_RESULT_CODE = "result";
33 String result = getIntent().getStringExtra(EXTRA_RESULT_CONTENT); local
35 intent.putExtra(EXTRA_RESULT_CONTENT, result);
  /frameworks/volley/src/main/java/com/android/volley/
Response.java 41 /** Returns a successful response containing the parsed result. */
42 public static <T> Response<T> success(T result, Cache.Entry cacheEntry) {
43 return new Response<T>(result, cacheEntry);
55 public final T result; field in class:Response
74 private Response(T result, Cache.Entry cacheEntry) {
75 this.result = result;
81 this.result = null;
  /frameworks/wilhelm/src/itf/
IAndroidEffectCapabilities.c 28 result = SL_RESULT_PARAMETER_INVALID;
34 result = SL_RESULT_SUCCESS;
51 result = SL_RESULT_PARAMETER_INVALID;
67 result = SL_RESULT_SUCCESS;
93 SLresult result = android_genericFx_queryNumEffects(&numEffects); local
94 if (SL_RESULT_SUCCESS != result) {
95 SL_LOGE("android_genericFx_queryNumEffects %u", result);
107 // Remember the first failing result code, but keep going
108 if (SL_RESULT_SUCCESS == result) {
109 result = result2
    [all...]
IBufferQueue.c 53 result = SL_RESULT_PARAMETER_INVALID;
62 result = SL_RESULT_BUFFER_INSUFFICIENT;
68 result = SL_RESULT_SUCCESS;
71 interface_unlock_exclusive_attributes(thiz, ((SL_RESULT_SUCCESS == result) &&
83 result = SL_RESULT_SUCCESS; local
91 result = android_audioPlayer_bufferQueue_onClear(audioPlayer);
94 if (SL_RESULT_SUCCESS == result) {
129 result = SL_RESULT_PARAMETER_INVALID;
142 result = SL_RESULT_SUCCESS;
160 result = SL_RESULT_SUCCESS
    [all...]
ILEDArray.c 30 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;
IMetadataTraversal.c 34 result = SL_RESULT_SUCCESS;
38 result = SL_RESULT_PARAMETER_INVALID;
51 result = SL_RESULT_PARAMETER_INVALID;
58 result = SL_RESULT_SUCCESS;
71 result = SL_RESULT_PARAMETER_INVALID;
78 result = SL_RESULT_SUCCESS;
91 result = SL_RESULT_FEATURE_UNSUPPORTED; local
106 result = SL_RESULT_PARAMETER_INVALID;
  /frameworks/wilhelm/tests/sandbox/
engine.c 27 SLresult result; local
29 result = slQueryNumSupportedEngineInterfaces(&numSupportedInterfaces);
30 assert(SL_RESULT_SUCCESS == result);
31 result = slQueryNumSupportedEngineInterfaces(NULL);
32 assert(SL_RESULT_PARAMETER_INVALID == result);
45 result = slQuerySupportedEngineInterfaces(index, &interfaceID);
47 assert(SL_RESULT_SUCCESS == result);
53 assert(SL_RESULT_PARAMETER_INVALID == result);
55 result = slQuerySupportedEngineInterfaces(index, NULL);
56 assert(SL_RESULT_PARAMETER_INVALID == result);
    [all...]
srcsink.c 26 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 = (*engineEngine)->CreateAudioPlayer(engineEngine, &playerObject, &audioSrc
    [all...]
xa.c 26 XAresult result; local
29 result = xaCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
30 printf("result = %d\n", result);
31 assert(XA_RESULT_SUCCESS == result);
34 result = (*engineObject)->Realize(engineObject, XA_BOOLEAN_FALSE);
35 printf("result = %d\n", result);
38 result = (*engineObject)->GetInterface(engineObject, XA_IID_ENGINE, &engineEngine);
39 printf("result = %d\n", result)
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/
viddec_mp4_parse.c 23 int result = VIDDEC_PARSE_SUCESS; local
79 result = VIDDEC_PARSE_FRMDONE;
84 return result;
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
start_manager.c 89 inv_error_t result,first_error; local
95 result = inv_start_cb.start_cb[kk]();
96 if (result && (first_error == INV_SUCCESS)) {
97 first_error = result;
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
ml_load_dmp.c 219 inv_error_t result = INV_SUCCESS; local
236 result = INV_ERROR_FILE_WRITE;
241 return result;
246 inv_error_t result = INV_SUCCESS; local
247 result = inv_write_dmp_data(fd, DMP_VERSION, DMP_CODE_SIZE);
248 return result;
263 MPL_LOGI("Result=%d", i);
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
start_manager.c 89 inv_error_t result,first_error; local
95 result = inv_start_cb.start_cb[kk]();
96 if (result && (first_error == INV_SUCCESS)) {
97 first_error = result;
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_qclient.cpp 101 status_t result = NO_INIT; local
104 result = NO_ERROR;
106 return result;
  /hardware/qcom/display/msm8960/libqservice/
QService.cpp 67 status_t result = NO_ERROR; local
69 result = mClient->notifyCallback(SCREEN_REFRESH, 0);
71 return result;
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_dmn_conn_glue_msg.c 86 int result; local
87 result = loc_eng_dmn_conn_glue_piperemove(q_path, msgqid);
88 return result;
113 int result; local
117 result = loc_eng_dmn_conn_glue_pipewrite(msgqid, msgp, msgsz);
118 if (result != (int) msgsz) {
119 LOC_LOGE("%s:%d] pipe broken %d, msgsz = %d\n", __func__, __LINE__, result, (int) msgsz);
123 return result;
148 int result; local
151 result = loc_eng_dmn_conn_glue_piperead(msgqid, &(pmsg->msgsz), sizeof(pmsg->msgsz))
    [all...]
loc_eng_dmn_conn_thread_helper.c 55 int result; local
58 result = pthread_cond_init( &thelper->thread_cond, NULL);
59 if (result) {
60 return result;
63 result = pthread_mutex_init(&thelper->thread_mutex, NULL);
64 if (result) {
67 return result;
90 int result, ret_result = 0; local
91 result = pthread_cond_destroy( &thelper->thread_cond);
92 if (result) {
125 int result = 0; local
160 int result; local
192 int result = thelper->thread_ready; local
223 int result = 0; local
305 int result; local
386 int result; local
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
loc_eng_dmn_conn_glue_msg.c 86 int result; local
87 result = loc_eng_dmn_conn_glue_piperemove(q_path, msgqid);
88 return result;
113 int result; local
117 result = loc_eng_dmn_conn_glue_pipewrite(msgqid, msgp, msgsz);
118 if (result != (int) msgsz) {
119 LOC_LOGE("%s:%d] pipe broken %d, msgsz = %d\n", __func__, __LINE__, result, (int) msgsz);
123 return result;
148 int result; local
151 result = loc_eng_dmn_conn_glue_piperead(msgqid, &(pmsg->msgsz), sizeof(pmsg->msgsz))
    [all...]
loc_eng_dmn_conn_thread_helper.c 55 int result; local
58 result = pthread_cond_init( &thelper->thread_cond, NULL);
59 if (result) {
60 return result;
63 result = pthread_mutex_init(&thelper->thread_mutex, NULL);
64 if (result) {
67 return result;
90 int result, ret_result = 0; local
91 result = pthread_cond_destroy( &thelper->thread_cond);
92 if (result) {
125 int result = 0; local
160 int result; local
192 int result = thelper->thread_ready; local
223 int result = 0; local
305 int result; local
386 int result; local
    [all...]
  /hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
loc_eng_dmn_conn_glue_msg.c 86 int result; local
87 result = loc_eng_dmn_conn_glue_piperemove(q_path, msgqid);
88 return result;
113 int result; local
117 result = loc_eng_dmn_conn_glue_pipewrite(msgqid, msgp, msgsz);
118 if (result != (int) msgsz) {
119 LOC_LOGE("%s:%d] pipe broken %d, msgsz = %d\n", __func__, __LINE__, result, (int) msgsz);
123 return result;
148 int result; local
151 result = loc_eng_dmn_conn_glue_piperead(msgqid, &(pmsg->msgsz), sizeof(pmsg->msgsz))
    [all...]
loc_eng_dmn_conn_thread_helper.c 55 int result; local
58 result = pthread_cond_init( &thelper->thread_cond, NULL);
59 if (result) {
60 return result;
63 result = pthread_mutex_init(&thelper->thread_mutex, NULL);
64 if (result) {
67 return result;
90 int result, ret_result = 0; local
91 result = pthread_cond_destroy( &thelper->thread_cond);
92 if (result) {
125 int result = 0; local
160 int result; local
192 int result = thelper->thread_ready; local
223 int result = 0; local
305 int result; local
386 int result; local
    [all...]
  /hardware/qcom/gps/msm8909/utils/
MsgTask.cpp 88 msq_q_err_type result = msg_q_rcv((void*)mQ, (void **)&msg); local
89 if (eMSG_Q_SUCCESS != result) {
91 loc_get_msg_q_status(result));

Completed in 610 milliseconds

<<61626364656667686970>>