/third_party/boost/libs/asio/example/cpp14/executors/ |
D | bank_account_1.cpp | 56 bank_account acct; in main() local 57 acct.deposit(20); in main() 58 acct.withdraw(10); in main() 59 acct.print_balance(); in main()
|
D | bank_account_2.cpp | 56 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/cpp11/executors/ |
D | bank_account_1.cpp | 56 bank_account acct; in main() local 57 acct.deposit(20); in main() 58 acct.withdraw(10); in main() 59 acct.print_balance(); in main()
|
D | bank_account_2.cpp | 56 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/ |
D | bank_account_1.cpp | 56 bank_account acct; in main() local 57 acct.deposit(20); in main() 58 acct.withdraw(10); in main() 59 acct.print_balance(); in main()
|
D | bank_account_2.cpp | 56 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/ |
D | acct02.c | 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() 174 acct(NULL); in run() 235 TEST(acct(NULL)); in setup() 246 acct_size = sizeof(struct acct); in setup() 254 acct(NULL); in cleanup()
|
D | acct01.c | 73 TEST(acct(NULL)); in setup() 82 TEST(acct(TEST_TMPFILE)); in setup() 87 TEST(acct(NULL)); in setup() 106 TEST(acct(tcase->filename)); in verify_acct()
|
/third_party/python/Lib/ |
D | ftplib.py | 109 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/libc-test/src/functionalext/supplement/unistd/ |
D | acct.c | 27 int result = acct(NULL); in acct_0100() 39 int result = acct(filePath); in acct_0200()
|
D | test_src_functionalext_supplement_unistd.gni | 63 "acct",
|
/third_party/musl/include/sys/ |
D | acct.h | 16 struct acct { struct 66 int acct(const char *);
|
/third_party/musl/ndk_musl_include/sys/ |
D | acct.h | 16 struct acct { struct 66 int acct(const char *);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | acct.h | 16 struct acct { struct 66 int acct(const char *);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | acct.h | 16 struct acct { struct 66 int acct(const char *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | acct.h | 16 struct acct { struct 66 int acct(const char *);
|
/third_party/boost/libs/thread/doc/ |
D | external_locking.qbk | 51 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 …]
|
D | internal_locking.qbk | 122 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 …]
|
/third_party/curl/tests/data/ |
D | test294 | 45 ftp://%HOSTIP:%FTPPORT/%TESTNUMBER/ --ftp-account "data for acct" 55 ACCT data for acct
|
/third_party/musl/src/unistd/ |
D | acct.c | 5 int acct(const char *filename) in acct() function
|
/third_party/libwebsockets/lib/plat/windows/ |
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/ltp/include/lapi/ |
D | acct.h | 18 struct acct { struct
|
/third_party/toybox/toys/pending/ |
D | bootchartd.c | 158 acct("kernel_procs_acct"); in start_logging() 202 if (TT.proc_accounting) acct(NULL); in stop_logging()
|
/third_party/python/Doc/library/ |
D | ftplib.rst | 48 .. class:: FTP(host='', user='', passwd='', acct='', timeout=None, source_address=None, *, encoding… 52 the method call ``login(user, passwd, acct)`` is made (where *passwd* and 53 *acct* default to the empty string when not given). The optional *timeout* 86 .. class:: FTP_TLS(host='', user='', passwd='', acct='', keyfile=None, certfile=None, context=None,… 223 .. method:: FTP.login(user='anonymous', passwd='', acct='') 225 Log in as the given *user*. The *passwd* and *acct* parameters are optional and 231 only allowed after the client has logged in. The *acct* parameter supplies
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
D | ieee802_1x.h | 62 struct radius_msg *msg, int acct);
|