HomeSort by relevance Sort by last modified time
    Searched defs:retVal (Results 1 - 25 of 192) sorted by null

1 2 3 4 5 6 7 8

  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
RemoteMethodReturnMessage.java 59 public Object retVal;
64 return "RemoteMethodReturnMessage[ID="+invocationID+", Value="+retVal.toString()+"]";
  /packages/apps/Nfc/nci/jni/
CondVar.cpp 98 bool retVal = false;
125 retVal = (waitResult == 0); //waited successfully
126 return retVal;
SyncEvent.h 84 bool retVal = mCondVar.wait (mMutex, millisec);
85 return retVal;
PowerSwitch.cpp 162 bool retval = false; local
169 retval = true;
196 retval = setPowerOffSleepState (false);
202 retval = setPowerOffSleepState (true);
206 retval = true;
217 return retval;
231 bool retVal = false;
235 retVal = mCurrActivity != 0;
238 return retVal;
253 bool retVal = false
279 bool retval = false; local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSpannableString.java 39 ArrayList<T> retVal = new ArrayList<T>();
47 retVal.add((T) s);
51 T[] array = (T[]) Array.newInstance(kind, retVal.size());
52 return retVal.toArray(array);
  /external/chromium_org/third_party/libjingle/source/talk/base/
scoped_ref_ptr.h 122 T* retVal = ptr_;
124 return retVal;
  /external/chromium_org/third_party/skia/include/core/
SkTScopedPtr.h 48 T* retVal = fObj;
50 return retVal;
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
CondVar.cpp 100 bool retVal = false;
127 retVal = (waitResult == 0); //waited successfully
128 return retVal;
SyncEvent.h 88 bool retVal = mCondVar.wait (mMutex, millisec);
89 return retVal;
  /external/skia/include/core/
SkTScopedPtr.h 48 T* retVal = fObj;
50 return retVal;
  /external/webrtc/src/system_wrappers/interface/
scoped_refptr.h 98 T* retVal = ptr_;
100 return retVal;
  /frameworks/compile/slang/
slang_rs_ast_replace.h 43 bool retVal = mOldExpr && (mOldExpr == E);
44 if (retVal) {
48 return retVal;
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_task.c 223 void *retVal;
236 if (pthread_join(pHandle->threadID, &retVal))
  /build/tools/acp/
acp.c 43 int retVal = 0;
88 retVal = 1;
99 retVal = 1;
157 retVal = 1;
166 return retVal;
175 int ic, retVal;
248 retVal = process(argc-optind, argv+optind, options);
249 DBUG(("EXIT: %d\n", retVal));
250 return retVal;
  /external/ceres-solver/include/ceres/internal/
scoped_ptr.h 121 C* retVal = ptr_;
123 return retVal;
255 C* retVal = array_;
257 return retVal;
  /external/chromium/base/memory/
scoped_ptr.h 120 C* retVal = ptr_;
122 return retVal;
227 C* retVal = array_;
229 return retVal;
ref_counted.h 254 T* retVal = ptr_;
256 return retVal;
  /external/chromium_org/third_party/icu/source/common/
ucmndata.c 90 int32_t retVal=0;
93 retVal = toc->count;
95 return retVal;
  /external/chromium_org/third_party/icu/source/io/
ufile.c 292 int32_t retVal = -1;
299 retVal = 0;
302 return retVal;
  /external/icu4c/io/
ufile.c 289 int32_t retVal = -1;
296 retVal = 0;
299 return retVal;
  /external/jpeg/
jmemmac.c 159 long retVal;
164 retVal = FSRead ( info->temp_file, &bytes,
166 if ( retVal != noErr || bytes != byte_count )
177 long retVal;
182 retVal = FSWrite ( info->temp_file, &bytes,
184 if ( retVal != noErr || bytes != byte_count )
  /external/qemu/distrib/jpeg-6b/
jmemmac.c 159 long retVal;
164 retVal = FSRead ( info->temp_file, &bytes,
166 if ( retVal != noErr || bytes != byte_count )
177 long retVal;
182 retVal = FSWrite ( info->temp_file, &bytes,
184 if ( retVal != noErr || bytes != byte_count )
  /external/webrtc/src/system_wrappers/source/
condition_variable_win.cc 137 BOOL retVal = _PSleepConditionVariableCS(&_conditionVariable,
139 return (retVal == 0) ? false : true;
160 const bool retVal = (result != WAIT_TIMEOUT);
178 return retVal;
cpu_linux.cc 76 int retVal = -1;
79 retVal = 0;
83 retVal = (int)(100 * (deltaBusy) / (deltaBusy + deltaIdle));
88 return retVal;
106 return retVal;
event_posix.cc 128 int retVal = 0;
161 retVal = pthread_cond_timedwait(&cond, &mutex, &tEnd);
163 retVal = pthread_cond_wait(&cond, &mutex);
170 switch(retVal)
183 int retVal = 0;
191 retVal = pthread_cond_timedwait(&cond, &mutex, &tPulse);
197 switch(retVal)

Completed in 453 milliseconds

1 2 3 4 5 6 7 8