Searched refs:con (Results 1 - 25 of 135) sorted by relevance

123456

/external/libsepol/include/sepol/
H A Dcontext_record.h13 extern const char *sepol_context_get_user(const sepol_context_t * con);
16 sepol_context_t * con, const char *user);
19 extern const char *sepol_context_get_role(const sepol_context_t * con);
22 sepol_context_t * con, const char *role);
25 extern const char *sepol_context_get_type(const sepol_context_t * con);
28 sepol_context_t * con, const char *type);
31 extern const char *sepol_context_get_mls(const sepol_context_t * con);
34 sepol_context_t * con, const char *mls_range);
41 const sepol_context_t * con,
44 extern void sepol_context_free(sepol_context_t * con);
[all...]
/external/libselinux/src/
H A Dfreecon.c6 void freecon(security_context_t con) argument
8 free(con);
H A Denabled.c17 security_context_t con; local
28 if (getcon(&con) == 0) {
29 if (!strcmp(con, "kernel"))
31 freecon(con);
54 if (getcon(&con) == 0) {
55 if (!strcmp(con, "kernel"))
57 freecon(con);
H A Dcheck_context.c12 int security_check_context(const security_context_t con) argument
27 ret = write(fd, con, strlen(con) + 1);
H A Dget_initial_context.c14 int security_get_initial_context(const char * name, security_context_t * con) argument
43 *con = strdup(buf);
44 if (!(*con)) {
H A Dcanonicalize_context.c12 int security_canonicalize_context(const security_context_t con, argument
36 strncpy(buf, con, size);
47 strncpy(buf, con, size);
/external/oprofile/libpopt/
H A Dpopt.c41 static void prtcon(const char *msg, poptContext con) argument
45 con, con->os,
46 (con->os->nextCharArg ? con->os->nextCharArg : ""),
47 (con->os->nextArg ? con->os->nextArg : ""),
48 con->os->next,
49 (con->os->argv && con
54 poptSetExecPath(poptContext con, const char * path, int allowAbsolute) argument
64 invokeCallbacksPRE(poptContext con, const struct poptOption * opt) argument
92 invokeCallbacksPOST(poptContext con, const struct poptOption * opt) argument
120 invokeCallbacksOPTION(poptContext con, const struct poptOption * opt, const struct poptOption * myOpt, const void * myData, int shorty) argument
173 poptContext con = malloc(sizeof(*con)); local
228 poptResetContext(poptContext con) argument
264 handleExec( poptContext con, const char * longName, char shortName) argument
324 handleAlias( poptContext con, const char * longName, char shortName, const char * nextCharArg) argument
379 execCommand(poptContext con) argument
544 findNextArg( poptContext con, unsigned argx, int delete_arg) argument
583 expandNextArg( poptContext con, const char * s) argument
632 poptStripArg( poptContext con, int which) argument
706 poptGetNextOpt(poptContext con) argument
1018 poptGetOptArg(poptContext con) argument
1030 poptGetArg(poptContext con) argument
1038 poptPeekArg(poptContext con) argument
1047 poptGetArgs(poptContext con) argument
1062 poptFreeContext(poptContext con) argument
1106 poptAddAlias(poptContext con, struct poptAlias alias, int flags) argument
1125 poptAddItem(poptContext con, poptItem newItem, int flags) argument
1170 poptBadOption(poptContext con, int flags) argument
1210 poptStuffArgs(poptContext con, const char ** argv) argument
1233 poptGetInvocationName(poptContext con) argument
1239 poptStrippedArgv(poptContext con, int argc, char ** argv) argument
[all...]
H A Dpopt.h215 * @param con context
221 typedef void (*poptCallbackType) (poptContext con,
248 * @param con context
251 void poptResetContext(/*@null@*/poptContext con)
252 /*@modifies con @*/;
256 * @param con context
259 int poptGetNextOpt(/*@null@*/poptContext con)
261 /*@modifies con, fileSystem, internalState @*/;
265 * @param con context
269 const char * poptGetOptArg(/*@null@*/poptContext con)
[all...]
H A Dpoptconfig.c14 static void configLine(poptContext con, char * line) argument
15 /*@modifies con @*/
23 if (con->appName == NULL)
25 nameLength = strlen(con->appName);
30 if (strncmp(line, con->appName, nameLength)) return;
89 (void) poptAddItem(con, item, 0);
91 (void) poptAddItem(con, item, 1);
96 int poptReadConfigFile(poptContext con, const char * fn) argument
139 configLine(con, dst);
163 int poptReadDefaultConfig(poptContext con, /* argument
[all...]
H A Dpopthelp.c24 * @param con context
30 static void displayArgs(poptContext con, argument
38 poptPrintHelp(con, stdout, 0);
40 poptPrintUsage(con, stdout, 0);
494 * @param con context
500 static void singleTableHelp(poptContext con, FILE * fp, argument
510 itemHelp(fp, con->aliases, con->numAliases, left, NULL);
511 itemHelp(fp, con->execs, con
541 showHelpIntro(poptContext con, FILE * fp) argument
564 poptPrintHelp(poptContext con, FILE * fp, int flags) argument
705 singleTableUsage(poptContext con, FILE * fp, size_t cursor, const struct poptOption * opt, const char * translation_domain, poptDone done) argument
785 poptPrintUsage(poptContext con, FILE * fp, int flags) argument
815 poptSetOtherOptionHelp(poptContext con, const char * text) argument
[all...]
/external/libsepol/src/
H A Dcontext_record.c25 const char *sepol_context_get_user(const sepol_context_t * con) argument
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
133 sepol_context_t *con = local
[all...]
/external/javassist/src/main/javassist/
H A DURLClassPath.java78 URLConnection con = openClassfile0(classname);
79 if (con != null)
80 return con.getInputStream();
103 URLConnection con = openClassfile0(classname);
104 InputStream is = con.getInputStream();
107 return con.getURL();
134 URLConnection con = fetchClass0(host, port,
136 int size = con.getContentLength();
137 InputStream s = con.getInputStream();
174 URLConnection con
[all...]
/external/libselinux/include/selinux/
H A Dselinux.h19 extern void freecon(security_context_t con);
22 extern void freeconary(security_context_t * con);
26 /* Get current context, and set *con to refer to it.
28 extern int getcon(security_context_t * con);
30 /* Set the current security context to con.
38 extern int setcon(const security_context_t con);
41 set *con to refer to it. Caller must free via freecon. */
42 extern int getpidcon(pid_t pid, security_context_t * con);
44 /* Get previous context (prior to last exec), and set *con to refer to it.
46 extern int getprevcon(security_context_t * con);
[all...]
H A Dlabel.h86 * @con: returns the appropriate context with which to label the object
93 * The result is returned in the memory pointed to by @con and must be freed
96 int selabel_lookup(struct selabel_handle *handle, security_context_t *con,
98 int selabel_lookup_raw(struct selabel_handle *handle, security_context_t *con,
/external/oprofile/
H A Dpopt.h215 * @param con context
221 typedef void (*poptCallbackType) (poptContext con,
248 * @param con context
251 void poptResetContext(/*@null@*/poptContext con)
252 /*@modifies con @*/;
256 * @param con context
259 int poptGetNextOpt(/*@null@*/poptContext con)
261 /*@modifies con, fileSystem, internalState @*/;
265 * @param con context
269 const char * poptGetOptArg(/*@null@*/poptContext con)
[all...]
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DHttpsURLConnectionTest.java40 HttpsURLConnection con = new MyHttpsURLConnection(new URL(
43 con.getPeerPrincipal();
50 HttpsURLConnection con = new MyHttpsURLConnection(null);
51 if (con.getLocalPrincipal() != null) {
65 HttpsURLConnection con = new MyHttpsURLConnection(null);
67 con.setHostnameVerifier(null);
81 HttpsURLConnection con = new MyHttpsURLConnection(null);
82 SSLSocketFactory sf = con.getSSLSocketFactory();
97 HttpsURLConnection con = new MyHttpsURLConnection(null);
99 con
[all...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_common.c34 static void dispatch_data(DBusConnection *con) argument
36 while (dbus_connection_get_dispatch_status(con) ==
38 dbus_connection_dispatch(con);
54 DBusConnection *con = eloop_ctx; local
55 dispatch_data(con);
62 dbus_connection_ref(priv->con);
74 dispatch_data(priv->con);
78 dbus_connection_unref(priv->con);
201 if (sig != SIGPOLL || !priv->con)
204 if (dbus_connection_get_dispatch_status(priv->con) !
[all...]
H A Ddbus_common_i.h17 DBusConnection *con; member in struct:wpas_dbus_priv
H A Ddbus_new_helpers.c478 obj_desc->connection = iface->con;
482 if (!dbus_connection_register_object_path(iface->con,
492 switch (dbus_bus_request_name(iface->con, dbus_service,
534 DBusConnection *con; local
546 con = ctrl_iface->con;
547 obj_desc->connection = con;
552 if (!dbus_connection_try_register_object_path(con, path, &vtable,
586 DBusConnection *con = ctrl_iface->con; local
658 do_send_prop_changed_signal( DBusConnection *con, const char *path, const char *interface, const struct wpa_dbus_object_desc *obj_dsc) argument
708 do_send_deprecated_prop_changed_signal( DBusConnection *con, const char *path, const char *interface, const struct wpa_dbus_object_desc *obj_dsc) argument
744 send_prop_changed_signal( DBusConnection *con, const char *path, const char *interface, const struct wpa_dbus_object_desc *obj_dsc) argument
769 DBusConnection *con = eloop_ctx; local
778 recursive_flush_changed_properties(DBusConnection *con, const char *path) argument
808 wpa_dbus_flush_all_changed_properties(DBusConnection *con) argument
831 wpa_dbus_flush_object_changed_properties(DBusConnection *con, const char *path) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/search/
H A DUserSearchManager.java38 * 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) { argument
61 this.con = con;
73 return userSearch.getSearchForm(con, searchService);
86 return userSearch.sendSearchForm(con, searchFor
[all...]
/external/smack/src/org/jivesoftware/smackx/
H A DRosterExchangeManager.java51 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) { argument
62 this.con = con;
107 con.sendPacket(msg);
125 con.sendPacket(msg);
146 con.sendPacket(msg);
175 con.addPacketListener(packetListener, packetFilter);
179 if (con !
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExtensionNamespaceSupport.java77 Constructor con = null;
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/smack/src/org/jivesoftware/smackx/pubsub/
H A DPubSubManager.java46 private Connection con; field in class:PubSubManager
58 con = connection;
71 con = connection;
87 LeafNode newNode = new LeafNode(con, elem.getNode());
136 sendPubsubPacket(con, to, Type.SET, request);
137 Node newNode = isLeafNode ? new LeafNode(con, name) : new CollectionNode(con, name);
163 DiscoverInfo infoReply = (DiscoverInfo)SyncPacketSend.getReply(con, info);
166 node = new LeafNode(con, id);
168 node = new CollectionNode(con, i
305 sendPubsubPacket(Connection con, String to, Type type, PacketExtension ext) argument
311 sendPubsubPacket(Connection con, String to, Type type, PacketExtension ext, PubSubNamespace ns) argument
317 sendPubsubPacket(Connection con, String to, Type type, PubSub packet) argument
323 sendPubsubPacket(Connection con, String to, Type type, PubSub packet, PubSubNamespace ns) argument
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
H A DHttpsURLConnection_ImplTest.java45 HttpsURLConnection con = new MyHttpsURLConnection(null);
46 HostnameVerifier ver = con.getHostnameVerifier();
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
H A Drbug_internal.h39 int rbug_connection_send_start(struct rbug_connection *con, enum rbug_opcode opcode, uint32_t length);
40 int rbug_connection_write(struct rbug_connection *con, void *data, uint32_t size);
41 int rbug_connection_send_finish(struct rbug_connection *con, uint32_t *c);

Completed in 430 milliseconds

123456