HomeSort by relevance Sort by last modified time
    Searched defs:role (Results 76 - 100 of 327) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
LocalBluetoothProfileManager.java 421 int role = intent.getIntExtra(BluetoothPan.EXTRA_LOCAL_ROLE, 0); local
422 panProfile.setLocalRole(device, role);
  /libcore/luni/src/test/java/libcore/xml/
XsltXPathConformanceTestSuite.java 196 * <input-file role="principal-data">attribset01.xml</input-file>
197 * <input-file role="principal-stylesheet">attribset01.xsl</input-file>
198 * <output-file role="principal" compare="XML">attribset01.out</output-file>
223 String role = element.getAttribute("role"); local
224 if (role.equals("principal-data")) {
226 } else if (role.equals("principal-stylesheet")) {
228 } else if (role.equals("principal")) {
230 } else if (!role.equals("supplemental-stylesheet")
231 && !role.equals("supplemental-data"))
    [all...]
  /system/bt/bta/ag/
bta_ag_int.h 52 /* profile role for connection */
222 uint8_t role; /* initiator/acceptor role */ member in struct:tBTA_AG_SCB
  /system/bt/bta/gatt/
bta_gattc_int.h 168 uint8_t role; member in struct:__anon1312
410 const RawAddress& remote_bda, uint8_t role);
  /system/bt/stack/avdt/
avdt_scb_act.cc 82 p_scb->role = AVDT_CLOSE_ACP;
112 p_scb->role = AVDT_CLOSE_ACP;
205 p_scb->role = AVDT_OPEN_INT;
718 if ((p_scb->role == AVDT_CLOSE_INT) || (p_scb->role == AVDT_OPEN_INT)) {
723 (p_scb->role == AVDT_CLOSE_INT) ? AVDT_CLOSE_CFM_EVT : AVDT_CLOSE_IND_EVT;
724 p_scb->role = AVDT_CLOSE_ACP;
836 uint8_t role; local
841 (p_scb->role == AVDT_OPEN_INT) ? AVDT_OPEN_CFM_EVT : AVDT_OPEN_IND_EVT;
849 role = (p_scb->role == AVDT_OPEN_INT) ? AVDT_INT : AVDT_ACP
    [all...]
  /system/bt/stack/btm/
btm_ble.cc 1927 uint8_t role, status, bda_type; local
    [all...]
  /external/selinux/checkpolicy/
policy_define.c 418 yyerror2("conflicting default role information for class %s", id);
2696 role_datum_t *role; local
2949 role_datum_t *role; local
3120 role_datum_t *role; local
3792 role_datum_t *role; local
4411 role_datum_t *role; local
    [all...]
  /external/selinux/libsepol/cil/src/
cil_policy.c 149 struct cil_role *role = node->data; local
150 if (strcmp(role->datum.fqn, "object_r") != 0) {
274 fprintf(out, "%s:", DATUM(context->role)->fqn);
1485 struct cil_role *role; local
1498 struct cil_role *role; local
1530 struct cil_role *role; local
1589 struct cil_role *role; local
    [all...]
cil_post.c 119 if (a->role != b->role) {
120 rc = strcmp(DATUM(a->role)->fqn, DATUM(b->role)->fqn);
594 struct cil_role *role = node->data; local
595 if (role->datum.nodes->head->data == node) {
597 role->value = db->num_roles;
683 struct cil_role *role = node->data; local
687 db->val_to_role[role->value] = role;
990 struct cil_role *role = (struct cil_role *)datum; local
1658 struct cil_role *role = NULL; local
1672 struct cil_role *role = roletype->role; local
1694 struct cil_role *role = NULL; local
    [all...]
  /external/selinux/libsepol/src/
expand.c 390 ERR(state->handle, "Found conflicting default role definitions");
564 role_datum_t *role = (role_datum_t *) datum; local
568 if (!role->bounds)
574 bounds_val = state->rolemap[role->bounds - 1];
578 ERR(state->handle, "Role lookup failed for %s", (char *)key);
708 role_datum_t *role = (role_datum_t *) datum; local
711 if (map_ebitmap(&role->dominates, &mapped_roles, state->rolemap))
714 ebitmap_destroy(&role->dominates);
716 if (ebitmap_cpy(&role->dominates, &mapped_roles))
724 /* For the role attribute in the base module, escalate its counterpart'
733 role_datum_t *role, *new_role, *regular_role; local
801 role_datum_t *role; local
2456 role_datum_t *role; local
    [all...]
kernel_to_cil.c 613 sepol_log_err("Unknown default role value: %i", class->default_user);
633 sepol_log_err("Unknown default role value: %i", class->default_role);
1227 role_datum_t *role; local
1239 role = pdb->role_val_to_struct[i];
1240 if (role && role->flavor == ROLE_ATTRIB) {
2113 struct role_datum *role; local
2240 char *role, *type, *class, *new; local
2281 char *role, *new; local
2319 char *name, *role, *level, *range; local
2456 char *user, *role, *type, *range; local
    [all...]
kernel_to_conf.c 584 sepol_log_err("Unknown default role value: %i", class->default_user);
604 sepol_log_err("Unknown default role value: %i", class->default_role);
1201 role_datum_t *role; local
1213 role = pdb->role_val_to_struct[i];
1214 if (role && role->flavor == ROLE_ATTRIB) {
2079 struct role_datum *role; local
2163 char *role, *type, *class, *new; local
2204 char *role, *new; local
2321 char *user, *role, *type, *range; local
    [all...]
link.c 82 "common", "class", "role", "type/attribute", "user",
221 ERR(state->handle, "Found conflicting default role definitions");
351 role_datum_t *role, *base_role, *new_role = NULL; local
354 role = (role_datum_t *) datum;
358 /* role already exists. check that it is what this
360 * modules both declare role foo_r) is checked during
362 if (role->flavor == ROLE_ATTRIB
365 "%s: Expected %s to be a role attribute, but it was already declared as a regular role.",
368 } else if (role->flavor != ROLE_ATTRI
793 role_datum_t *role = (role_datum_t *) datum; local
1097 role_datum_t *role, *dest_role = NULL; local
2421 role_datum_t *role, *sub_attr; local
    [all...]
policydb.c 721 * Initialize the role table by implicitly adding role 'object_r'. If
729 role_datum_t *role; local
731 role = calloc(1, sizeof(role_datum_t));
732 if (!role) {
742 rc = symtab_insert(p, SYM_ROLES, key, role,
745 &role->s.value);
748 if (role->s.value != OBJECT_R_VAL) {
758 free(role);
905 role_datum_t *role; local
1000 role_datum_t *role; local
2344 role_datum_t *role; local
    [all...]
services.c 209 * For user and role plus types (for policy vers <
509 val1 = scontext->role;
510 val2 = tcontext->role;
646 val1 = c->role;
993 * role is changing, then check the (current_role, new_role)
998 scontext->role != tcontext->role) {
1000 if (scontext->role == ra->role &&
1001 tcontext->role == ra->new_role
1634 role_datum_t *role; local
2170 role_datum_t *role; local
    [all...]
  /external/webrtc/talk/app/webrtc/
peerconnection.cc 971 rtc::SSLRole role; local
1049 rtc::SSLRole role; local
1843 rtc::SSLRole role; local
    [all...]
  /external/webrtc/talk/session/media/
channel.cc 924 rtc::SSLRole role; local
925 if (!channel->GetSslRole(&role)) {
    [all...]
  /external/webrtc/webrtc/modules/audio_device/win/
audio_device_core_win.cc 786 ERole role; local
787 (_outputDevice == AudioDeviceModule::kDefaultDevice) ? role = eConsole : role = eCommunications;
788 // Refresh the selected rendering endpoint device using role
789 ret = _GetDefaultDevice(eRender, role, &_ptrDeviceOut);
868 ERole role; local
869 (_inputDevice == AudioDeviceModule::kDefaultDevice) ? role = eConsole : role = eCommunications;
870 // Refresh the selected capture endpoint device using role
871 ret = _GetDefaultDevice(eCapture, role, &_ptrDeviceIn)
4283 ERole role = eCommunications; local
4297 ERole role = eCommunications; local
    [all...]
  /external/wpa_supplicant_8/hostapd/
ctrl_iface.c 375 char *pos, *role, *type, *pos2; local
377 role = cmd;
378 pos = os_strchr(role, ' ');
425 if (os_strcmp(role, "RESP") == 0 && os_strcmp(type, "WPS") == 0) {
429 "reported: role=%s type=%s", role, type);
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p.h 169 * pd_seeker - P2PS provision discovery seeker role
199 * role - Info about the roles to be used for this connection
201 u8 role; member in struct:p2ps_provision
1034 * Get information about a possible local GO role
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers_p2p.c 2308 u8 role = wpas_get_p2p_role(wpa_s); local
2333 u8 role = wpas_get_p2p_role(wpa_s); local
    [all...]
  /frameworks/av/media/libaudioclient/
IAudioPolicyService.cpp 536 virtual status_t listAudioPorts(audio_port_role_t role,
549 data.writeInt32(role);
1316 audio_port_role_t role = (audio_port_role_t)data.readInt32(); local
    [all...]
  /frameworks/base/wifi/tests/src/android/net/wifi/aware/
WifiAwareManagerTest.java 912 final int role = WifiAwareManager.WIFI_AWARE_DATA_PATH_ROLE_RESPONDER; local
993 final int role = WifiAwareManager.WIFI_AWARE_DATA_PATH_ROLE_INITIATOR; local
1221 final int role = doInitiator ? WifiAwareManager.WIFI_AWARE_DATA_PATH_ROLE_INITIATOR local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
xcmc.h 89 CMC_enum role; member in struct:__anon66348
  /system/bt/bta/av/
bta_av_aact.cc 297 LOG_ERROR(LOG_TAG, "%s: peer %s role:0x%x channel:%d handle:0x%x", __func__,
298 p_scb->PeerAddress().ToString().c_str(), p_scb->role, p_scb->chnl,
301 /* if start failed, clear role */
302 p_scb->role &= ~BTA_AV_ROLE_START_INT;
331 (p_scb->use_rc || (p_scb->role & BTA_AV_ROLE_AD_ACP))) {
622 * Description Switch role was not started and a timer was started.
623 * another attempt to switch role now - still opening.
652 APPL_TRACE_ERROR("%s: peer %s role switch failed (wait=0x%x)", __func__,
672 * Description Handle the role changed event
681 APPL_TRACE_DEBUG("%s: peer %s q_tag:%d, wait:0x%x, role:0x%x", __func__
893 uint8_t role = BTA_AV_ROLE_AD_INT; local
    [all...]

Completed in 822 milliseconds

1 2 34 5 6 7 8 91011>>