Home
last modified time | relevance | path

Searched refs:trusted (Results 1 – 25 of 94) sorted by relevance

1234

/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/tls/
DCertificateChainCleanerTest.java159 HeldCertificate trusted = new HeldCertificate.Builder() in chainGoesAllTheWayToSelfSignedRoot() local
165 .issuedBy(trusted) in chainGoesAllTheWayToSelfSignedRoot()
173 new RealTrustRootIndex(selfSigned.certificate, trusted.certificate)); in chainGoesAllTheWayToSelfSignedRoot()
174 assertEquals(list(certB, certA, trusted, selfSigned), in chainGoesAllTheWayToSelfSignedRoot()
176 assertEquals(list(certB, certA, trusted, selfSigned), in chainGoesAllTheWayToSelfSignedRoot()
177 council.clean(list(certB, certA, trusted))); in chainGoesAllTheWayToSelfSignedRoot()
178 assertEquals(list(certB, certA, trusted, selfSigned), in chainGoesAllTheWayToSelfSignedRoot()
179 council.clean(list(certB, certA, trusted, selfSigned))); in chainGoesAllTheWayToSelfSignedRoot()
186 HeldCertificate trusted = new HeldCertificate.Builder() in trustedRootNotSelfSigned() local
191 .issuedBy(trusted) in trustedRootNotSelfSigned()
[all …]
/external/annotation-tools/annotation-file-utilities/tests/
DReceivers.jaif15 package trusted.quals:
119 insert-annotation Method.parameter 0, Variable.type: @trusted.quals.Untrusted
120 insert-annotation Method.parameter -1: @trusted.quals.Untrusted
121 insert-annotation Method.parameter 0, Variable.type, ArrayType.type: @trusted.quals.Untrusted
132 insert-annotation Method.parameter -1: @trusted.quals.Untrusted
133 insert-annotation Method.parameter 0, Variable.type: @trusted.quals.Untrusted
DReceivers.goal85 …public String [] map(@trusted.quals.Untrusted GenericArray<Z> this, @trusted.quals.Untrusted Strin…
112 String get(@trusted.quals.Untrusted Interface this, @trusted.quals.Untrusted String param);
/external/v8/tools/testrunner/server/
Dpresence_handler.py63 trusted = self.server.daemon.IsTrusted(pubkey_fingerprint)
66 self.server.daemon.pubkey_fingerprint, trusted]
71 p.trusted = trusted
79 p.trusted = self.server.daemon.IsTrusted(pubkey_fingerprint)
Dmain.py140 if p.trusted: continue
142 p.trusted = True
146 if not p2.trusted: continue
157 if peer.trusted:
/external/curl/tests/data/
Dtest2349 --location-trusted
67 HTTP, proxy, site+proxy auth and Location: to new host using location-trusted
70 …t/that/page/234 -x %HOSTIP:%HTTPPORT --user iam:myself --proxy-user testing:this --location-trusted
Dtest108810 --location-trusted
79 HTTP, proxy with --anyauth and Location: to new host using location-trusted
82 …t.is/we/want/that/page/10881000 -x %HOSTIP:%HTTPPORT --user iam:myself --location-trusted --anyauth
/external/autotest/server/cros/bluetooth/
Dbluetooth_device.py471 def set_trusted(self, address, trusted=True): argument
480 return self._proxy.set_trusted(address, trusted)
483 def pair_legacy_device(self, address, pin, trusted, timeout): argument
497 return self._proxy.pair_legacy_device(address, pin, trusted, timeout)
Dbluetooth_adapter_tests.py765 def test_pairing(self, device_address, pin, trusted=True): argument
783 device_address, pin, trusted,
834 def test_set_trusted(self, device_address, trusted=True): argument
846 device_address, trusted)
855 'expected trusted': trusted}
856 return actual_trusted == trusted
/external/autotest/client/cros/bluetooth/
Dbluetooth_device_xmlrpc_server.py892 def _set_trusted_by_device(self, device, trusted=True): argument
903 properties.Set(self.BLUEZ_DEVICE_IFACE, 'Trusted', trusted)
913 def _set_trusted_by_path(self, device_path, trusted=True): argument
925 return self._set_trusted_by_device(device, trusted)
934 def set_trusted(self, address, trusted=True): argument
945 return self._set_trusted_by_device(device, trusted)
954 def pair_legacy_device(self, address, pin, trusted, timeout=60): argument
991 if trusted:
992 self._set_trusted_by_path(device_path, trusted=True)
/external/python/cpython2/Doc/library/
Drestricted.rst15 segregation of trusted and untrusted code. The framework is based on the notion
16 that trusted Python code (a *supervisor*) can create a "padded cell' (or
20 trusted code. The term "restricted execution" is favored over "safe-Python"
27 presented to trusted code. Therefore no special interfaces need to be learned
/external/perfetto/docs/
Dsecurity-model.md13 The former is typically public, the latter is restricted only to trusted
17 Producers are never trusted. We assume they will try their best to DoS / crash /
40 Consumers are always trusted. They still shouldn't be able to crash or exploit
51 untrusted-and-unprivileged and trusted-and-more-privileged entities).
/external/v8/tools/testrunner/objects/
Dpeer.py40 self.trusted = False # I trust this peer's public key.
45 self.trusting_me, self.trusted))
/external/python/cpython2/Lib/
Drexec.py539 trusted = []
544 trusted.append(a)
546 if trusted:
547 r.ok_builtin_modules = r.ok_builtin_modules + tuple(trusted)
/external/autotest/server/site_tests/bluetooth_AdapterPairing/
Dbluetooth_AdapterPairing.py91 self.test_pairing(device.address, device.pin, trusted=True)
169 self.test_pairing(device.address, device.pin, trusted=True)
/external/perfetto/protos/perfetto/trace/
Dtrusted_packet.proto20 // for the presence of the trusted fields below, we can use proto3 as a way to
35 // This proto contains trusted fields of TracePacket which may only be generated
/external/curl/docs/cmdline-opts/
Dlocation-trusted.d1 Long: location-trusted
/external/nanopb-c/docs/
Dsecurity.rst23 Division of trusted and untrusted data
25 The following data is regarded as **trusted**. It must be under the control of
/external/adhd/cras/src/server/
Dcras_bt_device.c81 int trusted; member
364 return device->trusted; in cras_bt_device_trusted()
712 device->trusted = value; in cras_bt_device_update_properties()
768 device->trusted = 0; in cras_bt_device_update_properties()
/external/conscrypt/platform/src/main/java/org/conscrypt/
DTrustManagerImpl.java241 List<X509Certificate> trusted = new ArrayList<X509Certificate>(); in acceptedIssuers() local
246 trusted.add(cert); in acceptedIssuers()
249 return trusted.toArray(new X509Certificate[trusted.size()]); in acceptedIssuers()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_StringToHashBucketFast.pbtxt25 This function may be used when CPU time is scarce and inputs are trusted or
/external/dexmaker/
DREADME.version14 Mark mocks as trusted (needs upstreaming)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
DCertPathReviewerMessages.properties155 # {1} number of trusted root certificates (trustanchors) provided
156 CertPathReviewer.noTrustAnchorFound.title = No trusted root certificate found
157 …ficate of the certificate path was issued by a CA that is not in the the trusted-root-certificate-…
158 …ficate of the certificate path was issued by a CA that is not in the the trusted-root-certificate-…
159 …CA that is not in the the trusted-root-certificate-store used for the path validation. The name of…
165 …tingTrustAnchors.text = Warning: corrupt trust root store: There are {0} trusted public keys for t…
166 …gTrustAnchors.summary = Warning: corrupt trust root store: There are {0} trusted public keys for t…
167 …gTrustAnchors.details = Warning: corrupt trust root store: There are {0} trusted public keys for t…
/external/wpa_supplicant_8/src/tls/
Dx509v3.h144 int x509_certificate_chain_validate(struct x509_certificate *trusted,
/external/v8/tools/testrunner/
DREADME46 $ cp trusted/`cat data/mypubkey`.pem /where/peers/can/see/it/myname.pem
133 exchanging trusted public keys to create the transitive trust closure.

1234