/cts/tests/tests/telecom/src/android/telecom/cts/ |
ConnectionTest.java | 26 import android.telecom.Connection; 45 Connection connection = createConnection(lock); local 48 assertEquals(Connection.STATE_NEW, connection.getState()); 50 connection.setInitializing(); 52 assertEquals(Connection.STATE_INITIALIZING, connection.getState()); 54 connection.setInitialized(); 56 assertEquals(Connection.STATE_NEW, connection.getState()) 96 Connection connection = Connection.createFailedConnection( local 115 Connection connection = Connection.createCanceledConnection(); local 132 Connection connection = createConnection(lock); local 147 Connection connection = createConnection(lock); local 162 Connection connection = createConnection(lock); local 179 Connection connection = createConnection(lock); local 195 Connection connection = createConnection(lock); local 214 Connection connection = createConnection(lock); local 228 Connection connection = createConnection(lock); local 255 Connection connection = createConnection(lock); local 282 Connection connection = createConnection(lock); local 310 Connection connection = createConnection(lock); local 339 Connection connection = createConnection(lock); local 351 Connection connection = createConnection(lock); local 367 Connection connection = createConnection(lock); local 382 Connection connection = createConnection(lock); local 436 BasicConnection connection = new BasicConnection(); local [all...] |
/external/clang/test/CodeGenCXX/ |
incomplete-member-function-pointer.cpp | 4 struct connection { struct 7 void (connection::*a)(fake_tuple) = &connection::bar; 9 void (connection::*b)(fake_tuple) = &connection::bar;
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
907872fc8e105e56a7d1913fc02fdb2e.00000e59.honggfuzz.cov | 3 Connection: Kee.1
5 Connection: Kee.1
7 Connection: Kee.1
10 Connection: Kee.1
14 Connection: Kee.1
16 Connection: Kee.1
19 Connection: Kee.1
21 Connection: Kee.1
23 Connection: Kee.1
25 Connection: Kee.1 [all...] |
23c722d99a6d5f1aa24b1f20fb9799d5.00000be8.honggfuzz.cov | 3 Connection: Kee.1
5 Connection: Kee.1
7 Connection: Kee.1
10 Connection: Kee.1
14 Connection: Kee.1
16 Connection: Kee.1
19 Connection: Kee.1
21 Connection: Kee.1
23 Connection: Kee.1
25 Connection: Kee.1 [all...] |
50027e00b4c58864f9eb9e7434c31566.0000005a.honggfuzz.cov | 2 Connection: keep???ve
|
a02b7fa56d55b8da87d9c9632d2c9c99.00000038.honggfuzz.cov | 1 GET /dir/?V=[Proxy-Connection:]eive
|
aa76750e39fd999c8a3e0da84ae4a366.0000025d.honggfuzz.cov | 1 GET /cgi-byn/ HTTP???????????????????????????????????????????????????????????????????????????????????????novary??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????Proxy-Connection:?????????????????????????????????????????????????????????????????????????????????????????????????? (…)
|
ad421c01b6eb943c60f7190d841e733a.0000010a.honggfuzz.cov | 3 Connection: keep-alive
|
b9ee86222ee1b4d332382606bb2ccd8e.00000093.honggfuzz.cov | 2 Transfer-Encoding: chunked Connection: Upgrade
|
cbf7aa48fe4dcca2206c475c51213029.0000003d.honggfuzz.cov | 3 Connection: close
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
907872fc8e105e56a7d1913fc02fdb2e.00000e59.honggfuzz.cov | 3 Connection: Kee.1
5 Connection: Kee.1
7 Connection: Kee.1
10 Connection: Kee.1
14 Connection: Kee.1
16 Connection: Kee.1
19 Connection: Kee.1
21 Connection: Kee.1
23 Connection: Kee.1
25 Connection: Kee.1 [all...] |
23c722d99a6d5f1aa24b1f20fb9799d5.00000be8.honggfuzz.cov | 3 Connection: Kee.1
5 Connection: Kee.1
7 Connection: Kee.1
10 Connection: Kee.1
14 Connection: Kee.1
16 Connection: Kee.1
19 Connection: Kee.1
21 Connection: Kee.1
23 Connection: Kee.1
25 Connection: Kee.1 [all...] |
50027e00b4c58864f9eb9e7434c31566.0000005a.honggfuzz.cov | 2 Connection: keep???ve
|
56d2617158a3cddc5e7a996a39b3c52a.00000138.honggfuzz.cov | 5 ? ??????????????????????no-store????????????\?????????????????????????????????????????????????????????????????????????????????????????MERGE???????????????????????????????????????????????????????????????????????????Proxy-Connection:???????????????? h
|
a02b7fa56d55b8da87d9c9632d2c9c99.00000038.honggfuzz.cov | 1 GET /dir/?V=[Proxy-Connection:]eive
|
ad421c01b6eb943c60f7190d841e733a.0000010a.honggfuzz.cov | 3 Connection: keep-alive
|
b9ee86222ee1b4d332382606bb2ccd8e.00000093.honggfuzz.cov | 2 Transfer-Encoding: chunked Connection: Upgrade
|
cbf7aa48fe4dcca2206c475c51213029.0000003d.honggfuzz.cov | 3 Connection: close
|
/packages/services/Telephony/src/com/android/services/telephony/ |
TelephonyConferenceController.java | 32 import android.telecom.Connection; 48 private final Connection.Listener mConnectionListener = new Connection.Listener() { 50 public void onStateChanged(Connection c, int state) { 51 Log.v(this, "onStateChange triggered in Conf Controller : connection = "+ c 58 public void onDisconnected(Connection c, DisconnectCause disconnectCause) { 63 public void onDestroyed(Connection connection) { 64 remove(connection); 77 /** The TelephonyConference connection object. * [all...] |
TelephonyConference.java | 20 import android.telecom.Connection; 40 Connection.CAPABILITY_SUPPORT_HOLD | 41 Connection.CAPABILITY_HOLD | 42 Connection.CAPABILITY_MUTE | 43 Connection.CAPABILITY_MANAGE_CONFERENCE); 49 * Invoked when the Conference and all it's {@link Connection}s should be disconnected. 53 for (Connection connection : getConnections()) { 54 if (disconnectCall(connection)) { 61 * Disconnect the underlying Telephony Call for a connection 113 final TelephonyConnection connection = getFirstConnection(); local 124 final TelephonyConnection connection = getFirstConnection(); local 132 final TelephonyConnection connection = getFirstConnection(); local 140 final TelephonyConnection connection = getFirstConnection(); local [all...] |
ImsConferenceController.java | 21 import android.telecom.Connection; 57 * Ims conference controller connection listener. Used to respond to changes in state of the 60 private final Connection.Listener mConnectionListener = new Connection.Listener() { 62 public void onStateChanged(Connection c, int state) { 68 public void onDisconnected(Connection c, DisconnectCause disconnectCause) { 74 public void onDestroyed(Connection connection) { 75 remove(connection); 85 public void onConferenceSupportedChanged(Connection c, boolean isConferenceSupported) 325 TelephonyConnection connection = it.next(); local [all...] |
/external/libmicrohttpd/src/microhttpd/ |
connection.h | 21 * @file connection.h 34 * Set callbacks for this connection to those for HTTP. 36 * @param connection connection to initialize 39 MHD_set_http_callbacks_ (struct MHD_Connection *connection); 43 * This function handles a particular connection when it has been 48 * @param connection connection to handle 50 * connection) 53 MHD_connection_handle_read (struct MHD_Connection *connection); [all...] |
/external/autotest/frontend/ |
setup_django_environment.py | 8 """Enable autocommit for the connection with matching name. 10 @param name: Name of the connection. 13 # ensure a connection is open 15 connections[name].connection.autocommit(True) 19 """Enable autocommit for default and global connection.
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
GsmCdmaConnectionTest.java | 36 private GsmCdmaConnection connection; field in class:GsmCdmaConnectionTest 53 connection = null; 59 connection = new GsmCdmaConnection(mPhone, String.format( 63 String formattedDialStr = connection.formatDialString( 69 formattedDialStr = connection.formatDialString("+1 (700).555-41NN,;1234"); 75 connection = new GsmCdmaConnection(mPhone, String.format( 79 assertEquals(GsmCdmaCall.State.IDLE, connection.getState()); 80 assertEquals(Connection.PostDialState.NOT_STARTED, connection.getPostDialState()); 82 assertEquals(0, connection.getDisconnectTime()) [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/connserv/ |
HfpClientConference.java | 21 import android.telecom.Connection; 38 Connection.CAPABILITY_SUPPORT_HOLD | Connection.CAPABILITY_HOLD | (manage 39 ? Connection.CAPABILITY_MANAGE_CONFERENCE : 0)); 50 public void onMerge(Connection connection) { 51 Log.d(TAG, "onMerge " + connection); 52 addConnection(connection); 56 public void onSeparate(Connection connection) { [all...] |