/external/webrtc/webrtc/libjingle/xmpp/ |
D | xmppclient.cc | 54 rtc::CryptString pass_; member in buzz::XmppClient::Private 142 d_->pass_ = settings.pass(); in Connect() 210 d_->engine_->GetUser(), d_->server_, d_->pass_, in ProcessStart() 212 d_->pass_.Clear(); // done with this; in ProcessStart() 217 d_->engine_->GetUser(), d_->pass_, d_->allow_plain_)); in ProcessStart() 218 d_->pass_.Clear(); // done with this; in ProcessStart()
|
D | xmppclientsettings.h | 29 void set_pass(const rtc::CryptString& pass) { pass_ = pass; } in set_pass() 47 const rtc::CryptString& pass() const { return pass_; } in pass() 59 rtc::CryptString pass_; variable
|
/external/toolchain-utils/crosperf/ |
D | results_report_unittest.py | 314 for pass_ in non_failures: 315 self.assertIn('detailed_results', pass_) 316 self.assertDictEqual(expected_detailed, pass_['detailed_results']) 317 self.assertIn('machine', pass_) 318 self.assertEqual(success_keyvals['machine'], pass_['machine'])
|
/external/webrtc/webrtc/base/ |
D | socketadapters.cc | 256 user_(username), pass_(password), force_connect_(false), state_(PS_ERROR), in AsyncHttpsProxySocket() 459 user_, pass_, context_, response, auth_method)) { in ProcessLine() 522 user_(username), pass_(password) { in AsyncSocksProxySocket() 675 request.WriteUInt8(static_cast<uint8_t>(pass_.GetLength())); in SendAuth() 676 size_t len = pass_.GetLength() + 1; in SendAuth() 678 pass_.CopyTo(sensitive, true); in SendAuth()
|
D | socketadapters.h | 129 CryptString pass_; variable 185 CryptString pass_; variable
|
/external/autotest/tko/ |
D | nightly.py | 374 pass_ = passthru + ['test=%s' % test] 376 pass_ += ['metric=%s' % metric] 377 pass_ = '&'.join(pass_) 378 print "<a href='%s?%s&table'>" % (myurl, pass_) 379 print " <img src='%s?%s&size=450,500'> </a>" % (myurl, pass_)
|
/external/python/cpython2/Lib/ |
D | poplib.py | 190 def pass_(self, pswd): member in POP3 418 a.pass_(sys.argv[3])
|
/external/python/cpython3/Lib/ |
D | poplib.py | 206 def pass_(self, pswd): member in POP3 466 a.pass_(sys.argv[3])
|
/external/python/cpython2/Doc/library/ |
D | poplib.rst | 102 .. method:: POP3.pass_(password) 192 M.pass_(getpass.getpass())
|
/external/python/cpython3/Doc/library/ |
D | poplib.rst | 131 .. method:: POP3.pass_(password) 247 M.pass_(getpass.getpass())
|
/external/stressapptest/src/ |
D | worker.cc | 250 pass_ = 0; in FileThread() 1630 tag[sec].pass = pass_ & 0xff; in SectorTagPage() 1735 (tag[sec].pass != (pass_ & 0xff))) { in SectorValidatePage() 1742 else if (tag[sec].pass != (pass_ & 0xff)) in SectorValidatePage() 1755 (pass_ & 0xff), (unsigned int)tag[sec].pass, in SectorValidatePage() 1952 pass_ = 0; in Work() 1971 pass_ = loops; in Work()
|
D | worker.h | 475 int pass_; // Number of writes to the file so far. variable
|
/external/python/cpython2/Lib/test/ |
D | test_poplib.py | 182 self.assertOK(self.client.pass_('python'))
|
/external/python/cpython3/Lib/test/ |
D | test_poplib.py | 270 self.assertOK(self.client.pass_('python'))
|