HomeSort by relevance Sort by last modified time
    Searched refs:con_str (Results 1 - 9 of 9) sorted by null

  /external/selinux/libsemanage/src/
interfaces_file.c 26 char *con_str = NULL; local
35 if (semanage_context_to_string(handle, ifcon, &con_str) < 0)
37 if (fprintf(str, "%s ", con_str) < 0)
39 free(con_str);
40 con_str = NULL;
42 if (semanage_context_to_string(handle, msgcon, &con_str) < 0)
44 if (fprintf(str, "%s\n", con_str) < 0)
46 free(con_str);
47 con_str = NULL;
53 free(con_str);
    [all...]
ibendports_file.c 27 char *con_str = NULL; local
42 if (semanage_context_to_string(handle, con, &con_str) < 0)
44 if (fprintf(str, "%s\n", con_str) < 0)
48 free(con_str);
55 free(con_str);
fcontexts_file.c 50 char *con_str = NULL; local
62 if (semanage_context_to_string(handle, con, &con_str) < 0)
64 if (fprintf(str, "%s\n", con_str) < 0)
66 free(con_str);
67 con_str = NULL;
77 free(con_str);
ibpkeys_file.c 26 char *con_str = NULL; local
48 if (semanage_context_to_string(handle, con, &con_str) < 0)
50 if (fprintf(str, "%s\n", con_str) < 0)
54 free(con_str);
61 free(con_str);
nodes_file.c 27 char *con_str = NULL; local
41 if (semanage_context_to_string(handle, con, &con_str) < 0)
45 (str, "nodecon %s %s %s %s\n", proto_str, addr, mask, con_str) < 0)
50 free(con_str);
56 free(con_str);
ports_file.c 27 char *con_str = NULL; local
46 if (semanage_context_to_string(handle, con, &con_str) < 0)
48 if (fprintf(str, "%s\n", con_str) < 0)
51 free(con_str);
57 free(con_str);
pywrap-test.py 212 (rc, con_str) = semanage.semanage_context_to_string(sh,con)
213 if rc < 0: con_str = ""
214 print "Port: ", range_str, " ", proto_str, " Context: ", con_str
236 con_str = "<<none>>"
238 (rc, con_str) = semanage.semanage_context_to_string(sh,con)
239 if rc < 0: con_str = ""
240 print "File Expr: ", expr, " [", type_str, "] Context: ", con_str
330 (status, con_str) = semanage.semanage_context_to_string(sh, con)
331 if status < 0: con_str = ""
333 print "Network Node: ", addr, "/", mask, " (", proto_str, ")", "Context: ", con_str
    [all...]
  /external/selinux/libsepol/src/
context.h 25 const char *con_str, size_t con_str_len);
context.c 295 const char *con_str, size_t con_str_len)
313 memcpy(con_cpy, con_str, con_str_len);

Completed in 224 milliseconds