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

1 2 3 4 5 6

  /hardware/intel/common/wrs_omxil_core/base/src/
cmodule.cpp 39 roles = NULL;
58 if (roles) {
59 if (roles[0])
60 free(roles[0]);
61 free(roles);
131 OMX_ERRORTYPE CModule::GetComponentRoles(OMX_U32 *nr_roles, OMX_U8 **roles)
136 if (!roles) {
145 if (!roles[i])
148 if (roles && roles[i]
217 const OMX_U8 **roles; local
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/auth/
grantip.py 4 Grant roles and logins based on IP address.
13 and logins and roles are assigned based on that.
15 ``ip_map`` is a map of {ip_mask: (username, roles)}. Either
16 ``username`` or ``roles`` may be None. Roles may also be prefixed
37 def _convert_user_role(self, username, roles):
38 if roles and isinstance(roles, six.string_types):
39 roles = roles.split(','
    [all...]
  /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) {
  /external/selinux/libsepol/include/sepol/
roles.h 12 char ***roles, unsigned int *nroles);
  /external/selinux/libsepol/tests/policies/test-hooks/
module_add_symbols.conf 11 user user_add_1 roles { role_add_1 };
  /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;
  /external/jetty/src/java/org/eclipse/jetty/security/authentication/
LoginCallbackImpl.java 46 private String[] roles = IdentityService.NO_ROLES; field in class:LoginCallbackImpl
93 return roles;
98 this.roles = groups;
LoginCallback.java 50 public void setRoles(String[] roles);
  /hardware/intel/common/wrs_omxil_core/base/inc/
cmodule.h 37 const char **roles; member in struct:wrs_omxil_cmodule_s
64 /* component name and roles */
66 OMX_ERRORTYPE GetComponentRoles(OMX_U32 *nr_roles, OMX_U8 **roles);
89 /* component roles */
90 OMX_U8 **roles; member in class:CModule
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
user.py 46 def roles(self): member in class:User
47 """The user's set of roles."""
54 # object_r is implicitly added to all roles by the compiler.
74 roles = list(str(r) for r in self.roles)
75 stmt = "user {0} roles ".format(self)
76 if len(roles) > 1:
77 stmt += "{{ {0} }}".format(' '.join(roles))
79 stmt += roles[0]
  /external/jetty/src/java/org/eclipse/jetty/security/
SpnegoUserIdentity.java 34 public SpnegoUserIdentity( Subject subject, Principal principal, List<String> roles )
38 _roles = roles;
ConstraintAware.java 33 /** Set Constraint Mappings and roles.
36 * @param roles
38 void setConstraintMappings(List<ConstraintMapping> constraintMappings, Set<String> roles);
DefaultIdentityService.java 32 * associated {@link org.eclipse.jetty.server.UserIdentity.Scope}. If there are roles
48 * If there are roles refs present in the scope, then wrap the UserIdentity
85 public UserIdentity newUserIdentity(final Subject subject, final Principal userPrincipal, final String[] roles)
87 return new DefaultUserIdentity(subject,userPrincipal,roles);
DefaultUserIdentity.java 39 public DefaultUserIdentity(Subject subject, Principal userPrincipal, String[] roles)
43 _roles=roles;
  /external/selinux/libsepol/src/
user_record.c 19 char **roles; member in struct:sepol_user
21 /* The number of roles */
163 /* Roles */
181 roles_realloc = realloc(user->roles,
188 user->roles = roles_realloc;
189 user->roles[user->num_roles - 1] = role_cp;
208 if (!strcmp(user->roles[i], role))
239 free(user->roles[i]);
240 free(user->roles);
241 user->roles = tmp_roles
    [all...]
users.c 22 ebitmap_t *roles = &(usrdatum->roles.roles); local
34 /* Extract roles */
35 ebitmap_for_each_bit(roles, rnode, bit) {
112 const char **roles = NULL; local
133 if (sepol_user_get_roles(handle, user, &roles, &num_roles) < 0)
162 (const hashtab_key_t)roles[i]);
165 roles[i], cname);
173 (&(usrdatum->roles.roles), bit, 1)
    [all...]
  /hardware/qcom/media/msm8974/mm-core/omxcore/src/common/
qc_omx_core.h 51 char* roles[OMX_CORE_MAX_CMP_ROLES];// roles played member in struct:_omx_core_cb_type
  /hardware/qcom/media/msm8974/mm-core/src/common/
qc_omx_core.h 51 char* roles[OMX_CORE_MAX_CMP_ROLES];// roles played member in struct:_omx_core_cb_type
  /hardware/qcom/media/msm8996/mm-core/src/common/
qc_omx_core.h 51 char* roles[OMX_CORE_MAX_CMP_ROLES];// roles played member in struct:_omx_core_cb_type
  /hardware/qcom/media/msmcobalt/mm-core/src/common/
qc_omx_core.h 51 char* roles[OMX_CORE_MAX_CMP_ROLES];// roles played member in struct:_omx_core_cb_type
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
userquery.py 38 roles The attribute to match.
73 roles = CriteriaSetDescriptor("roles_regex", "lookup_role") variable in class:UserQuery
81 self.log.debug("Roles: {0.roles!r}, regex: {0.roles_regex}, "
92 if self.roles and not self._match_regex_or_set(
93 user.roles,
94 self.roles,
  /external/jetty/src/java/org/eclipse/jetty/util/security/
Constraint.java 118 public void setRoles(String[] roles)
120 _roles = roles;
122 if (roles != null)
123 for (int i = roles.length; !_anyRole && i-- > 0;)
124 _anyRole |= ANY_ROLE.equals(roles[i]);
138 * @return List of roles for this constraint.
178 * @return True if authentication required but no roles set
  /external/selinux/libsemanage/src/
seusers_local.c 22 char *roles = NULL; local
38 roles = malloc(size);
39 if (roles) {
40 strcpy(roles,roles_arr[0]);
42 strcat(roles,",");
43 strcat(roles,roles_arr[i]);
51 return roles;
61 char *roles = NULL; local
74 roles = semanage_user_roles(handle, sename);
87 if (roles && (!proles || strcmp(proles, roles) != 0))
    [all...]
  /device/huawei/angler/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
  /device/lge/bullhead/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

Completed in 531 milliseconds

1 2 3 4 5 6