Searched refs:is_authenticated (Results 1 – 10 of 10) sorted by relevance
/external/igt-gpu-tools/tests/ |
D | core_auth.c | 71 bool is_authenticated = false; in check_auth() local 74 for (i = 0; !is_authenticated; i++) { in check_auth() 77 is_authenticated = auth && (pid == client_pid || is_local_tid(pid)); in check_auth() 79 return is_authenticated; in check_auth()
|
/external/rust/crates/grpcio-sys/grpc/test/core/security/ |
D | insecure_security_connector_test.cc | 36 EXPECT_EQ(auth_context->is_authenticated(), false); in TEST()
|
/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/rust/crates/grpcio-sys/grpc/src/core/lib/security/context/ |
D | security_context.h | 79 bool is_authenticated() const { in is_authenticated() function
|
D | security_context.cc | 166 return ctx->is_authenticated(); in grpc_auth_context_peer_is_authenticated()
|
/external/python/cpython3/Doc/library/ |
D | urllib.request.rst | 332 database of ``uri -> is_authenticated`` mappings. Can be used by a 345 supported. If *passwd_mgr* also provides ``is_authenticated`` and 348 ``is_authenticated`` result for a given URI to determine whether or not to 349 send authentication credentials with the request. If ``is_authenticated`` 350 returns ``True`` for the URI, credentials are sent. If ``is_authenticated`` 354 ``is_authenticated`` ``True`` for the URI, so that subsequent requests to 359 Added ``is_authenticated`` support. 941 passwd, is_authenticated=False) 944 :meth:`HTTPPasswordMgr.add_password`. *is_authenticated* sets the initial 945 value of the ``is_authenticated`` flag for the given URI or list of URIs. [all …]
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 908 def add_password(self, realm, uri, user, passwd, is_authenticated=False): argument 909 self.update_authenticated(uri, is_authenticated) 915 def update_authenticated(self, uri, is_authenticated=False): argument 923 self.authenticated[reduced_uri] = is_authenticated 925 def is_authenticated(self, authuri): member in HTTPPasswordMgrWithPriorAuth 1020 not self.passwd.is_authenticated(req.full_url)):
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2.py | 1657 None, request_url, user, password, is_authenticated=True) 1659 is_auth = pwd_manager.is_authenticated(request_url) 1682 is_auth = pwd_manager.is_authenticated(request_url) 1694 is_auth = pwd_manager.is_authenticated(request_url)
|