/external/lldb/test/functionalities/stop-hook/ |
main.cpp | 28 int rc = c(val); local 34 return rc; // End of the line range for which stop-hook is to be run.
|
/external/lldb/test/python_api/thread/ |
main2.cpp | 28 int rc = c(val); local 34 return rc; // we should reach here after 3 step-over's.
|
/external/openssh/ |
audit-linux.c | 46 int audit_fd, rc, saved_errno; local 56 rc = audit_log_acct_message(audit_fd, AUDIT_USER_LOGIN, 65 if ((rc == -EPERM) && (geteuid() != 0)) 66 rc = 0; 68 return (rc >= 0);
|
/external/skia/tools/ |
ProcStats.cpp | 52 int rc = fscanf(statm, "%*d %lld", &rssPages); local 54 if (rc != 1) {
|
/external/toybox/toys/other/ |
eject.c | 71 int rc = ioctl(fd, 0x5326, &out); // CDROM_DRIVE_STATUS local 72 if ((toys.optflags & FLAG_t) || rc == 2) // CDS_TRAY_OPEN
|
/external/toybox/toys/posix/ |
ln.c | 48 int rc; local 60 rc = mkstemp(new); 61 if (rc >= 0) { 62 close(rc); 67 rc = (toys.optflags & FLAG_s) ? symlink(try, new) : link(try, new); 69 if (!rc) { 72 rc = rename(new, oldnew); 74 if (rc && unlink(new)) perror_msg("unlink '%s'", new); 80 if (rc)
|
/external/valgrind/drd/tests/ |
bug-235681.c | 20 int rc; local 25 rc = pthread_mutex_lock(&mutex); 26 assert(!rc); 31 rc = pthread_cond_wait(&cond_var, &mutex); 32 assert(!rc); 39 rc = pthread_mutex_unlock(&mutex); 40 assert(!rc); 50 int rc; local 56 rc = pthread_mutex_init(&mutex, NULL); 57 assert(!rc); [all...] |
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/ |
l_mac.h | 126 register Word32 rc = var2; local 133 : "r"(rb), "r"(rc) 137 : "=r"(rc) 141 return (rc);
|
l_msu.h | 131 register Word32 rc = var2; local 139 : "r"(rb), "r"(rc)
|
mpy_32_16.h | 123 register Word32 rc = var2; local 130 : "r"(ra), "r"(rc) 143 : "r"(rb), "r"(rc)
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
lpc.cpp | 432 Word16 rc[4]; // First 4 reflection coefficients Q15 444 Levinson(st->levinsonSt, rHigh, rLow, &a[MP1], rc); 451 Levinson(st->levinsonSt, rHigh, rLow, &a[MP1 * 3], rc); 460 Levinson(st->levinsonSt, rHigh, rLow, &a[MP1 * 3], rc); 496 Word16 rc[4]; /* First 4 reflection coefficients Q15 */ local 508 Levinson(st->levinsonSt, rHigh, rLow, &a[MP1], rc, pOverflow); 515 Levinson(st->levinsonSt, rHigh, rLow, &a[MP1 * 3], rc, pOverflow); 524 Levinson(st->levinsonSt, rHigh, rLow, &a[MP1 * 3], rc, pOverflow);
|
/hardware/qcom/camera/QCamera2/stack/common/ |
cam_semaphore.h | 65 int rc = 0; local 68 rc = pthread_cond_wait(&(s->cond), &(s->mutex)); 71 return rc;
|
/system/core/fs_mgr/ |
fs_mgr_format.c | 37 int fd, rc = 0; local 55 rc = make_ext4fs_internal(fd, NULL, NULL, fs_mnt_point, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL); 56 if (rc) { 57 ERROR("make_ext4fs returned %d.\n", rc); 61 return rc; 68 int rc = 0; local 84 pid_t p = waitpid(pid, &rc, 0); 87 rc = -1; 90 if (WIFEXITED(rc)) { 91 rc = WEXITSTATUS(rc) 106 int rc = -EINVAL; local [all...] |
/system/core/gatekeeperd/ |
IUserManager.cpp | 37 status_t rc = remote()->transact(GET_CREDENTIAL_OWNER_PROFILE, data, &reply, 0); local 38 if (rc != NO_ERROR) { 39 ALOGE("%s: failed (%d)\n", __func__, rc);
|
/system/core/logwrapper/ |
logwrapper.c | 57 int rc; local 83 rc = android_fork_execvp_ext(argc, &argv[0], &status, true, 85 if (!rc) { 87 rc = WEXITSTATUS(status); 89 rc = -ECHILD; 97 return rc;
|
/cts/tests/tests/os/src/android/os/cts/ |
RemoteCallbackListTest.java | 89 MockRemoteCallbackList<IInterface> rc = new MockRemoteCallbackList<IInterface>(); local 97 rc.register(null); 104 rc.unregister(null); 112 assertTrue(rc.register(mSecondaryService)); 113 int index = rc.beginBroadcast(); 115 IInterface actual = rc.getBroadcastItem(index - 1); 118 // Test finishBroadcast(Is it valid to use rc.getBroadcastItem after finishBroadcast) 119 rc.finishBroadcast(); 120 assertTrue(rc.unregister(mSecondaryService)); 122 rc.register(mSecondaryService) 139 MockRemoteCallbackList<IInterface> rc = new MockRemoteCallbackList<IInterface>(); local [all...] |
/art/runtime/gc/allocator/ |
dlmalloc.cc | 69 int rc = madvise(start, length, MADV_DONTNEED); local 70 if (UNLIKELY(rc != 0)) { 71 errno = rc;
|
/art/runtime/ |
runtime_android.cc | 68 int rc = 0; local 69 rc += sigaction(SIGSEGV, &action, &old_action); 70 CHECK_EQ(rc, 0);
|
zip_archive.cc | 84 int rc = fcntl(fd, F_SETFD, flags | FD_CLOEXEC); local 85 if (rc == -1) {
|
/bionic/libc/bionic/ |
libgen.cpp | 155 int rc = basename_r(path, buf, g_basename_tls_buffer.size()); local 156 return (rc < 0) ? NULL : buf; 161 int rc = dirname_r(path, buf, g_dirname_tls_buffer.size()); local 162 return (rc < 0) ? NULL : buf;
|
tmpfile.cpp | 81 int rc = fstat(fd, &sb); local 82 if (rc == -1) {
|
/device/asus/flo/camera/QCamera2/HAL/ |
QCamera2Factory.cpp | 131 int rc; local 138 rc = QCamera2HardwareInterface::getCapabilities(camera_id, info); 140 return rc; 159 int rc = NO_ERROR; local 168 rc = hw->openCamera(hw_device); 169 if (rc != NO_ERROR) { 172 return rc;
|
QCameraThermalAdapter.cpp | 63 int rc = NO_ERROR; local 71 rc = UNKNOWN_ERROR; 79 rc = UNKNOWN_ERROR; 87 rc = UNKNOWN_ERROR; 96 rc = UNKNOWN_ERROR; 103 rc = UNKNOWN_ERROR; 109 return rc; 120 return rc; 152 int rc = 0; local 157 rc = instance.mCallback->thermalEvtHandle(lvl, userdata, data) [all...] |
/device/asus/flo/camera/QCamera2/HAL3/ |
QCamera3Factory.cpp | 133 int rc; local 141 rc = QCamera3HardwareInterface::getCamInfo(camera_id, info); 143 return rc; 162 int rc = NO_ERROR; local 171 rc = hw->openCamera(hw_device); 172 if (rc != 0) { 175 return rc;
|
/device/asus/flo/camera/QCamera2/stack/mm-camera-interface/src/ |
mm_camera_sock.c | 56 int rc; local 79 if((rc = connect(socket_fd, (struct sockaddr *) &sock_addr,
|