Searched refs:status (Results 1 - 25 of 27) sorted by relevance

12

/bionic/libc/stdlib/
H A Dexit.c51 exit(int status) argument
58 _exit(status);
/bionic/libc/unistd/
H A Dwait.c31 extern pid_t __wait4 (pid_t pid, int *status, int options, struct rusage *rusage);
34 pid_t wait( int* status )
36 return __wait4( (pid_t)-1, status, 0, NULL );
39 pid_t wait3(int* status, int options, struct rusage* rusage) argument
41 return __wait4( (pid_t)-1, status, options, rusage );
44 pid_t waitpid(pid_t pid, int* status, int options) argument
46 return __wait4( pid, status, options, NULL );
/bionic/libc/kernel/arch-x86/asm/
H A Di387_32.h28 #define __unlazy_fpu( tsk ) do { if (task_thread_info(tsk)->status & TS_USEDFPU) { __save_init_fpu(tsk); stts(); } else tsk->fpu_counter = 0; } while (0)
29 #define __clear_fpu( tsk ) do { if (task_thread_info(tsk)->status & TS_USEDFPU) { asm volatile("fnclex ; fwait"); task_thread_info(tsk)->status &= ~TS_USEDFPU; stts(); } } while (0)
H A Dsigcontext.h45 unsigned short status; member in struct:_fpstate
H A Dprocessor_32.h105 long status; member in struct:i387_fsave_struct
/bionic/libc/kernel/common/linux/
H A Dftape.h47 } status; member in union:__anon239
H A Dmca.h41 enum MCA_AdapterStatus status; member in struct:mca_device
H A Dusbdevice_fs.h69 unsigned int status; member in struct:usbdevfs_iso_packet_desc
75 int status; member in struct:usbdevfs_urb
H A Dtimex.h42 int status; member in struct:timex
H A Dmsm_q6vdec.h121 u32 status; member in struct:vdec_frame_info
196 u32 status; member in struct:vdec_queue_status
H A Dirq.h84 unsigned int status; member in struct:irq_desc
H A Ddm-ioctl.h45 int32_t status; member in struct:dm_target_spec
H A Dmsm_vidc_enc.h263 unsigned char status; member in struct:venc_switch
/bionic/libc/tzcode/
H A Dprivate.h101 #define WIFEXITED(status) (((status) & 0xff) == 0)
104 #define WEXITSTATUS(status) (((status) >> 8) & 0xff)
/bionic/libm/amd64/
H A Dfenv.c106 int mxcsr, status; local
108 __fnstsw(&status);
111 feraiseexcept((mxcsr | status) & FE_ALL_EXCEPT);
/bionic/libm/i387/
H A Dfenv.c156 int mxcsr, status; local
158 __fnstsw(&status);
164 feraiseexcept((mxcsr | status) & FE_ALL_EXCEPT);
/bionic/libc/kernel/arch-arm/asm/arch/
H A Dmux.h20 #define PULL_REG(reg, bit, status) .pull_reg = PULL_DWN_CTRL_##reg, .pull_bit = bit, .pull_val = status,
22 #define PU_PD_REG(reg, status) .pu_pd_reg = PU_PD_SEL_##reg, .pu_pd_val = status,
26 #define PULL_REG_730(reg, bit, status) .pull_reg = OMAP730_IO_CONF_##reg, .pull_bit = bit, .pull_val = status,
/bionic/libc/kernel/common/linux/lockd/
H A Dxdr.h58 u32 status; member in struct:nlm_res
/bionic/libc/kernel/common/media/
H A Dmsm_camera.h93 uint16_t status; member in struct:msm_ctrl_cmd
298 void *status; member in struct:msm_snapshot_pp_status
/bionic/libc/tools/
H A Dbionic_utils.py110 status, version = commands.getstatusoutput( "uname -r" ) # get Linux kernel version
111 if status != 0:
/bionic/linker/
H A Dlinker.c1672 int dev_null, i, status; local
1693 status = fcntl(i, F_GETFL);
1694 } while (status < 0 && errno == EINTR);
1697 if (status >= 0)
1712 status = dup2(dev_null, i);
1713 } while (status < 0 && errno == EINTR);
1715 if (status < 0) {
1726 status = close(dev_null);
1727 } while (status < 0 && errno == EINTR);
1729 if (status <
[all...]
/bionic/libc/kernel/tools/
H A Dutils.py84 status, version = commands.getstatusoutput( "uname -r" ) # get Linux kernel version
85 if status != 0:
/bionic/libc/kernel/common/linux/mtd/
H A Dnand.h198 int (*errstat)(struct mtd_info *mtd, struct nand_chip *this, int state, int status, int page);
/bionic/libc/include/sys/
H A Dlinux-unistd.h189 pid_t __wait4 (pid_t pid, int *status, int options, struct rusage *rusage);
/bionic/libc/bionic/
H A Dpthread.c1447 int status; local
1451 status = __futex_wait_ex(&cond->value, COND_IS_SHARED(cond), oldvalue, reltime);
1454 if (status == (-ETIMEDOUT)) return ETIMEDOUT;

Completed in 722 milliseconds

12