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

1 2

  /external/webrtc/webrtc/p2p/base/
transportdescription.cc 20 const char* const roles[] = { local
27 for (size_t i = 0; i < arraysize(roles); ++i) {
28 if (_stricmp(roles[i], role_str.c_str()) == 0) {
  /device/google/marlin/camera/mm-image-codec/qomx_core/
qomx_core.h 62 * @roles: array of roles played by the component
74 char *roles[OMX_CORE_MAX_ROLES]; //Roles played by the component member in struct:_omx_core_component_t
  /external/selinux/libsemanage/src/
users_base_file.c 27 const char **roles = NULL; local
34 if (fprintf(str, "user %s roles { ", name) < 0)
37 if (semanage_user_base_get_roles(handle, user, &roles, &nroles) < 0)
41 if (fprintf(str, "%s ", roles[i]) < 0)
56 free(roles);
60 free(roles);
97 if (parse_assert_str(handle, info, "roles") < 0)
seusers_local.c 22 char *roles = NULL; local
39 roles = strdup("");
41 roles = malloc(size);
42 if (roles) {
43 strcpy(roles,roles_arr[0]);
45 strcat(roles,",");
46 strcat(roles,roles_arr[i]);
55 return roles;
65 char *roles = NULL; local
84 roles = semanage_user_roles(handle, sename)
    [all...]
  /external/selinux/libsepol/src/
context.c 40 ebitmap_t types, roles; local
44 ebitmap_init(&roles);
user_record.c 19 char **roles; member in struct:sepol_user
21 /* The number of roles */
171 /* Roles */
192 roles_realloc = realloc(user->roles,
198 user->roles = roles_realloc;
199 user->roles[user->num_roles - 1] = role_cp;
218 if (!strcmp(user->roles[i], role))
249 free(user->roles[i]);
250 free(user->roles);
251 user->roles = tmp_roles
    [all...]
users.c 22 ebitmap_t *roles; local
31 roles = &(usrdatum->roles.roles);
39 /* Extract roles */
40 ebitmap_for_each_bit(roles, rnode, bit) {
117 const char **roles = NULL; local
138 if (sepol_user_get_roles(handle, user, &roles, &num_roles) < 0)
165 roldatum = hashtab_search(policydb->p_roles.table, roles[i]);
168 roles[i], cname)
    [all...]
expand.c 527 * The boundaries have to be copied after the types/roles/users are copied,
765 if (map_ebitmap(&role->roles, &mapped_roles, state->rolemap))
767 if (ebitmap_union(&new_role->roles, &mapped_roles)) {
774 ebitmap_for_each_bit(&role->roles, rnode, i) {
859 * the roles have been added */
1052 /* get global roles for this user */
1053 if (role_set_expand(&user->roles, &tmp_union, state->out, state->base, state->rolemap)) {
1059 if (ebitmap_union(&new_user->roles.roles, &tmp_union)) {
1226 ebitmap_t roles, new_roles local
1295 ebitmap_t roles, types; local
2460 ebitmap_t mapped_roles, roles; local
    [all...]
kernel_to_cil.c 2337 struct ebitmap *roles; local
    [all...]
kernel_to_conf.c 2259 char *name, *roles, *level, *range; local
    [all...]
module_to_cil.c 196 /* A linked list of all roles stored in the pdb
840 pos = &rs->roles;
947 if (ebitmap_cmp(&rs1->roles, &rs2->roles) == 0)
1049 rc = set_to_names(pdb, 0, &rs->roles, attr_list, names, num_names);
1054 rc = ebitmap_to_names(&rs->roles, pdb->p_role_val_to_name, names, num_names);
1458 rs = &rule->roles;
1499 char **roles = NULL; local
1507 rs = &rule->roles;
1508 rc = process_roleset(pdb, rs, attr_list, &roles, &num_roles)
2320 struct ebitmap roles = user->roles.roles; local
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue72/
CollectionTest.java 71 private Collection<Integer> roles; field in class:CollectionTest.CollectionSet
74 roles = new HashSet<Integer>();
75 roles.add(11);
76 roles.add(13);
80 return roles;
83 public void setRoles(Collection<Integer> roles) {
84 this.roles = roles;
  /frameworks/av/media/libstagefright/
OmxInfoBuilder.cpp 104 hidl_vec<IOmxStore::RoleInfo> roles; local
106 [&roles] (
108 roles = inRoleList;
111 ALOGE("Fail to obtain codec roles from IOmxStore.");
136 // Convert roles to lists of codecs
148 for (const IOmxStore::RoleInfo& role : roles) {
  /frameworks/av/media/libstagefright/omx/1.0/
Omx.cpp 64 ::android::Vector<::android::String8> roles; local
66 mMaster->getRolesOfComponent(componentName, &roles);
68 for (OMX_U32 i = 0; i < roles.size(); ++i) {
69 info.mRoles.push_back(roles[i]);
  /external/selinux/python/sepolgen/src/sepolgen/
refpolicy.py 132 def roles(self): member in class:Node
986 self.roles = IdSet()
1002 for role in self.roles:
  /external/selinux/python/sepolicy/sepolicy/
__init__.py 107 roles = None variable
156 global roles
165 roles = None
215 'roles': list(map(str, x.expand())),
262 'roles': list(map(str, x.roles)),
267 'roles': list(map(str, x.roles)),
916 global roles
917 if roles
    [all...]
  /external/python/apitools/samples/iam_sample/iam_v1/
iam_v1_messages.py 50 role: Role that is assigned to `members`. For example, `roles/viewer`,
51 `roles/editor`, or `roles/owner`. Required
554 "role": "roles/owner", "members": [
558 "role": "roles/viewer", "members": ["user:sean@example.com"]
617 of grantable roles. The name follows the Google Cloud Platform resource
629 roles: The list of matching roles.
632 roles = _messages.MessageField('Role', 1, repeated=True) variable in class:QueryGrantableRolesResponse
641 name: The name of the role. Examples of roles names are: `roles/editor`
    [all...]
  /external/selinux/checkpolicy/
policy_define.c 3129 role_set_t roles; local
    [all...]
policy_parse.y 80 %type <ptr> role_def roles
99 %token ROLES
513 role_dominance : DOMINANCE '{' roles '}'
523 roles : role_def label
525 | roles role_def
530 | ROLE identifier_push '{' roles '}'
655 user_def : USER identifier ROLES names opt_mls_user ';'
    [all...]
  /external/selinux/libsepol/cil/src/
cil_policy.c 1588 struct cil_list *roles = NULL; local
    [all...]
cil_internal.h 442 ebitmap_t *roles; member in struct:cil_user
503 ebitmap_t *roles; member in struct:cil_roleattribute
928 /* Default labeling behavior for users, roles, and types */
  /external/selinux/libsepol/include/sepol/policydb/
policydb.h 82 * users, roles, types, sensitivities, categories, etc.
95 ebitmap_t roles; member in struct:role_set
139 ebitmap_t dominates; /* set of roles dominated by this role */
146 ebitmap_t roles; /* roles with this attribute */ member in struct:role_datum
205 role_set_t roles; /* set of authorized roles for user */ member in struct:user_datum
301 role_set_t roles; /* current role */ member in struct:role_trans_rule
309 role_set_t roles; /* current role */ member in struct:role_allow_rule
310 role_set_t new_roles; /* new roles */
    [all...]
  /external/guice/extensions/struts2/lib/
jetty-6.1.0.jar 
struts2-core-2.2.1.jar 
  /external/guice/extensions/persist/lib/
hsqldb.jar 

Completed in 1020 milliseconds

1 2