/third_party/ltp/testcases/kernel/syscalls/acct/ |
H A D | acct02.c | 17 * parsed into the corresponding acct structure. Since it cannot be guaranteed 23 * 4d9570158b626 kernel/acct.c: fix the acct->needcheck check in check_free_space() 33 #include "lapi/acct.h" 39 #define ACCT_MEMBER(x) (v3 ? ((struct acct_v3 *)acc)->x : ((struct acct *)acc)->x) 50 struct acct v0; 168 TEST(acct(OUTPUT_FILE)); in run() 170 tst_brk(TBROK | TTERRNO, "Could not set acct output file"); in run() 174 acct(NULL); in run() 180 tst_res(TFAIL, "acct fil in run() [all...] |
H A D | acct01.c | 12 * Verify that acct() returns proper errno on failure. 81 TEST(acct(NULL)); in setup() 83 tst_brk(TCONF, "acct() system call isn't configured in kernel"); in setup() 90 TEST(acct(FILE_TMPFILE)); in setup() 92 tst_brk(TBROK | TTERRNO, "acct failed unexpectedly"); in setup() 94 /* turn off acct, so we are in a known state */ in setup() 95 TEST(acct(NULL)); in setup() 97 tst_brk(TBROK | TTERRNO, "acct(NULL) failed"); in setup() 114 TST_EXP_FAIL(acct(*tcase->filename), tcase->exp_errno, in verify_acct() 115 "acct( in verify_acct() [all...] |
/third_party/python/Lib/ |
H A D | ftplib.py | 78 host, user, passwd, acct, timeout, source_address, encoding 109 def __init__(self, host='', user='', passwd='', acct='', 115 and user, passwd, acct (for login()). 123 self.login(user, passwd, acct) 395 def login(self, user = '', passwd = '', acct = ''): 401 if not acct: 402 acct = '' 416 resp = self.sendcmd('ACCT ' + acct) 542 def acct(self, password): member in FTP 718 def __init__(self, host='', user='', passwd='', acct [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
H A D | acct.c | 28 int result = acct(NULL); in acct_0100() 46 int result = acct(filePath); in acct_0200()
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | acct.h | 16 struct acct { struct 66 int acct(const char *);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | acct.h | 16 struct acct { struct 66 int acct(const char *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | acct.h | 16 struct acct { struct 66 int acct(const char *);
|
/third_party/ltp/include/lapi/ |
H A D | acct.h | 10 #include <sys/acct.h> 18 struct acct { struct
|
/third_party/musl/include/sys/ |
H A D | acct.h | 16 struct acct { struct 66 int acct(const char *);
|
/third_party/musl/src/unistd/ |
H A D | acct.c | 5 int acct(const char *filename) in acct() function
|
/third_party/libwebsockets/lib/plat/windows/ |
H A D | windows-spawn.c | 155 lws_usec_t acct[4]; in lws_spawn_reap() local 219 memset(acct, 0, sizeof(acct)); in lws_spawn_reap() 221 cb(opaque, acct, &lsi, 0); in lws_spawn_reap()
|
/third_party/toybox/toys/pending/ |
H A D | bootchartd.c | 150 acct("kernel_procs_acct"); in start_logging() 178 if (TT.proc_accounting) acct(NULL); in stop_logging()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | ieee802_1x.h | 62 struct radius_msg *msg, int acct);
|
H A D | ieee802_1x.c | 622 struct radius_msg *msg, int acct) in add_sqlite_radius_attr() 643 sqlite3_bind_text(stmt, 2, acct ? "acct" : "auth", 4, SQLITE_STATIC); in add_sqlite_radius_attr() 621 add_sqlite_radius_attr(struct hostapd_data *hapd, struct sta_info *sta, struct radius_msg *msg, int acct) add_sqlite_radius_attr() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | ieee802_1x.h | 63 struct radius_msg *msg, int acct);
|
/third_party/musl/porting/liteos_a/user/include/ |
H A D | unistd.h | 198 int acct(const char *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | unistd.h | 173 int acct(const char *);
|
/third_party/musl/porting/linux/user/include/ |
H A D | unistd.h | 200 int acct(const char *);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | unistd.h | 198 int acct(const char *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | unistd.h | 173 int acct(const char *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | unistd.h | 178 int acct(const char *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | unistd.h | 173 int acct(const char *);
|
/third_party/musl/include/ |
H A D | unistd.h | 237 int acct(const char *);
|
/third_party/rust/crates/nix/test/ |
H A D | test_unistd.rs | 627 acct::enable(path).unwrap(); in test_acct() 637 acct::disable().unwrap(); in test_acct()
|
/third_party/rust/crates/nix/src/ |
H A D | unistd.rs | 1852 #![feature = "acct"] 1855 pub mod acct { modules 1862 /// See also [acct(2)](https://linux.die.net/man/2/acct) 1865 unsafe { libc::acct(cstr.as_ptr()) } in enable() 1873 let res = unsafe { libc::acct(ptr::null()) }; in disable()
|