Home
last modified time | relevance | path

Searched defs:result (Results 1 – 25 of 92) sorted by relevance

1234

/bionic/tests/libs/
Ddlsym_from_this_functions.cpp25 int* result = static_cast<int*>(dlsym(RTLD_DEFAULT, "test_dlsym_symbol")); in lookup_dlsym_symbol_using_RTLD_DEFAULT() local
35 int* result = static_cast<int*>(dlsym(RTLD_DEFAULT, "test_dlsym_symbol2")); in lookup_dlsym_symbol2_using_RTLD_DEFAULT() local
45 int* result = static_cast<int*>(dlsym(RTLD_NEXT, "test_dlsym_symbol")); in lookup_dlsym_symbol_using_RTLD_NEXT() local
/bionic/libc/bionic/
Dfork.cpp45 int result = syscall(__NR_clone, FORK_FLAGS, NULL, NULL, &(self->tid), NULL); in fork() local
47 int result = syscall(__NR_clone, FORK_FLAGS, NULL, NULL, NULL, &(self->tid)); in fork() local
Dstatvfs.cpp51 int fstatfs(int fd, struct statfs* result) { in fstatfs()
61 int statfs(const char* path, struct statfs* result) { in statfs()
71 int statvfs(const char* path, struct statvfs* result) { in statvfs()
82 int fstatvfs(int fd, struct statvfs* result) { in fstatvfs()
D__vsprintf_chk.cpp49 int result = vsnprintf(dest, dest_len_from_compiler, format, va); in __vsprintf_chk() local
71 int result = __vsprintf_chk(dest, flags, dest_len_from_compiler, format, va); in __sprintf_chk() local
Dsysinfo.cpp53 int result = 0; in get_nprocs_conf() local
69 int result = 0; in get_nprocs() local
Dgetpriority.c34 int result = __getpriority(which, who); in getpriority() local
Dstrsignal.cpp39 char* result = const_cast<char*>(__strsignal_lookup(signal_number)); in strsignal() local
Dstrtold.cpp36 long double result; in strtold() local
Dstrerror.cpp38 char* result = const_cast<char*>(__strerror_lookup(error_number)); in strerror() local
Dsigpending.cpp37 int result = __rt_sigpending(&set, sizeof(set)); in sigpending() local
Dpthread_getcpuclockid.cpp40 clockid_t result = ~static_cast<clockid_t>(thread->tid) << 3; in pthread_getcpuclockid() local
Dsigwait.cpp43 int result = __rt_sigtimedwait(sigset.get(), NULL, NULL, sizeof(sigset)); in sigwait() local
Dlibgen.cpp46 int result; in basename_r() local
97 int result; in dirname_r() local
Dpthread_sigmask.cpp37 int result = sigprocmask(how, new_set, old_set); in pthread_sigmask() local
Dclock_getcpuclockid.cpp38 clockid_t result = ~static_cast<clockid_t>(pid) << 3; in clock_getcpuclockid() local
Dtime64.c64 # define LOCALTIME_R(clock, result) localtime_r(clock, result) argument
66 # define LOCALTIME_R(clock, result) fake_localtime_r(clock, result) argument
69 # define GMTIME_R(clock, result) gmtime_r(clock, result) argument
71 # define GMTIME_R(clock, result) fake_gmtime_r(clock, result) argument
427 struct tm * fake_localtime_r(const time_t *clock, struct tm *result) { in fake_localtime_r()
445 struct tm * fake_gmtime_r(const time_t *clock, struct tm *result) { in fake_gmtime_r()
748 char *asctime64_r( const struct TM* date, char *result ) { in asctime64_r()
779 char *ctime64_r( const Time64_T* time, char* result ) { in ctime64_r()
Dfchmod.cpp40 int result = ___fchmod(fd, mode); in fchmod() local
Dfchmodat.cpp60 int result = fchmod(fd, mode); in fchmodat() local
Dfgetxattr.cpp40 ssize_t result = ___fgetxattr(fd, name, value, size); in fgetxattr() local
Dfsetxattr.cpp40 int result = ___fsetxattr(fd, name, value, size, flags); in fsetxattr() local
/bionic/libc/private/
DThreadLocalBuffer.h47 T* result = reinterpret_cast<T*>(pthread_getspecific(key_)); in get() local
/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_csqrt.c51 double complex result; in csqrt() local
Ds_csqrtl.c51 long double complex result; in csqrtl() local
Ds_fmaf.c45 double xy, result; in fmaf() local
/bionic/tests/
Dnetdb_test.cpp200 int result = gethostbyname_r("localhost", &hent, buf, sizeof(buf), &hp, &err); in TEST() local
222 int result = gethostbyname2_r("localhost", AF_INET, &hent, buf, sizeof(buf), &hp, &err); in TEST() local
251 int result = gethostbyaddr_r(&addr, sizeof(addr), AF_INET, &hent, buf, sizeof(buf), &hp, &err); in TEST() local
273 int result = gethostbyname_r("localhost", &hent, buf, sizeof(buf), &hp, &err); in TEST() local
283 int result = gethostbyname2_r("localhost", AF_INET, &hent, buf, sizeof(buf), &hp, &err); in TEST() local
294 int result = gethostbyaddr_r(&addr, sizeof(addr), AF_INET, &hent, buf, sizeof(buf), &hp, &err); in TEST() local

1234