Home
last modified time | relevance | path

Searched refs:getClient (Results 1 – 25 of 55) sorted by relevance

123

/external/autotest/frontend/client/src/autotest/afe/
DControlTypeSelect.java5 public IRadioButton getClient(); in getClient() method
13 display.getClient().setText(TestSelector.CLIENT_TYPE); in bindDisplay()
18 if (display.getClient().getValue()) { in getControlType()
19 return display.getClient().getText(); in getControlType()
25 if (display.getClient().getText().equals(type)) { in setControlType()
26 display.getClient().setValue(true); in setControlType()
35 display.getClient().setEnabled(enabled); in setEnabled()
DControlTypeSelectDisplay.java23 public IRadioButton getClient() { in getClient() method in ControlTypeSelectDisplay
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DConscryptEngineTest.java140 setupEngines(TestKeyStore.getClient(), TestKeyStore.getServer()); in closingOutboundBeforeHandshakeShouldCloseAll()
157 setupEngines(TestKeyStore.getClient(), TestKeyStore.getServer()); in closingOutboundAfterHandshakeShouldOnlyCloseOutbound()
176 setupEngines(TestKeyStore.getClient(), TestKeyStore.getServer()); in closingInboundShouldOnlyCloseInbound()
200 doMutualAuthHandshake(TestKeyStore.getClient(), TestKeyStore.getServer(), ClientAuth.NONE); in mutualAuthWithDifferentCertsShouldSucceed()
211 doMutualAuthHandshake(TestKeyStore.getClient(), TestKeyStore.getClient(), ClientAuth.NONE); in mutualAuthWithUntrustedClientShouldFail()
217 TestKeyStore.getClient(), TestKeyStore.getServer(), ClientAuth.OPTIONAL); in optionalClientAuthShouldSucceed()
223 TestKeyStore.getClient(), TestKeyStore.getClient(), ClientAuth.OPTIONAL); in optionalClientAuthShouldFail()
235 TestKeyStore.getClient(), TestKeyStore.getClient(), ClientAuth.REQUIRED); in requiredClientAuthShouldFail()
240 setupEngines(TestKeyStore.getClient(), TestKeyStore.getServer()); in exchangeMessages()
269 setupEngines(TestKeyStore.getClient(), TestKeyStore.getServer()); in exchangeLargeMessage()
[all …]
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DConscryptEngineTest.java133 setupEngines(TestKeyStore.getClient(), TestKeyStore.getServer()); in closingOutboundBeforeHandshakeShouldCloseAll()
150 setupEngines(TestKeyStore.getClient(), TestKeyStore.getServer()); in closingOutboundAfterHandshakeShouldOnlyCloseOutbound()
169 setupEngines(TestKeyStore.getClient(), TestKeyStore.getServer()); in closingInboundShouldOnlyCloseInbound()
193 doMutualAuthHandshake(TestKeyStore.getClient(), TestKeyStore.getServer(), ClientAuth.NONE); in mutualAuthWithDifferentCertsShouldSucceed()
204 doMutualAuthHandshake(TestKeyStore.getClient(), TestKeyStore.getClient(), ClientAuth.NONE); in mutualAuthWithUntrustedClientShouldFail()
210 TestKeyStore.getClient(), TestKeyStore.getServer(), ClientAuth.OPTIONAL); in optionalClientAuthShouldSucceed()
216 TestKeyStore.getClient(), TestKeyStore.getClient(), ClientAuth.OPTIONAL); in optionalClientAuthShouldFail()
228 TestKeyStore.getClient(), TestKeyStore.getClient(), ClientAuth.REQUIRED); in requiredClientAuthShouldFail()
233 setupEngines(TestKeyStore.getClient(), TestKeyStore.getServer()); in exchangeMessages()
262 setupEngines(TestKeyStore.getClient(), TestKeyStore.getServer()); in exchangeLargeMessage()
[all …]
/external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/
DTsiTest.java52 public TsiHandshaker getClient() { in getClient() method in TsiTest.Handshakers
81 TsiHandshaker clientHandshaker = handshakers.getClient(); in performHandshake()
163 TsiFrameProtector clientProtector = handshakers.getClient().createFrameProtector(alloc); in pingPongTest()
184 handshakers.getClient().createFrameProtector(frameSize, alloc); in pingPongExactFrameSizeTest()
200 TsiFrameProtector clientProtector = handshakers.getClient().createFrameProtector(alloc); in pingPongSmallBufferTest()
218 handshakers.getClient().createFrameProtector(frameProtectorOverhead + 3, alloc); in pingPongSmallFrameTest()
237 handshakers.getClient().createFrameProtector(frameProtectorOverhead + 3, alloc); in pingPongSmallFrameSmallBufferTest()
256 TsiFrameProtector sender = handshakers.getClient().createFrameProtector(alloc); in corruptedCounterTest()
297 TsiFrameProtector sender = handshakers.getClient().createFrameProtector(alloc); in corruptedCiphertextTest()
336 TsiFrameProtector sender = handshakers.getClient().createFrameProtector(alloc); in corruptedTagTest()
[all …]
DAltsTsiTest.java91 TsiPeer clientPeer = handshakers.getClient().extractPeer(); in verifyHandshakePeer()
DFakeTsiTest.java84 TsiHandshaker clientHandshaker = handshakers.getClient(); in handshakeStateOrderTest()
/external/clang/lib/ARCMigrate/
DARCMTActions.cpp20 CI.getDiagnostics().getClient())) in BeginInvocation()
34 CI.getDiagnostics().getClient()); in BeginInvocation()
43 CI.getDiagnostics().getClient(), MigrateDir, EmitPremigrationARCErros, in BeginInvocation()
/external/clang/lib/Frontend/
DASTMerge.cpp36 CI.getDiagnostics().getClient()->BeginSourceFile( in ExecuteAction()
46 *CI.getDiagnostics().getClient()), in ExecuteAction()
79 CI.getDiagnostics().getClient()->EndSourceFile(); in ExecuteAction()
DCompilerInstance.cpp186 Diags.getClient(), std::move(SerializedConsumer))); in SetupSerializedDiagnostics()
882 getDiagnostics().getClient()->finish(); in ExecuteAction()
887 unsigned NumWarnings = getDiagnostics().getClient()->getNumWarnings(); in ExecuteAction()
888 unsigned NumErrors = getDiagnostics().getClient()->getNumErrors(); in ExecuteAction()
905 return !getDiagnostics().getClient()->getNumErrors(); in ExecuteAction()
DASTUnit.cpp236 if (MainFileIsAST && getDiagnostics().getClient()) { in ~ASTUnit()
237 getDiagnostics().getClient()->EndSourceFile(); in ~ASTUnit()
594 if (RequestCapture || Diags.getClient() == nullptr) { in CaptureDroppedDiagnostics()
596 PreviousClient = Diags.getClient(); in CaptureDroppedDiagnostics()
602 if (Diags.getClient() == &Client) in ~CaptureDroppedDiagnostics()
756 AST->getDiagnostics().getClient()->BeginSourceFile(Context.getLangOpts(),&PP); in LoadFromASTFile()
/external/conscrypt/repackaged/openjdk-integ-tests/src/test/java/com/android/org/conscrypt/javax/net/ssl/
DKeyStoreBuilderParametersTest.java68 TestKeyStore testKeyStore = TestKeyStore.getClient(); in test_init_Builder()
90 TestKeyStore testKeyStore1 = TestKeyStore.getClient(); in test_init_List()
DSSLEngineVersionCompatibilityTest.java283 .client(TestKeyStore.getClient()) in test_SSLEngine_clientAuthWantedNoClientCert()
308 .client(TestKeyStore.getClient()) in test_SSLEngine_clientAuthNeededNoClientCert()
/external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/
DKeyStoreBuilderParametersTest.java64 TestKeyStore testKeyStore = TestKeyStore.getClient(); in test_init_Builder()
86 TestKeyStore testKeyStore1 = TestKeyStore.getClient(); in test_init_List()
DSSLEngineVersionCompatibilityTest.java281 .client(TestKeyStore.getClient()) in test_SSLEngine_clientAuthWantedNoClientCert()
306 .client(TestKeyStore.getClient()) in test_SSLEngine_clientAuthNeededNoClientCert()
/external/clang/tools/arcmt-test/
Darcmt-test.cpp136 Diags->getClient()); in checkForMigration()
137 return Diags->getClient()->getNumErrors() > 0; in checkForMigration()
/external/conscrypt/testing/src/main/java/org/conscrypt/
DTestUtils.java349 TestUtils.initSslContext(newContext(getJdkProvider()), TestKeyStore.getClient()); in getCommonCipherSuites()
351 newContext(getConscryptProvider()), TestKeyStore.getClient()); in getCommonCipherSuites()
421 return initSslContext(context, TestKeyStore.getClient()); in initClientSslContext()
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/
DTestUtils.java351 TestUtils.initSslContext(newContext(getJdkProvider()), TestKeyStore.getClient()); in getCommonCipherSuites()
353 newContext(getConscryptProvider()), TestKeyStore.getClient()); in getCommonCipherSuites()
423 return initSslContext(context, TestKeyStore.getClient()); in initClientSslContext()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothMapFacade.java137 return sMapProfile.getClient(); in bluetoothMapGetClient()
/external/clang/include/clang/Frontend/
DCompilerInstance.h338 assert(Diagnostics && Diagnostics->getClient() && in getDiagnosticClient()
340 return *Diagnostics->getClient(); in getDiagnosticClient()
/external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/
DCertPinManagerTest.java140 TrustManagerImpl tm = new TrustManagerImpl(TestKeyStore.getClient().keyStore, manager); in callCheckServerTrusted()
/external/conscrypt/common/src/test/java/org/conscrypt/
DCertPinManagerTest.java136 TrustManagerImpl tm = new TrustManagerImpl(TestKeyStore.getClient().keyStore, manager); in callCheckServerTrusted()
/external/guava/guava/src/com/google/common/net/
DInetAddresses.java659 public Inet4Address getClient() { in getClient() method in InetAddresses.TeredoInfo
804 return getTeredoInfo(ip).getClient(); in getEmbeddedIPv4ClientAddress()
/external/clang/lib/Frontend/Rewrite/
DFixItRewriter.cpp40 Client = Diags.getClient(); in FixItRewriter()
/external/guava/guava-tests/test/com/google/common/net/
DInetAddressesTest.java486 assertEquals(client, teredo.getClient()); in testTeredoAddresses()
495 assertEquals(InetAddresses.forString("0.0.0.0"), info.getClient()); in testTeredoAddress_nullServer()

123