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

1 23 4 5 6

  /hardware/qcom/media/msm8974/libstagefrighthw/
QComOMXPlugin.h 45 Vector<String8> *roles);
  /hardware/qcom/media/msm8996/libstagefrighthw/
QComOMXPlugin.h 45 Vector<String8> *roles);
  /hardware/qcom/media/msmcobalt/libstagefrighthw/
QComOMXPlugin.h 45 Vector<String8> *roles);
  /hardware/ti/omap3/libstagefrighthw/
TIOMXPlugin.h 45 Vector<String8> *roles);
  /hardware/ti/omap4-aah/domx/omx_core/inc/
OMX_ComponentRegistry.h 48 OMX_OUT OMX_U8 **roles);
  /hardware/ti/omap4-aah/libstagefrighthw/
TIOMXPlugin.h 45 Vector<String8> *roles);
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_ComponentRegistry.h 48 OMX_OUT OMX_U8 **roles);
  /hardware/ti/omap4xxx/libstagefrighthw/
TIOMXPlugin.h 45 Vector<String8> *roles);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
rolequery.py 29 Query SELinux policy roles.
39 types_equal If true, only roles with type sets
53 """Generator which yields all matching roles."""
59 for r in self.policy.roles():
  /external/jetty/src/java/org/eclipse/jetty/security/
PropertyUserStore.java 143 String roles = null; local
147 roles = credentials.substring(c + 1).trim();
154 if (roles != null && roles.length() > 0)
156 roleArray = roles.split(",");
166 if (roles != null)
JDBCLoginService.java 254 List<String> roles = new ArrayList<String>(); local
256 roles.add(rs.getString(_roleTableRoleField));
259 return putUser(username, Credential.getCredential(credentials),roles.toArray(new String[roles.size()]));
MappedLoginService.java 183 * @param roles The users roles
186 public synchronized UserIdentity putUser(String userName, Credential credential, String[] roles)
193 if (roles!=null)
194 for (String role : roles)
198 UserIdentity identity=_identityService.newUserIdentity(subject,userPrincipal,roles);
  /external/selinux/libsepol/src/
genusers.c 90 ebitmap_destroy(&usrdatum->roles.roles);
91 ebitmap_init(&usrdatum->roles.roles);
130 if (strncasecmp(p, "roles", 5))
174 (&usrdatum->roles.roles, bit, 1)) {
  /external/autotest/site_utils/
deploy_production.py 33 @returns: A list of a list of tuple of (server_name, server_status, roles).
42 # 'roles': ['drone', 'scheduler'],
55 servers = [s for s in servers if 'devserver' not in s['roles'] and
56 'crash_server' not in s['roles'] and
57 'reserve' not in s['roles']]
64 info = (server['hostname'], server['status'], server['roles'])
66 order = min([PUSH_ORDER[r] for r in server['roles']
70 # All roles are not indexed in PUSH_ORDER.
73 # Push all servers with unknown roles together.
191 @param servers: A list of tuple of (server_name, server_status, roles)
    [all...]
server_manager_unittest.py 65 'roles': QueriableList([self.DRONE_ROLE]),
71 'roles': QueriableList([self.DRONE_ROLE]),
77 'roles': QueriableList([self.SCHEDULER_ROLE]),
83 'roles': QueriableList([self.SCHEDULER_ROLE]),
176 self.mox.StubOutWithMock(self.BACKUP_DRONE.roles, 'get')
177 self.BACKUP_DRONE.roles.get(
210 self.mox.StubOutWithMock(self.BACKUP_DRONE.roles, 'filter')
211 self.BACKUP_DRONE.roles.filter(
230 self.mox.StubOutWithMock(self.PRIMARY_DRONE.roles, 'filter')
234 self.PRIMARY_DRONE.roles.filter
    [all...]
server_manager_actions.py 109 def try_execute(server, roles, enable, post_change,
115 @param roles: A list of roles changed.
116 @param enable: Set to True if the roles are enabled, i.e., added to server.
117 If it's False, the roles are removed from the server.
147 for role in roles:
server_manager.py 13 roles will be replaced by a backup server first.
105 server.roles.get(role=role).delete()
139 if (not server.roles.all() and
149 unique_roles = server.roles.filter(
177 # Apply actions to enable/disable roles of the server after the status is
184 print ('Status of server %s is changed from %s to %s. Affected roles: %s' %
227 'current roles first.' % hostname)
228 for role in server.roles.all():
  /external/selinux/policycoreutils/gui/
usersPage.py 61 col = gtk.TreeViewColumn(_("SELinux Roles"), gtk.CellRendererText(), text=2)
108 roles = self.selinuxRolesEntry.get_text()
111 (rc, out) = commands.getstatusoutput("semanage user -a -R '%s' -r %s %s" % (roles, range, user))
119 self.store.set_value(iter, 2, roles)
124 roles = self.selinuxRolesEntry.get_text()
127 (rc, out) = commands.getstatusoutput("semanage user -m -R '%s' -r %s %s" % (roles, range, user))
  /external/selinux/checkpolicy/test/
dismod.c 64 "classes", "roles ", "types ", "users ", "bools ",
179 int display_mod_role_set(role_set_t * roles, policydb_t * p, FILE * fp)
183 if (roles->flags & ROLE_STAR) {
186 } else if (roles->flags & ROLE_COMP) {
190 for (i = ebitmap_startbit(&roles->roles);
191 i < ebitmap_length(&roles->roles); i++) {
192 if (!ebitmap_get_bit(&roles->roles, i)
    [all...]
  /frameworks/av/media/libstagefright/omx/
OMXMaster.cpp 212 Vector<String8> *roles) {
215 roles->clear();
224 return plugin->getRolesOfComponent(name, roles);
  /hardware/ti/omap4-aah/domx/omx_core/src/
OMX_Core_Wrapper.c 139 OMX_INOUT OMX_U32 * pNumRoles, OMX_OUT OMX_U8 ** roles)
144 return OMX_GetRolesOfComponent(compName, pNumRoles, roles);
  /hardware/ti/omap4xxx/domx/omx_core/src/
OMX_Core_Wrapper.c 143 OMX_INOUT OMX_U32 * pNumRoles, OMX_OUT OMX_U8 ** roles)
148 return OMX_GetRolesOfComponent(compName, pNumRoles, roles);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/
users.py 63 (SymbolWrapper(r) for r in left_user.roles),
64 (SymbolWrapper(r) for r in right_user.roles))
__init__.py 34 from .roles import RolesDifference
  /hardware/intel/common/libstagefrighthw/
WrsOMXPlugin.h 93 Vector<String8> *roles);

Completed in 1913 milliseconds

1 23 4 5 6