Searched refs:is_authenticated (Results 1 – 8 of 8) sorted by relevance
/external/python/oauth2client/oauth2client/contrib/django_util/ |
D | decorators.py | 74 request.user.is_authenticated()):
|
D | views.py | 176 if not request.user.is_authenticated():
|
D | __init__.py | 407 request.user.is_authenticated()):
|
/external/libxcam/xcore/ |
D | drm_display.cpp | 93 if (_fd >= 0 && !is_authenticated (_fd, DEFAULT_DRM_BUSID)) { in DrmDisplay() 152 if (!is_authenticated (fd, dev_path)) { in open_driver() 162 DrmDisplay::is_authenticated (int fd, const char *msg) in is_authenticated() function in XCam::DrmDisplay
|
D | drm_display.h | 119 bool is_authenticated (int fd, const char *msg);
|
/external/python/cpython3/Doc/library/ |
D | urllib.request.rst | 333 database of ``uri -> is_authenticated`` mappings. Can be used by a 346 supported. If *passwd_mgr* also provides ``is_authenticated`` and 349 ``is_authenticated`` result for a given URI to determine whether or not to 350 send authentication credentials with the request. If ``is_authenticated`` 351 returns ``True`` for the URI, credentials are sent. If ``is_authenticated`` 355 ``is_authenticated`` ``True`` for the URI, so that subsequent requests to 360 Added ``is_authenticated`` support. 922 passwd, is_authenticated=False) 925 :meth:`HTTPPasswordMgr.add_password`. *is_authenticated* sets the initial 926 value of the ``is_authenticated`` flag for the given URI or list of URIs. [all …]
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 915 def add_password(self, realm, uri, user, passwd, is_authenticated=False): argument 916 self.update_authenticated(uri, is_authenticated) 922 def update_authenticated(self, uri, is_authenticated=False): argument 930 self.authenticated[reduced_uri] = is_authenticated 932 def is_authenticated(self, authuri): member in HTTPPasswordMgrWithPriorAuth 996 not self.passwd.is_authenticated(req.full_url)):
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2.py | 1619 None, request_url, user, password, is_authenticated=True) 1621 is_auth = pwd_manager.is_authenticated(request_url) 1644 is_auth = pwd_manager.is_authenticated(request_url) 1656 is_auth = pwd_manager.is_authenticated(request_url)
|