Home
last modified time | relevance | path

Searched refs:is_authenticated (Results 1 – 10 of 10) sorted by relevance

/external/igt-gpu-tools/tests/
Dcore_auth.c71 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/
Dinsecure_security_connector_test.cc36 EXPECT_EQ(auth_context->is_authenticated(), false); in TEST()
/external/python/oauth2client/oauth2client/contrib/django_util/
Ddecorators.py74 request.user.is_authenticated()):
Dviews.py176 if not request.user.is_authenticated():
D__init__.py407 request.user.is_authenticated()):
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/context/
Dsecurity_context.h79 bool is_authenticated() const { in is_authenticated() function
Dsecurity_context.cc166 return ctx->is_authenticated(); in grpc_auth_context_peer_is_authenticated()
/external/python/cpython3/Doc/library/
Durllib.request.rst332 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/
Drequest.py908 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/
Dtest_urllib2.py1657 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)