HomeSort by relevance Sort by last modified time
    Searched defs:con (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_common_i.h 17 DBusConnection *con; member in struct:wpas_dbus_priv
  /external/javassist/src/main/javassist/
URLClassPath.java 78 URLConnection con = openClassfile0(classname); local
79 if (con != null)
80 return con.getInputStream();
103 URLConnection con = openClassfile0(classname); local
104 InputStream is = con.getInputStream();
107 return con.getURL();
134 URLConnection con = fetchClass0(host, port, local
136 int size = con.getContentLength();
137 InputStream s = con.getInputStream();
174 URLConnection con = url.openConnection() local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
RosterExchangeManager.java 51 private Connection con; field in class:RosterExchangeManager
59 * @param con a Connection which is used to send and receive messages.
61 public RosterExchangeManager(Connection con) {
62 this.con = con;
107 con.sendPacket(msg);
125 con.sendPacket(msg);
146 con.sendPacket(msg);
175 con.addPacketListener(packetListener, packetFilter);
179 if (con != null
    [all...]
MessageEventManager.java 49 private Connection con; field in class:MessageEventManager
57 * @param con a Connection to a XMPP server.
59 public MessageEventManager(Connection con) {
60 this.con = con;
225 con.addPacketListener(packetListener, packetFilter);
243 con.sendPacket(msg);
261 con.sendPacket(msg);
279 con.sendPacket(msg);
297 con.sendPacket(msg)
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
HttpsURLConnection_ImplTest.java 45 HttpsURLConnection con = new MyHttpsURLConnection(null); local
46 HostnameVerifier ver = con.getHostnameVerifier();
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExtensionNamespaceSupport.java 77 Constructor con = null; local
80 con = cl.getConstructor(m_sig);
88 con = cons[i];
93 // System.out.println("constructor " + con);
94 if (con != null)
95 handler = (ExtensionHandler)con.newInstance(m_args);
  /external/libselinux/src/
enabled.c 18 security_context_t con; local
29 if (getcon(&con) == 0) {
30 if (!strcmp(con, "kernel"))
32 freecon(con);
55 if (getcon(&con) == 0) {
56 if (!strcmp(con, "kernel"))
58 freecon(con);
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
HttpsURLConnectionTest.java 66 HttpsURLConnection con = new MyHttpsURLConnection(new URL("https://www.fortify.net/")); local
67 assertEquals("CipherSuite", con.getCipherSuite());
82 HttpsURLConnection con = new MyHttpsURLConnection(new URL("https://www.fortify.net/"), "X.508"); local
83 assertNull(con.getLocalCertificates());
84 con = new MyHttpsURLConnection(new URL("https://www.fortify.net/"), "X.509");
85 Certificate[] cert = con.getLocalCertificates();
114 HttpsURLConnection con = new MyHttpsURLConnection( local
116 HostnameVerifier verifyer = con.getHostnameVerifier();
134 HttpsURLConnection con = new MyHttpsURLConnection(new URL("https://www.fortify.net/"), "X.508"); local
135 assertNull(con.getLocalPrincipal())
151 HttpsURLConnection con = new MyHttpsURLConnection(new URL("https:\/\/www.fortify.net\/"), "X.508"); local
175 HttpsURLConnection con = new MyHttpsURLConnection(new URL("https:\/\/www.fortify.net\/"), "X.508"); local
192 HttpsURLConnection con = new MyHttpsURLConnection(null); local
222 HttpsURLConnection con = new MyHttpsURLConnection(null); local
250 HttpsURLConnection con = new MyHttpsURLConnection(null); local
    [all...]
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
HttpsURLConnectionTest.java 40 HttpsURLConnection con = new MyHttpsURLConnection(new URL( local
43 con.getPeerPrincipal();
50 HttpsURLConnection con = new MyHttpsURLConnection(null); local
51 if (con.getLocalPrincipal() != null) {
65 HttpsURLConnection con = new MyHttpsURLConnection(null); local
67 con.setHostnameVerifier(null);
81 HttpsURLConnection con = new MyHttpsURLConnection(null); local
82 SSLSocketFactory sf = con.getSSLSocketFactory();
97 HttpsURLConnection con = new MyHttpsURLConnection(null); local
99 con.setSSLSocketFactory(null)
    [all...]
  /external/javassist/src/main/javassist/tools/web/
Viewer.java 165 URLConnection con = url.openConnection(); local
166 con.connect();
167 int size = con.getContentLength();
168 InputStream s = con.getInputStream();
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
ContentHandlerFactoryTest.java 43 URLConnection con = url.openConnection(); local
46 con.getContent();
56 con.getContent(new Class[] {});
63 con.setContentHandlerFactory(factory);
70 con.setContentHandlerFactory(null);
  /device/generic/goldfish/opengl/system/OpenglSystemCommon/
HostConnection.cpp 58 HostConnection *con = new HostConnection(); local
59 if (NULL == con) {
67 delete con;
73 delete con;
76 con->m_stream = stream;
83 delete con;
90 delete con;
93 con->m_stream = stream;
98 (unsigned int *)con->m_stream->allocBuffer(sizeof(unsigned int));
100 con->m_stream->commitBuffer(sizeof(unsigned int))
    [all...]
  /external/libsepol/src/
port_record.c 16 sepol_context_t *con; member in struct:sepol_port
216 tmp_port->con = NULL;
237 if (port->con &&
238 (sepol_context_clone(handle, port->con, &new_port->con) < 0))
257 sepol_context_free(port->con);
267 return port->con;
273 sepol_port_t * port, sepol_context_t * con)
278 if (sepol_context_clone(handle, con, &newcon) < 0) {
283 sepol_context_free(port->con);
    [all...]
context.c 333 context_struct_t *con = NULL; local
334 int ret = context_from_record(handle, &policydb->p, &con, context);
335 context_destroy(con);
336 free(con);
context_record.c 25 const char *sepol_context_get_user(const sepol_context_t * con)
28 return con->user;
34 sepol_context_t * con, const char *user)
44 free(con->user);
45 con->user = tmp_user;
52 const char *sepol_context_get_role(const sepol_context_t * con)
55 return con->role;
61 sepol_context_t * con, const char *role)
70 free(con->role);
71 con->role = tmp_role
133 sepol_context_t *con = local
    [all...]
nodes.c 88 context_struct_t *con = &node->context[0]; local
129 if (context_to_record(handle, policydb, con, &tmp_con) < 0)
ports.c 108 context_struct_t *con = &port->context[0]; local
124 if (context_to_record(handle, policydb, con, &tmp_con) < 0)
node_record.c 25 sepol_context_t *con; member in struct:sepol_node
589 tmp_node->con = NULL;
619 if (node->con &&
620 (sepol_context_clone(handle, node->con, &new_node->con) < 0))
642 sepol_context_free(node->con);
654 return node->con;
660 sepol_node_t * node, sepol_context_t * con)
665 if (sepol_context_clone(handle, con, &newcon) < 0) {
670 sepol_context_free(node->con);
    [all...]
  /external/smack/src/org/jivesoftware/smackx/search/
UserSearchManager.java 38 * Connection con = new XMPPConnection("jabber.org");
39 * con.login("john", "doe");
40 * UserSearchManager search = new UserSearchManager(con, "users.jabber.org");
52 private Connection con; field in class:UserSearchManager
58 * @param con the Connection to use.
60 public UserSearchManager(Connection con) {
61 this.con = con;
73 return userSearch.getSearchForm(con, searchService);
86 return userSearch.sendSearchForm(con, searchForm, searchService)
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoActivity.java 62 Configuration con = getResources().getConfiguration(); local
64 if (con.touchscreen == Configuration.TOUCHSCREEN_UNDEFINED) {
66 } else if (con.touchscreen == Configuration.TOUCHSCREEN_NOTOUCH) {
68 } else if (con.touchscreen == Configuration.TOUCHSCREEN_STYLUS) {
70 } else if (con.touchscreen == Configuration.TOUCHSCREEN_FINGER) {
79 if (con.navigation == Configuration.NAVIGATION_UNDEFINED) {
81 } else if (con.navigation == Configuration.NAVIGATION_NONAV) {
83 } else if (con.navigation == Configuration.NAVIGATION_DPAD) {
85 } else if (con.navigation == Configuration.NAVIGATION_TRACKBALL) {
87 } else if (con.navigation == Configuration.NAVIGATION_WHEEL)
    [all...]
  /external/oprofile/libopt++/
popt_options.cpp 93 poptContext con = op_poptGetContext(NULL, argc, argv, &options[0], 0); local
99 while ((file = poptGetArg(con)) != 0)
105 return con;
114 poptContext con = local
117 poptFreeContext(con);
  /libcore/luni/src/test/java/libcore/sqlite/
OldStmtTest.java 95 Connection con = Support_SQL.getConnection(); local
96 con.close();
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 104 final Context con = getContext(); local
  /external/chromium/android/autofill/
url_fetcher_proxy.h 100 scoped_refptr<net::URLRequestContextGetter> con = request_context(); local
101 CHECK(con.get()) << "No URLRequestContextGetter!";
102 scoped_refptr<base::MessageLoopProxy> mlp = con->GetIOMessageLoopProxy();
  /external/openssl/ssl/
bio_ssl.c 542 BIO *ret=NULL,*con=NULL,*ssl=NULL; local
544 if ((con=BIO_new(BIO_s_connect())) == NULL)
548 if ((ret=BIO_push(ssl,con)) == NULL)
552 if (con != NULL) BIO_free(con);

Completed in 349 milliseconds

1 2 3 4