Searched refs:err (Results 1 - 25 of 444) sorted by relevance

1234567891011>>

/bionic/libc/kernel/arch-arm/asm/
H A Duaccess.h49 #define __get_user_error(x,ptr,err) ({ __get_user_err((x),(ptr),err); (void) 0; })
50 #define __get_user_err(x,ptr,err) do { unsigned long __gu_addr = (unsigned long)(ptr); unsigned long __gu_val; __chk_user_ptr(ptr); switch (sizeof(*(ptr))) { case 1: __get_user_asm_byte(__gu_val,__gu_addr,err); break; case 2: __get_user_asm_half(__gu_val,__gu_addr,err); break; case 4: __get_user_asm_word(__gu_val,__gu_addr,err); break; default: (__gu_val) = __get_user_bad(); } (x) = (__typeof__(*(ptr)))__gu_val; } while (0)
51 #define __get_user_asm_byte(x,addr,err) __asm__ __volatile__( "1: ldrbt %1,[%2],#0\n" "2:\n" " .section .fixup,\"ax\"\n" " .align 2\n" "3: mov %0, %3\n" " mov %1, #0\n" " b 2b\n" " .previous\n" " .section __ex_table,\"a\"\n" " .align 3\n" " .long 1b, 3b\n" " .previous" : "+r" (err), "=&r" (x) : "r" (addr), "i" (-EFAULT) : "cc")
54 #define __get_user_asm_half(x,__gu_addr,err) ({ unsigned long __b1, __b2; __get_user_asm_byte(__b1, __gu_addr, err); __get_user_asm_byt
[all...]
/bionic/libc/stdio/
H A Dasprintf.c38 goto err;
44 goto err;
48 goto err;
52 err:
H A Dvasprintf.c38 goto err;
42 goto err;
46 goto err;
50 err:
/bionic/libthread_db/
H A Dlibthread_db.c130 td_err_e err; local
133 err = ps_pglobal_lookup(NULL, NULL, gSymbols[SYM_TD_CREATE], &bkpt_addr);
134 if (err) {
135 return err;
138 err = td_ta_thr_iter(agent, _event_getmsg_helper, bkpt_addr, 0, 0, NULL, 0);
139 if (err != 0x42) {
186 int32_t err; local
196 err = ps_pglobal_lookup(NULL, NULL, gSymbols[SYM_TD_CREATE], &notify_out->u.bptaddr);
197 if (err) {
219 td_err_e err local
[all...]
/bionic/libc/arch-arm/syscalls/
H A D__brk.S3 #include <linux/err.h>
H A D__fcntl.S3 #include <linux/err.h>
H A D__fcntl64.S3 #include <linux/err.h>
H A D__fork.S3 #include <linux/err.h>
H A D__fstatfs64.S3 #include <linux/err.h>
H A D__getcpu.S3 #include <linux/err.h>
H A D__getcwd.S3 #include <linux/err.h>
H A D__getpriority.S3 #include <linux/err.h>
H A D__ioctl.S3 #include <linux/err.h>
H A D__open.S3 #include <linux/err.h>
H A D__openat.S3 #include <linux/err.h>
H A D__ptrace.S3 #include <linux/err.h>
H A D__reboot.S3 #include <linux/err.h>
H A D__rt_sigaction.S3 #include <linux/err.h>
H A D__rt_sigprocmask.S3 #include <linux/err.h>
H A D__rt_sigtimedwait.S3 #include <linux/err.h>
H A D__sched_getaffinity.S3 #include <linux/err.h>
H A D__set_tls.S3 #include <linux/err.h>
H A D__setresuid.S3 #include <linux/err.h>
H A D__setreuid.S3 #include <linux/err.h>
H A D__setuid.S3 #include <linux/err.h>

Completed in 165 milliseconds

1234567891011>>