HomeSort by relevance Sort by last modified time
    Searched refs:_rc (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /frameworks/base/cmds/idmap/
idmap.h 14 typeof (exp) _rc; \
16 _rc = (exp); \
17 } while (_rc == -1 && errno == EINTR); \
18 _rc; })
  /system/core/include/cutils/
fs.h 31 typeof (exp) _rc; \
33 _rc = (exp); \
34 } while (_rc == -1 && errno == EINTR); \
35 _rc; })
  /external/conscrypt/src/compat/native/
NetFd.h 59 typeof (exp) _rc; \
61 _rc = (exp); \
62 if (_rc == -1) { \
67 } while (_rc == -1); \
68 _rc; })
JNIHelp.h 185 typeof (exp) _rc; \
187 _rc = (exp); \
188 } while (_rc == -1 && errno == EINTR); \
189 _rc; })
  /libcore/luni/src/main/native/
NetFd.h 59 typeof (exp) _rc; \
61 _rc = (exp); \
62 if (_rc == -1) { \
67 } while (_rc == -1); \
68 _rc; })
Portability.h 97 __typeof__(exp) _rc; \
99 _rc = (exp); \
100 } while (_rc == -1 && errno == EINTR); \
101 _rc; })
  /system/core/include/utils/
Compat.h 71 typeof (exp) _rc; \
73 _rc = (exp); \
74 } while (_rc == -1 && errno == EINTR); \
75 _rc; })
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICURWLock.java 49 public int _rc; field in class:ICURWLock.Stats
75 this._rc = rc;
83 this(rhs._rc, rhs._mrc, rhs._wrc, rhs._wc, rhs._wwc);
90 return " rc: " + _rc +
136 stats._rc++;
  /system/core/base/include/base/
macros.h 27 decltype(exp) _rc; \
29 _rc = (exp); \
30 } while (_rc == -1 && errno == EINTR); \
31 _rc; \
  /device/generic/goldfish/libqemu/
test_host_2.c 37 typeof (exp) _rc; \
39 _rc = (exp); \
40 } while (_rc == -1 && errno == EINTR); \
41 _rc; })
test_host_1.c 39 typeof (exp) _rc; \
41 _rc = (exp); \
42 } while (_rc == -1 && errno == EINTR); \
43 _rc; })
  /system/core/liblog/tests/
liblog_benchmark.cpp 30 typeof (exp) _rc; \
32 _rc = (exp); \
33 } while (((_rc == -1) \
36 || (_rc == -EINTR) \
37 || (_rc == -EAGAIN)); \
38 _rc; })
  /libnativehelper/include/nativehelper/
JNIHelp.h 199 typeof (exp) _rc; \
201 _rc = (exp); \
202 } while (_rc == -1 && errno == EINTR); \
203 _rc; })
  /art/runtime/base/
macros.h 26 decltype(exp) _rc; \
28 _rc = (exp); \
29 } while (_rc == -1 && errno == EINTR); \
30 _rc; })
  /development/ndk/platforms/android-12/include/
unistd.h 207 typeof (exp) _rc; \
209 _rc = (exp); \
210 } while (_rc == -1 && errno == EINTR); \
211 _rc; })
  /development/ndk/platforms/android-21/include/
unistd.h 194 __typeof__(exp) _rc; \
196 _rc = (exp); \
197 } while (_rc == -1 && errno == EINTR); \
198 _rc; })
  /development/ndk/platforms/android-3/include/
unistd.h 200 typeof (exp) _rc; \
202 _rc = (exp); \
203 } while (_rc == -1 && errno == EINTR); \
204 _rc; })
  /development/ndk/platforms/android-8/include/
unistd.h 201 typeof (exp) _rc; \
203 _rc = (exp); \
204 } while (_rc == -1 && errno == EINTR); \
205 _rc; })
  /development/ndk/platforms/android-9/include/
unistd.h 204 typeof (exp) _rc; \
206 _rc = (exp); \
207 } while (_rc == -1 && errno == EINTR); \
208 _rc; })
  /frameworks/base/libs/androidfw/
StreamingZipInflater.cpp 37 typeof (exp) _rc; \
39 _rc = (exp); \
40 } while (_rc == -1 && errno == EINTR); \
41 _rc; })
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
unistd.h 196 typeof (exp) _rc; \
198 _rc = (exp); \
199 } while (_rc == -1 && errno == EINTR); \
200 _rc; })
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
unistd.h 196 typeof (exp) _rc; \
198 _rc = (exp); \
199 } while (_rc == -1 && errno == EINTR); \
200 _rc; })
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/
unistd.h 199 typeof (exp) _rc; \
201 _rc = (exp); \
202 } while (_rc == -1 && errno == EINTR); \
203 _rc; })
  /prebuilts/ndk/5/platforms/android-8/arch-arm/usr/include/
unistd.h 200 typeof (exp) _rc; \
202 _rc = (exp); \
203 } while (_rc == -1 && errno == EINTR); \
204 _rc; })
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/
unistd.h 203 typeof (exp) _rc; \
205 _rc = (exp); \
206 } while (_rc == -1 && errno == EINTR); \
207 _rc; })

Completed in 845 milliseconds

1 2 3 4 5