HomeSort by relevance Sort by last modified time
    Searched full:role (Results 226 - 250 of 1713) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/site_tests/platform_UdevVars/
platform_UdevVars.py 46 role = device.get('POWERD_ROLE', None)
47 if role:
48 logging.debug(' POWERD_ROLE=%s', role)
49 self.devices_with_role[role].append(device)
53 """Log devices grouped by role for easier debugging."""
55 for role in sorted(self.devices_with_role.keys()):
56 for device in self.devices_with_role[role]:
59 logging.info(' %-21s %s [%s]', role + ':', path, name)
113 for role, expected_num in expected_num_per_role:
114 num = len(self.devices_with_role[role])
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
OptionsMessage.java 30 * Representation of a specific role type. The numeric values
46 for (ProtocolRole role : ProtocolRole.values()) {
47 if (role.getAsInt() == intVal) {
48 return role;
60 * The preferred protocol role of the sender.
132 ProtocolRole role; local
147 role = ProtocolRole.DISPLAY_DEVICE;
150 role = ProtocolRole.INPUT_DEVICE;
156 role = ProtocolRole.INPUT_DEVICE;
159 role = ProtocolRole.DISPLAY_DEVICE
    [all...]
  /external/snakeyaml/src/test/java/examples/collections/
TypeSafeMap2Test.java 154 private String role; field in class:TypeSafeMap2Test.Developer2
159 private Developer2(String name, String role) {
161 this.role = role;
173 return role;
176 public void setRole(String role) {
177 this.role = role;
200 return "Developer " + name + " " + role;
212 private SuperMan(String name, String role, boolean smart)
    [all...]
TypeSafeMapTest.java 123 private String role; field in class:TypeSafeMapTest.Developer2
128 public Developer2(String name, String role) {
130 this.role = role;
142 return role;
145 public void setRole(String role) {
146 this.role = role;
155 public Developer222(String name, String role) {
156 super(name, role);
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/project/7/
project-7.pom 128 <role>Emeritus PMC</role>
138 <role>Committer</role>
139 <role>PMC</role>
148 <role>Committer</role>
149 <role>PMC Chair</role>
    [all...]
  /external/autotest/client/tests/netpipe/
netpipe.py 34 def run_once(self, server_ip, client_ip, role, bidirectional=False,
37 self.role = role
53 if role == 'server':
60 elif role == 'client':
69 raise error.TestError('invalid role specified')
101 if self.role == 'client':
  /external/autotest/contrib/
deploy_puppet.sh 11 given the server role and status and/or server name.\n\
21 -r server role as in server db, e.g. 'drone'.\n\
27 ROLE=
37 ROLE=$OPTARG
65 if [ -n "${ROLE}" ]; then
66 ROLE_OPT="-r ${ROLE}"
73 if [ -z "${ROLE}" ] && [ -z "${STATUS}" ] && [ -z "${HOSTNAME}"]; then
  /external/selinux/libselinux/man/man5/
secolor.conf.5 54 user, role, type or range
69 A wildcard '*' may be used to match any undefined string for the user, role and type
110 role * = white black
150 role unconfined_r = red #ffffff
156 role user_r = white black
162 role xguest_r = black red
172 role * = black white
  /external/selinux/libsepol/tests/
test-common.h 30 * scope_type what scope the role should have (eg., SCOPE_DECL or SCOPE_REQ)
31 * decls integer array of decl id's that we expect the role to have in the scope table
56 * id string role identifier
57 * decl the decl block which we are looking in for the role datum
58 * types the array of string types which we expect the role has in its type ebitmap
60 * flags the expected flags in the role typeset (eg., * or ~)
62 * This is a utility function to test whether the type set associated with a role in a specific
  /external/webrtc/webrtc/p2p/base/
transportdescriptionfactory.cc 42 // If we are the initiator set role to "actpass".
78 // Setting DTLS role to active.
79 ConnectionRole role = (options.prefer_passive_role) ? local
82 if (!SetSecurityInfo(desc.get(), role)) {
97 TransportDescription* desc, ConnectionRole role) const {
121 // Assign security role.
122 desc->connection_role = role;
  /frameworks/base/core/java/android/bluetooth/
BluetoothHealthAppConfiguration.java 37 * Constructor to register the SINK role
55 * @param role {@link BluetoothHealth#SOURCE_ROLE} or
59 BluetoothHealthAppConfiguration(String name, int dataType, int role, int
63 mRole = role;
120 * Return the role associated with this application configuration.
147 int role = in.readInt();
149 return new BluetoothHealthAppConfiguration(name, type, role,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
contextquery.py 39 role The role to match in the context.
41 will be used on the role.
59 role = CriteriaDescriptor("role_regex", "lookup_role") variable in class:ContextQuery
77 if self.role and not query.PolicyQuery._match_regex(
78 context.role,
79 self.role,
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.2.1/
commons-lang3-3.2.1.pom 60 <role>Java Developer</role>
70 <role>Java Developer</role>
79 <role>Java Developer</role>
88 <role>Java Developer</role>
98 <role>Java Developer</role>
    [all...]
  /system/bt/bta/include/
bta_pan_api.h 62 char *p_srv_name; /* service name for the PAN role */
64 tBTA_SEC sec_mask; /* security setting for the role */
72 tBTA_PAN_STATUS status; /* status of set role event */
73 tBTA_PAN_ROLE role; /* PAN roles successfully registered */ member in struct:__anon73606
91 tBTA_PAN_ROLE local_role; /* Local device PAN role for the connection */
92 tBTA_PAN_ROLE peer_role; /* Peer device PAN role for the connection */
163 void BTA_PanSetRole(tBTA_PAN_ROLE role, tBTA_PAN_ROLE_INFO *p_user_info, tBTA_PAN_ROLE_INFO *p_gn_info,
  /prebuilts/tools/common/m2/repository/net/sourceforge/pmd/pmd/5.1.1/
pmd-5.1.1.pom 66 <role>Developer</role>
75 <role>Developer</role>
84 <role>Developer</role>
92 <role>Developer</role>
100 <role>Developer</role>
    [all...]
  /external/tcpdump/tests/
rpvst-v.out 13 root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated
16 root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated
19 root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated
22 root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated
25 root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated
28 root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated
31 root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated
34 root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated
37 root-id 8005.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designated
43 root-id 8001.00:1f:6d:96:ec:00, root-pathcost 0, port-role Designate
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers_wps.c 25 int role; /* 0 - not set, 1 - enrollee, 2 - registrar */ member in struct:wps_start_params
45 "dbus: WPS.Start - Wrong Role type, string required");
47 "Role must be a string");
52 params->role = 1;
54 params->role = 2;
56 wpa_printf(MSG_DEBUG, "dbus: WPS.Start - Unknown role %s", val);
186 if (os_strcmp(key, "Role") == 0)
217 * information about role (enrollee or registrar), authorization method
254 "dbus: WPS.Start - Pin required for registrar role");
256 message, "Pin required for registrar role.")
    [all...]
  /external/selinux/libsepol/src/
user_record.c 18 /* The role array */
171 sepol_user_t * user, const char *role)
177 if (sepol_user_has_role(user, role))
180 role_cp = strdup(role);
194 ERR(handle, "out of memory, could not add role %s", role);
202 int sepol_user_has_role(const sepol_user_t * user, const char *role)
208 if (!strcmp(user->roles[i], role))
287 void sepol_user_del_role(sepol_user_t * user, const char *role)
292 if (!strcmp(user->roles[i], role)) {
    [all...]
  /external/selinux/libsepol/tests/policies/test-deps/
base-metreq.conf 429 role system_r;
430 role system_r types sys_foo_t;
433 role user_r;
434 role user_r types user_t;
437 role sysadm_r;
438 role sysadm_r types sysadm_t;
441 role system_r;
442 role system_r types { system_t sys_foo_t };
455 role role_req_r;
468 # Role Allo
    [all...]
  /external/selinux/libsepol/tests/policies/test-expander/
user-base.conf 419 role user_check_1_1_r;
420 role user_check_1_2_r;
421 role user_check_1_1_r types user_check_1_1_t;
422 role user_check_1_2_r types user_check_1_2_t;
428 role system_r;
429 role user_r;
430 role sysadm_r;
431 role system_r types system_t;
432 role user_r types user_t;
433 role sysadm_r types system_t
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.5/
velocity-1.5.pom 22 <role>Java Developer</role>
31 <role>Java Developer</role>
40 <role>Java Developer</role>
49 <role>Java Developer</role>
59 <role>Java Developer</role>
    [all...]
  /external/androidplot/
pom.xml 53 <role>architect</role>
54 <role>developer</role>
64 <role>developer</role>
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/awslambda/
test_awslambda.py 45 role='myrole',
58 '=event&Role=myrole&Runtime=nodejs'
77 role='myrole',
91 '=event&Role=myrole&Runtime=nodejs'
100 role='myrole',
113 role='myrole',
  /external/libphonenumber/
pom.xml 50 <role>owner</role>
51 <role>developer</role>
60 <role>developer</role>
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/accessibility/
AccessibilityRoleDescriptionSupportActivity.java 32 * role descriptions on your views. This functionality is supported in the
65 // This is an example of an <strong>incorrect</strong> use of the role description.
66 // You should not set the role description for standard widgets in your own code.
75 * This class subclasses AccessibilityDelegateCompat to modify a view's role description.
77 * delegate to set the role description. Using an accessibility delegate provides pre-ICS
91 // This call will succeed on all platforms, but it will only set the role description

Completed in 1640 milliseconds

1 2 3 4 5 6 7 8 91011>>