Searched refs:__errno_location (Results 1 - 16 of 16) sorted by relevance
/third_party/musl/libc-test/src/functionalext/supplement/errno/ |
H A D | __errno_location.c | 22 * @tc.desc : Test the __errno_location method to get the errno address 27 int result = *__errno_location(); in __errno_location_0100() 29 t_error("%s __errno_location get errno code is %d are not want 0\n", __func__, result); in __errno_location_0100() 35 * @tc.desc : The result returned by __errno_location when the value of errno has just been changed 41 int result = *__errno_location(); in __errno_location_0200() 43 t_error("%s __errno_location get errno code is %d are not want %d\n", __func__, result, errno); in __errno_location_0200() 50 * @tc.desc : Test the address returned by __errno_location and compare it with the errno address 55 int *result = __errno_location(); in __errno_location_0300() 57 t_error("%s __errno_location get ptr is %p are not want %p\n", __func__, result, &errno); in __errno_location_0300()
|
/third_party/musl/src/errno/ |
H A D | __errno_location.c | 4 int *__errno_location(void) in __errno_location() function 9 weak_alias(__errno_location, ___errno_location);
|
/third_party/musl/porting/uniproton/kernel/src/errno/ |
H A D | __errno_location.c | 7 int *__errno_location(void) in __errno_location() function 16 weak_alias(__errno_location, ___errno_location);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | errno.h | 15 int *__errno_location(void); 16 #define errno (*__errno_location())
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | errno.h | 15 int *__errno_location(void); 16 #define errno (*__errno_location())
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | errno.h | 15 int *__errno_location(void); 16 #define errno (*__errno_location())
|
/third_party/musl/include/ |
H A D | errno.h | 15 int *__errno_location(void); 16 #define errno (*__errno_location())
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | errno.h | 15 int *__errno_location(void); 16 #define errno (*__errno_location())
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | errno.h | 71 int *__errno_location(void); 72 #define errno (*__errno_location())
|
/third_party/rust/crates/libc/src/unix/redox/ |
H A D | mod.rs | 981 pub fn __errno_location() -> *mut ::c_int; in __errno_location() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/emscripten/ |
H A D | mod.rs | 1779 pub fn __errno_location() -> *mut ::c_int; in __errno_location() functions
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/ |
H A D | mod.rs | 1598 pub fn __errno_location() -> *mut ::c_int; in __errno_location() functions
|
/third_party/rust/crates/nix/src/ |
H A D | errno.rs | 27 libc::__errno_location() in errno_location()
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3980 pub fn __errno_location() -> *mut ::c_int; in __errno_location() functions
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/ |
H A D | mod.rs | 3939 pub fn __errno_location() -> *mut ::c_int; in __errno_location() functions
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 22979 extern int *__errno_location (void) throw () __attribute__ ((__const__)); 23009 _Save_errno() : _M_errno((*__errno_location ())) { (*__errno_location ()) = 0; } 23010 ~_Save_errno() { if ((*__errno_location ()) == 0) (*__errno_location ()) = _M_errno; } 23018 else if ((*__errno_location ()) == 34 [all...] |
Completed in 75 milliseconds