Home
last modified time | relevance | path

Searched refs:session2 (Results 1 – 8 of 8) sorted by relevance

/external/autotest/client/tests/kvm/tests/
Dmigration.py61 session2 = vm.wait_for_login(timeout=timeout)
65 session2.cmd(check_command, timeout=30)
66 session2.close()
83 session2 = vm.wait_for_login(timeout=30)
87 session2.cmd(check_command, timeout=30)
90 output = session2.cmd_output(test_command)
106 if session2 and session2.is_alive():
107 session2.cmd_output(params.get("migration_bg_kill_command", ""))
109 session2.close()
/external/autotest/client/virt/tests/
Dguest_s4.py35 session2 = vm.wait_for_login(timeout=timeout)
40 session2.cmd(check_s4_cmd)
47 session2.sendline(params.get("set_s4_cmd"))
65 session2 = vm.wait_for_login(timeout=relogin_timeout)
70 session2.cmd(check_s4_cmd)
74 session2.cmd_output(params.get("kill_test_s4_cmd"))
76 session2.close()
Dioquit.py16 session2 = vm.wait_for_login(timeout=login_timeout)
22 session2.cmd(check_cmd, timeout=60)
26 session2.cmd(check_cmd, timeout=60)
31 session2.close()
Dethtool.py99 session2.cmd_output("rm -rf %s" % filename)
126 session2.sendline(tcpdump_cmd)
139 tcpdump_string = session2.read_up_to_prompt(timeout=60)
188 session2 = vm.wait_for_login(timeout=int(params.get("login_timeout", 360)))
235 session2.close()
/external/libmicrohttpd/src/testspdy/
Dtest_misc.c47 struct SPDY_Session *session2; variable
120 session2 = SPDY_get_session_for_request(request); in response_done_callback()
121 if(session1 != session2) in response_done_callback()
128 void *session_cls = SPDY_get_cls_from_session(session2); in response_done_callback()
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
DSSLSessionImplTest.java146 SSLSessionImpl session2 = (SSLSessionImpl) session1.clone(); in testClone() local
147 assertTrue(Arrays.equals(session1.getId(), session2.getId())); in testClone()
/external/webrtc/talk/app/webrtc/objctests/
DRTCPeerConnectionTest.mm65 ofSameTypeAsSession:(RTCSessionDescription*)session2;
82 ofSameTypeAsSession:(RTCSessionDescription*)session2 {
83 return [session1.type isEqual:session2.type];
/external/conscrypt/src/test/java/org/conscrypt/
DNativeCryptoTest.java2598 long session2 = NativeCrypto.d2i_SSL_SESSION(b); in test_i2d_SSL_SESSION()
2599 assertTrue(session2 != NULL); in test_i2d_SSL_SESSION()
2602 assertTrue(NativeCrypto.SSL_SESSION_cipher(session2) != null); in test_i2d_SSL_SESSION()
2604 NativeCrypto.SSL_SESSION_cipher(session2)); in test_i2d_SSL_SESSION()
2606 NativeCrypto.SSL_SESSION_free(session2); in test_i2d_SSL_SESSION()