Home
last modified time | relevance | path

Searched defs:__status (Results 1 – 5 of 5) sorted by relevance

/aosp12/bionic/libc/include/bits/
H A Dwait.h41 #define WEXITSTATUS(__status) (((__status) & 0xff00) >> 8) argument
44 #define WCOREDUMP(__status) ((__status) & 0x80) argument
47 #define WTERMSIG(__status) ((__status) & 0x7f) argument
50 #define WSTOPSIG(__status) WEXITSTATUS(__status) argument
53 #define WIFEXITED(__status) (WTERMSIG(__status) == 0) argument
56 #define WIFSTOPPED(__status) (WTERMSIG(__status) == 0x7f) argument
59 #define WIFSIGNALED(__status) (WTERMSIG((__status)+1) >= 2) argument
62 #define WIFCONTINUED(__status) ((__status) == 0xffff) argument
H A Dfenv_arm.h50 __uint32_t __status; member
H A Dfenv_x86.h42 __uint16_t __status; member
H A Dfenv_x86_64.h71 __uint32_t __status; /* Status word register */ member
/aosp12/hardware/interfaces/automotive/can/1.0/default/libc++fs/src/filesystem/
H A Doperations.cpp1192 file_status __status(const path& p, error_code* ec) { in __status() function