Home
last modified time | relevance | path

Searched refs:acct (Results 1 – 25 of 50) sorted by relevance

12

/third_party/boost/libs/asio/example/cpp11/executors/
Dbank_account_1.cpp56 bank_account acct; in main() local
57 acct.deposit(20); in main()
58 acct.withdraw(10); in main()
59 acct.print_balance(); in main()
Dbank_account_2.cpp56 bank_account acct; in main() local
57 acct.deposit(20); in main()
58 acct.withdraw(10); in main()
59 std::cout << "balance = " << acct.balance() << "\n"; in main()
/third_party/boost/doc/html/boost_asio/example/cpp11/executors/
Dbank_account_1.cpp56 bank_account acct; in main() local
57 acct.deposit(20); in main()
58 acct.withdraw(10); in main()
59 acct.print_balance(); in main()
Dbank_account_2.cpp56 bank_account acct; in main() local
57 acct.deposit(20); in main()
58 acct.withdraw(10); in main()
59 std::cout << "balance = " << acct.balance() << "\n"; in main()
/third_party/boost/libs/asio/example/cpp14/executors/
Dbank_account_1.cpp56 bank_account acct; in main() local
57 acct.deposit(20); in main()
58 acct.withdraw(10); in main()
59 acct.print_balance(); in main()
Dbank_account_2.cpp56 bank_account acct; in main() local
57 acct.deposit(20); in main()
58 acct.withdraw(10); in main()
59 std::cout << "balance = " << acct.balance() << "\n"; in main()
/third_party/ltp/testcases/kernel/syscalls/acct/
Dacct02.c37 #define ACCT_MEMBER(x) (v3 ? ((struct acct_v3 *)acc)->x : ((struct acct *)acc)->x)
48 struct acct v0;
164 TEST(acct(OUTPUT_FILE)); in run()
170 acct(NULL); in run()
231 TEST(acct(NULL)); in setup()
242 acct_size = sizeof(struct acct); in setup()
250 acct(NULL); in cleanup()
Dacct01.c68 TEST(acct(NULL)); in setup()
77 TEST(acct(TEST_TMPFILE)); in setup()
82 TEST(acct(NULL)); in setup()
101 TEST(acct(tcase->filename)); in verify_acct()
/third_party/python/Lib/
Dftplib.py109 def __init__(self, host='', user='', passwd='', acct='', argument
123 self.login(user, passwd, acct)
395 def login(self, user = '', passwd = '', acct = ''): argument
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='', argument
740 super().__init__(host, user, passwd, acct,
743 def login(self, user='', passwd='', acct='', secure=True): argument
[all …]
/third_party/musl/include/sys/
Dacct.h16 struct acct { struct
66 int acct(const char *);
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dacct.h16 struct acct { struct
66 int acct(const char *);
/third_party/curl/tests/data/
Dtest29445 ftp://%HOSTIP:%FTPPORT/%TESTNUMBER/ --ftp-account "data for acct"
55 ACCT data for acct
/third_party/boost/libs/thread/doc/
Dinternal_locking.qbk122 void ATMWithdrawal(BankAccount& acct, int sum) {
123 acct.Withdraw(sum);
125 acct.Withdraw(2);
132 void ATMWithdrawal(BankAccount& acct, int sum) {
133 boost::lock_guard<boost::mutex> guard(acct.mtx_); 1
134 acct.Withdraw(sum);
135 acct.Withdraw(2);
192 void ATMWithdrawal(BankAccount& acct, int sum) {
193 boost::lock_guard<BankAccount> guard(acct);
194 acct.Withdraw(sum);
[all …]
Dexternal_locking.qbk51 void ATMWithdrawal(BankAccount& acct, int sum) {
52 acct.Withdraw(sum);
54 acct.Withdraw(2);
61 void ATMWithdrawal(BankAccount& acct, int sum) {
62 boost::lock_guard<boost::mutex> guard(acct.mtx_); // mtx_ field is private
63 acct.Withdraw(sum);
64 acct.Withdraw(2);
126 void ATMWithdrawal(BankAccount& acct, int sum) {
127 // boost::lock_guard<boost::mutex> guard(*acct.mutex());
128 boost::lock_guard<BankAccount> guard(acct);
[all …]
/third_party/musl/src/unistd/
Dacct.c5 int acct(const char *filename) in acct() function
/third_party/ltp/include/lapi/
Dacct.h18 struct acct { struct
/third_party/toybox/toys/pending/
Dbootchartd.c158 acct("kernel_procs_acct"); in start_logging()
202 if (TT.proc_accounting) acct(NULL); in stop_logging()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
Dieee802_1x.h63 struct radius_msg *msg, int acct);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
Dieee802_1x.h63 struct radius_msg *msg, int acct);
/third_party/python/Doc/library/
Dftplib.rst46 .. class:: FTP(host='', user='', passwd='', acct='', timeout=None, source_address=None, *, encoding…
50 the method call ``login(user, passwd, acct)`` is made (where *passwd* and
51 *acct* default to the empty string when not given). The optional *timeout*
84 .. class:: FTP_TLS(host='', user='', passwd='', acct='', keyfile=None, certfile=None, context=None,…
221 .. method:: FTP.login(user='anonymous', passwd='', acct='')
223 Log in as the given *user*. The *passwd* and *acct* parameters are optional and
229 only allowed after the client has logged in. The *acct* parameter supplies
/third_party/ltp/include/lapi/syscalls/
Darc.in91 acct 89
Dia64.in41 acct 1064
Daarch64.in91 acct 89
Dmips_n64.in159 acct 158
Dmips_n32.in159 acct 158

12