/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; })
|
/external/conscrypt/src/openjdk/native/ |
NetFd.h | 59 typeof (exp) _rc; \ 61 _rc = (exp); \ 62 if (_rc == -1) { \ 67 } while (_rc == -1); \ 68 _rc; })
|
JNIHelp.h | 129 typeof (exp) _rc; \ 131 _rc = (exp); \ 132 } while (_rc == -1 && errno == EINTR); \ 133 _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 | 43 __typeof__(exp) _rc; \ 45 _rc = (exp); \ 46 } while (_rc == -1 && errno == EINTR); \ 47 _rc; })
|
/frameworks/base/cmds/idmap/ |
idmap.h | 16 typeof (exp) _rc; \ 18 _rc = (exp); \ 19 } while (_rc == -1 && errno == EINTR); \ 20 _rc; })
|
/system/core/include/cutils/ |
fs.h | 31 typeof (exp) _rc; \ 33 _rc = (exp); \ 34 } while (_rc == -1 && errno == EINTR); \ 35 _rc; })
|
/system/core/liblog/ |
log_portability.h | 75 __typeof__(exp) _rc; \ 77 _rc = (exp); \ 78 } while (_rc == -1 && errno == EINTR); \ 79 _rc; })
|
/system/core/include/utils/ |
Compat.h | 75 typeof (exp) _rc; \ 77 _rc = (exp); \ 78 } while (_rc == -1 && errno == EINTR); \ 79 _rc; })
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
ICURWLock.java | 51 public int _rc; field in class:ICURWLock.Stats 77 this._rc = rc; 85 this(rhs._rc, rhs._mrc, rhs._wrc, rhs._wc, rhs._wwc); 92 return " rc: " + _rc + 138 stats._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/android-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; })
|
/external/lzma/CPP/7zip/Compress/ |
Bcj2Coder.cpp | 41 _rc.FlushData();
42 return _rc.FlushStream();
55 if (!_rc.Create(1 << 20)) return E_OUTOFMEMORY;
78 _rc.SetStream(outStreams[3]); _rc.Init();
132 _statusEncoder[index].Encode(&_rc, 0);
204 _statusEncoder[index].Encode(&_rc, 1);
213 _statusEncoder[index].Encode(&_rc, 0);
228 _rc.GetProcessedSize();
277 if (!_rc.Create(_inBufSizes[3])) return E_OUTOFMEMORY; [all...] |
/libnativehelper/include/nativehelper/ |
JNIHelp.h | 199 typeof (exp) _rc; \ 201 _rc = (exp); \ 202 } while (_rc == -1 && errno == EINTR); \ 203 _rc; })
|
/development/ndk/platforms/android-12/include/ |
unistd.h | 202 typeof (exp) _rc; \ 204 _rc = (exp); \ 205 } while (_rc == -1 && errno == EINTR); \ 206 _rc; })
|
/development/ndk/platforms/android-21/include/ |
unistd.h | 189 __typeof__(exp) _rc; \ 191 _rc = (exp); \ 192 } while (_rc == -1 && errno == EINTR); \ 193 _rc; })
|
/development/ndk/platforms/android-3/include/ |
unistd.h | 195 typeof (exp) _rc; \ 197 _rc = (exp); \ 198 } while (_rc == -1 && errno == EINTR); \ 199 _rc; })
|
/development/ndk/platforms/android-8/include/ |
unistd.h | 196 typeof (exp) _rc; \ 198 _rc = (exp); \ 199 } while (_rc == -1 && errno == EINTR); \ 200 _rc; })
|
/development/ndk/platforms/android-9/include/ |
unistd.h | 199 typeof (exp) _rc; \ 201 _rc = (exp); \ 202 } while (_rc == -1 && errno == EINTR); \ 203 _rc; })
|
/frameworks/base/libs/androidfw/ |
StreamingZipInflater.cpp | 37 typeof (exp) _rc; \ 39 _rc = (exp); \ 40 } while (_rc == -1 && errno == EINTR); \ 41 _rc; })
|
/prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/ |
unistd.h | 207 typeof (exp) _rc; \ 209 _rc = (exp); \ 210 } while (_rc == -1 && errno == EINTR); \ 211 _rc; })
|
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/ |
unistd.h | 207 typeof (exp) _rc; \ 209 _rc = (exp); \ 210 } while (_rc == -1 && errno == EINTR); \ 211 _rc; })
|